/* ==========================================================================
   Saved & Sent Print Co. - Balanced Modern Light & Contrast Design System
   ========================================================================== */

:root {
  /* Core Light Palette */
  --bg-page: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-elevated: #f1f5f9;
  --bg-surface-hover: #e2e8f0;
  
  /* Deep Contrast Dark Sections (Strategic High-Impact) */
  --bg-dark-primary: #0b0f19;
  --bg-dark-surface: #111827;
  --bg-dark-elevated: #1e293b;
  --bg-dark-hover: #26354a;

  /* Borders */
  --border-light: #e2e8f0;
  --border-subtle: #cbd5e1;
  --border-dark-subtle: rgba(255, 255, 255, 0.1);
  --border-active: #f59e0b;

  /* Brand Accent Colors */
  --accent-amber: #f59e0b;
  --accent-amber-dark: #d97706;
  --accent-amber-light: #fbbf24;
  --accent-amber-soft: rgba(245, 158, 11, 0.12);
  --accent-amber-glow: rgba(245, 158, 11, 0.25);
  
  --accent-blue: #2563eb;
  --accent-blue-soft: rgba(37, 99, 235, 0.1);
  --accent-emerald: #059669;
  --accent-emerald-soft: rgba(5, 150, 105, 0.12);

  /* Typography Colors - Light Mode */
  --text-heading: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-dim: #94a3b8;

  /* Typography Colors - Dark Mode Sections */
  --text-dark-heading: #ffffff;
  --text-dark-body: #cbd5e1;
  --text-dark-muted: #94a3b8;

  /* Typography Fonts */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Elevations & Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 40px -10px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 0 30px rgba(245, 158, 11, 0.2);

  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

@media (max-width: 640px) {
  .container {
    padding: 0 1rem;
  }
}

.section {
  padding: 5.5rem 0;
  position: relative;
}

.section.bg-white {
  background-color: #ffffff;
}

.section.bg-light {
  background-color: var(--bg-page);
}

.section.bg-dark {
  background-color: var(--bg-dark-primary);
  color: var(--text-dark-body);
}

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

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.05rem;
  background: var(--accent-amber-soft);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #b45309;
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.bg-dark .badge-tag {
  color: var(--accent-amber-light);
  border-color: rgba(245, 158, 11, 0.4);
}

.badge-tag.blue {
  background: var(--accent-blue-soft);
  border-color: rgba(37, 99, 235, 0.25);
  color: var(--accent-blue);
}

.badge-tag.emerald {
  background: var(--accent-emerald-soft);
  border-color: rgba(5, 150, 105, 0.25);
  color: var(--accent-emerald);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-heading);
  letter-spacing: -0.02em;
}

.bg-dark .section-title {
  color: #ffffff;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.85rem;
  }
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.bg-dark .section-subtitle {
  color: var(--text-dark-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  transition: all var(--transition-normal);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-amber), var(--accent-amber-dark));
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-amber-light), var(--accent-amber));
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background: #ffffff;
  color: var(--text-heading);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--bg-surface-elevated);
  border-color: var(--border-subtle);
  transform: translateY(-2px);
}

.bg-dark .btn-secondary {
  background: var(--bg-dark-elevated);
  color: #ffffff;
  border-color: var(--border-dark-subtle);
}

.bg-dark .btn-secondary:hover {
  background: var(--bg-dark-hover);
}

.btn-outline {
  background: transparent;
  color: var(--text-heading);
  border: 1px solid var(--border-light);
}

.btn-outline:hover {
  border-color: var(--accent-amber);
  color: var(--accent-amber-dark);
}

.bg-dark .btn-outline {
  color: #ffffff;
  border-color: var(--border-dark-subtle);
}

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

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.875rem;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: all var(--transition-normal);
}

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

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  text-decoration: none;
  flex-shrink: 1;
  min-width: 0;
  line-height: 1.2;
}

.logo-icon-wrapper {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--accent-amber), var(--accent-amber-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(245, 158, 11, 0.35);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-heading);
  white-space: nowrap;
  letter-spacing: -0.015em;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.brand-suffix {
  color: var(--accent-amber-dark);
}

.brand-tagline {
  font-size: 0.65rem;
  display: block;
  font-weight: 700;
  color: var(--accent-amber-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn-text-mobile {
  display: none;
}

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

@media (min-width: 992px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-heading);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-amber);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .nav-container {
    height: 4.15rem;
    padding: 0 1rem;
    gap: 0.5rem;
  }
  .brand-logo {
    gap: 0.5rem;
  }
  .logo-icon-wrapper {
    width: 2.15rem;
    height: 2.15rem;
  }
  .logo-icon-wrapper svg {
    width: 18px;
    height: 18px;
  }
  .brand-name {
    font-size: 1.05rem;
    white-space: nowrap;
  }
  .brand-tagline {
    display: none !important;
  }
  .nav-actions {
    gap: 0.45rem;
  }
  .nav-actions .btn {
    padding: 0.42rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 700;
  }
  .btn-text-desktop {
    display: none;
  }
  .btn-text-mobile {
    display: inline;
  }
  .nav-actions .btn .btn-arrow {
    display: none !important;
  }
  .mobile-toggle {
    padding: 0.45rem;
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 390px) {
  .nav-container {
    padding: 0 0.65rem;
  }
  .brand-name {
    font-size: 0.92rem;
  }
  .brand-suffix {
    display: none;
  }
  .nav-actions .btn {
    padding: 0.38rem 0.55rem;
    font-size: 0.72rem;
  }
}

.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--text-heading);
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

@media (min-width: 992px) {
  .mobile-toggle {
    display: none;
  }
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 4.75rem;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  padding: 1.5rem;
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 99;
  box-shadow: var(--shadow-md);
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .mobile-nav-drawer {
    top: 4.15rem;
    max-height: calc(100vh - 4.15rem);
    overflow-y: auto;
  }
}

.mobile-nav-drawer.active {
  display: flex;
}

/* ==========================================================================
   Hero Section (Bright & Welcoming)
   ========================================================================= */
.hero {
  padding: 5rem 0 5.5rem 0;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-page) 100%);
  border-bottom: 1px solid var(--border-light);
}

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

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 1fr;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.85rem;
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 1.5rem;
  color: var(--text-heading);
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-amber-dark) 20%, #ea580c 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-body);
  margin-bottom: 2.25rem;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.75rem;
}

@media (max-width: 991px) {
  .hero {
    padding: 3rem 0 3.75rem 0;
  }
  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-content .badge-tag {
    margin: 0 auto 1.25rem auto;
    text-align: center;
    justify-content: center;
  }
  .hero-title {
    text-align: center;
    font-size: 2.65rem;
  }
  .hero-description {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 540px;
  }
  .hero-ctas {
    justify-content: center;
    align-items: center;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: clamp(1.85rem, 6.8vw, 2.3rem);
    line-height: 1.18;
    text-wrap: balance;
    word-break: break-word;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    width: 100%;
  }
  .hero-ctas .btn {
    width: 100%;
    max-width: 340px;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
  }
}

/* Hero Trust Cards Bar */
.hero-trust-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  padding-top: 1.5rem;
}

@media (min-width: 640px) {
  .hero-trust-bar {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
  }
}

.trust-card {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 0.95rem 0.85rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
  overflow: hidden;
  box-shadow: 0 4px 14px -2px rgba(15, 23, 42, 0.05), 0 2px 6px -1px rgba(15, 23, 42, 0.03);
}

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

/* Card 1: Warm Amber / Gold */
.trust-card-amber {
  border: 2px solid rgba(245, 158, 11, 0.45);
  background: linear-gradient(180deg, rgba(254, 243, 199, 0.3) 0%, #ffffff 45%);
  box-shadow: 0 4px 16px -2px rgba(245, 158, 11, 0.14), 0 2px 6px -1px rgba(15, 23, 42, 0.04);
}
.trust-card-amber:hover {
  border-color: #f59e0b;
  box-shadow: 0 10px 24px -3px rgba(245, 158, 11, 0.25), 0 4px 8px -2px rgba(15, 23, 42, 0.06);
}
.trust-card-amber::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

/* Card 2: Electric Cyan / Sky Blue */
.trust-card-cyan {
  border: 2px solid rgba(14, 165, 233, 0.45);
  background: linear-gradient(180deg, rgba(224, 242, 254, 0.3) 0%, #ffffff 45%);
  box-shadow: 0 4px 16px -2px rgba(14, 165, 233, 0.14), 0 2px 6px -1px rgba(15, 23, 42, 0.04);
}
.trust-card-cyan:hover {
  border-color: #0ea5e9;
  box-shadow: 0 10px 24px -3px rgba(14, 165, 233, 0.25), 0 4px 8px -2px rgba(15, 23, 42, 0.06);
}
.trust-card-cyan::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0284c7, #38bdf8);
}

/* Card 3: Emerald / Mint Green */
.trust-card-emerald {
  border: 2px solid rgba(16, 185, 129, 0.45);
  background: linear-gradient(180deg, rgba(209, 250, 229, 0.3) 0%, #ffffff 45%);
  box-shadow: 0 4px 16px -2px rgba(16, 185, 129, 0.14), 0 2px 6px -1px rgba(15, 23, 42, 0.04);
}
.trust-card-emerald:hover {
  border-color: #10b981;
  box-shadow: 0 10px 24px -3px rgba(16, 185, 129, 0.25), 0 4px 8px -2px rgba(15, 23, 42, 0.06);
}
.trust-card-emerald::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #059669, #34d399);
}

/* Card 4: Royal Violet / Purple */
.trust-card-purple {
  border: 2px solid rgba(139, 92, 246, 0.45);
  background: linear-gradient(180deg, rgba(237, 233, 254, 0.3) 0%, #ffffff 45%);
  box-shadow: 0 4px 16px -2px rgba(139, 92, 246, 0.14), 0 2px 6px -1px rgba(15, 23, 42, 0.04);
}
.trust-card-purple:hover {
  border-color: #8b5cf6;
  box-shadow: 0 10px 24px -3px rgba(139, 92, 246, 0.25), 0 4px 8px -2px rgba(15, 23, 42, 0.06);
}
.trust-card-purple::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #7c3aed, #a78bfa);
}

/* Header inside Trust Card */
.trust-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.trust-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.trust-card:hover .trust-icon-box {
  transform: scale(1.1);
}

.trust-icon-amber {
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #d97706;
}
.trust-icon-cyan {
  background: rgba(14, 165, 233, 0.14);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: #0284c7;
}
.trust-icon-emerald {
  background: rgba(16, 185, 129, 0.14);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #059669;
}
.trust-icon-purple {
  background: rgba(139, 92, 246, 0.14);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: #7c3aed;
}

.trust-pill-tag {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  line-height: 1;
}

.tag-amber {
  background: rgba(245, 158, 11, 0.16);
  color: #b45309;
}
.tag-cyan {
  background: rgba(14, 165, 233, 0.16);
  color: #0369a1;
}
.tag-emerald {
  background: rgba(16, 185, 129, 0.16);
  color: #047857;
}
.tag-purple {
  background: rgba(139, 92, 246, 0.16);
  color: #6d28d9;
}

/* Stat content */
.trust-card-content {
  display: flex;
  flex-direction: column;
}

.trust-card .trust-num {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--text-heading);
  line-height: 1.15;
  margin-bottom: 0.2rem;
  letter-spacing: -0.02em;
}

.trust-card .trust-label {
  font-size: 0.775rem;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.3;
}

@media (max-width: 480px) {
  .hero-trust-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }
  .trust-card {
    padding: 0.75rem 0.65rem;
  }
  .trust-icon-box {
    width: 30px;
    height: 30px;
    border-radius: 7px;
  }
  .trust-icon-box svg {
    width: 17px;
    height: 17px;
  }
  .trust-card .trust-num {
    font-size: 1.25rem;
  }
  .trust-card .trust-label {
    font-size: 0.72rem;
  }
  .trust-pill-tag {
    font-size: 0.58rem;
    padding: 0.15rem 0.35rem;
  }
}

/* Hero Media Visual */
.hero-visual {
  position: relative;
}

.hero-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 0.75rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.hero-card-img-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  max-height: 440px;
}

.hero-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.hero-floating-pill {
  position: absolute;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-md);
  z-index: 3;
}

.pill-top-left {
  top: 1.5rem;
  left: -0.5rem;
}

.pill-bottom-right {
  bottom: 1.5rem;
  right: -0.5rem;
}

.pill-icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: var(--accent-amber-soft);
  color: var(--accent-amber-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 2px rgba(245, 158, 11, 0.2);
}

.pill-text {
  display: flex;
  flex-direction: column;
}

.pill-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-heading);
}

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

/* ==========================================================================
   T-Shirt Customizer Studio (High-Impact Dark Stage in Light Surrounding)
   ========================================================================== */
.customizer-section {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
}

.customizer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

@media (min-width: 992px) {
  .customizer-container {
    grid-template-columns: 1.15fr 1fr;
    padding: 2.5rem;
  }
}

/* Customizer Viewport / Stage */
.customizer-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  position: relative;
  min-height: 480px;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5);
}

.stage-view-toggle {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-dark-subtle);
  border-radius: var(--radius-full);
  padding: 0.25rem;
  z-index: 5;
}

.view-toggle-btn {
  padding: 0.4rem 1rem;
  font-size: 0.825rem;
  font-weight: 700;
  border: none;
  background: transparent;
  color: #cbd5e1; /* High contrast bright silver */
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.view-toggle-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.view-toggle-btn.active {
  background: var(--accent-amber);
  color: #0b0f19;
  font-weight: 800;
}

.stage-badge-indicator {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(15, 23, 42, 0.95);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff; /* Crisp pure white text */
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
}

/* Shirt Canvas Area */
.mockup-wrapper {
  position: relative;
  width: 320px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 500px) {
  .mockup-wrapper {
    width: 360px;
    height: 420px;
  }
}

.garment-svg-base {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.6));
  transition: fill var(--transition-fast);
}

/* Printable Area Boundary Box */
.print-bounding-box {
  position: absolute;
  top: 25%;
  left: 28%;
  width: 44%;
  height: 48%;
  border: 1px dashed rgba(245, 158, 11, 0.6);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.print-boundary-label {
  position: absolute;
  bottom: 4px;
  font-size: 0.65rem;
  color: rgba(245, 158, 11, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

/* Rendered Artwork & Text */
.mockup-artwork-target {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  pointer-events: auto;
  cursor: grab;
}

.mockup-artwork-target:active {
  cursor: grabbing;
}

.rendered-design-graphic {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
  transition: transform 0.1s ease;
  user-select: none;
  -webkit-user-drag: none;
}

.rendered-custom-text {
  font-size: 1.25rem;
  font-weight: 800;
  text-align: center;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
  word-break: break-word;
  line-height: 1.1;
  padding: 0 0.5rem;
  user-select: none;
}

.stage-footer-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
  color: #e2e8f0; /* Crisp light silver text */
  font-weight: 600;
}

/* HIGH-CONTRAST RESET CENTER BUTTON ON DARK CANVAS */
#reset-customizer-btn,
.stage-footer-actions .btn-outline {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.15) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.35) !important;
  font-weight: 700 !important;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: all var(--transition-fast);
}

#reset-customizer-btn:hover,
.stage-footer-actions .btn-outline:hover {
  background: rgba(245, 158, 11, 0.25) !important;
  border-color: #f59e0b !important;
  color: #fbbf24 !important;
  box-shadow: 0 0 14px rgba(245, 158, 11, 0.4);
  transform: translateY(-1px);
}

/* Customizer Controls Panel (Bright & Clean) */
.customizer-controls {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.control-group-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.control-subtext {
  font-size: 0.825rem;
  font-weight: 700;
  color: #b45309;
}

/* Garment Selector Tabs - High Contrast */
.garment-type-selector {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 480px) {
  .garment-type-selector {
    grid-template-columns: repeat(3, 1fr);
  }
}

.garment-pill {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.5rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
}

.garment-pill:hover {
  background: #f8fafc;
  border-color: #94a3b8;
  transform: translateY(-1px);
}

.garment-pill.active {
  background: #fffbeb;
  border: 2px solid #d97706;
  box-shadow: 0 0 0 2px rgba(217, 119, 6, 0.2);
}

.garment-pill-name {
  font-size: 0.85rem;
  font-weight: 800;
  color: #0f172a;
}

.garment-pill.active .garment-pill-name {
  color: #78350f;
}

.garment-pill-badge {
  font-size: 0.725rem;
  font-weight: 700;
  color: #475569;
}

.garment-pill.active .garment-pill-badge {
  color: #b45309;
}

/* Color Swatches */
.swatch-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.color-swatch {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  border: 2px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.color-swatch[data-name="Crisp White"] {
  border: 2px solid #94a3b8 !important;
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.15), 0 2px 6px rgba(0, 0, 0, 0.1);
}

.color-swatch:hover {
  transform: scale(1.15);
  border-color: #64748b;
}

.color-swatch.active {
  border-color: var(--accent-amber) !important;
  transform: scale(1.15);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.5);
}

/* Artwork / Design Preset Tabs */
.art-tab-buttons {
  display: flex;
  border-bottom: 2px solid var(--border-light);
  margin-bottom: 1rem;
}

.art-tab-btn {
  background: transparent;
  border: none;
  padding: 0.5rem 1rem;
  color: #475569;
  font-weight: 800;
  font-size: 0.875rem;
  cursor: pointer;
  position: relative;
}

.art-tab-btn.active {
  color: #b45309;
}

.art-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #d97706;
  border-radius: 2px;
}

.preset-designs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

@media (max-width: 640px) {
  .preset-designs-grid {
    grid-template-columns: repeat(auto-fit, minmax(64px, 1fr));
    gap: 0.4rem;
  }
}

.preset-card {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.25rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 86px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
}

.preset-card:hover {
  border-color: #d97706;
  background: #fefce8;
  transform: translateY(-2px);
}

.preset-card.active {
  border: 2px solid #d97706;
  background: #fffbeb;
  box-shadow: 0 0 0 2px rgba(217, 119, 6, 0.25);
}

/* Preset Icon Mini-Apparel Mockup Badge */
.preset-icon-container {
  width: 2.5rem;
  height: 2.5rem;
  background: #0f172a;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.45rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform var(--transition-fast);
}

.preset-card:hover .preset-icon-container {
  transform: scale(1.08);
}

.preset-card-icon-svg {
  width: 1.95rem;
  height: 1.95rem;
  transition: transform var(--transition-fast);
}

.preset-card-label {
  font-size: 0.725rem;
  font-weight: 800;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.preset-card.active .preset-card-label {
  color: #78350f;
}

/* Upload Dropzone */
.upload-dropzone {
  border: 2px dashed var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  background: var(--bg-surface-elevated);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.upload-dropzone:hover, .upload-dropzone.dragover {
  border-color: var(--accent-amber);
  background: var(--accent-amber-soft);
}

.upload-icon-svg {
  width: 2.4rem;
  height: 2.4rem;
  color: var(--accent-amber-dark);
  margin-bottom: 0.6rem;
  transition: transform var(--transition-fast);
}

.upload-dropzone:hover .upload-icon-svg {
  transform: translateY(-3px);
}

.upload-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-heading);
}

.upload-subtext {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Text Customizer Controls */
.text-customizer-box {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.text-input-row {
  display: flex;
  gap: 0.5rem;
}

.custom-text-field {
  flex: 1;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  color: var(--text-heading);
}

.custom-text-field:focus {
  outline: none;
  border-color: var(--accent-amber);
}

.font-picker-select {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
  font-size: 0.85rem;
  color: var(--text-heading);
  cursor: pointer;
}

/* Size & Position Sliders */
.slider-control-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.slider-label {
  font-size: 0.85rem;
  font-weight: 800;
  color: #0f172a;
  width: 80px;
}

.range-slider {
  flex: 1;
  accent-color: var(--accent-amber-dark);
  cursor: pointer;
}

.customizer-cta-box {
  padding-top: 1rem;
  border-top: 1.5px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.customizer-cta-box .btn-primary {
  color: #0b0f19 !important;
  font-weight: 800 !important;
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

.customizer-cta-box .btn-primary:hover {
  color: #000000 !important;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.55);
}

.customizer-cta-box p {
  color: #475569 !important;
  font-weight: 600 !important;
}

/* ==========================================================================
   Instant Bulk Quote Calculator (Clean Bright Inputs + Dark Summary)
   ========================================================================== */
.calculator-section {
  position: relative;
  background-color: var(--bg-page);
  border-bottom: 1px solid var(--border-light);
}

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

@media (min-width: 992px) {
  .calc-grid {
    grid-template-columns: 1.35fr 1fr;
  }
}

.calc-inputs-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.calc-field-group {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.calc-field-label {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calc-field-hint {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-amber-dark);
}

/* Radio Button Tiles */
.options-tile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 550px) {
  .options-tile-grid.col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .options-tile-grid.col-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.option-tile {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  position: relative;
}

.option-tile:hover {
  background: var(--bg-surface-hover);
  border-color: var(--border-subtle);
}

.option-tile.active {
  background: #ffffff;
  border-color: var(--accent-amber);
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.15);
}

.tile-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-heading);
}

.tile-desc {
  font-size: 0.775rem;
  color: var(--text-muted);
}

.tile-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.15rem 0.45rem;
  background: var(--accent-amber-soft);
  color: var(--accent-amber-dark);
  border-radius: var(--radius-full);
}

/* Checkbox Placements */
.placements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 550px) {
  .placements-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.placement-checkbox-label {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-heading);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.placement-checkbox-label:hover {
  background: var(--bg-surface-hover);
}

.placement-checkbox-label.checked {
  background: #ffffff;
  border-color: var(--accent-blue);
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.12);
}

.placement-checkbox-label input {
  accent-color: var(--accent-blue);
  width: 1.1rem;
  height: 1.1rem;
}

/* Quantity Slider */
.qty-slider-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.qty-display-badge {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-amber-dark);
  font-family: var(--font-heading);
}

.qty-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* High-Contrast Results Sticky Card */
.calc-result-card {
  background: linear-gradient(145deg, #0f172a, #1e293b);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: sticky;
  top: 6rem;
  color: #ffffff;
}

.calc-result-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.calc-price-hero {
  margin: 1rem 0;
}

.price-unit-big {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.price-unit-sub {
  font-size: 1.1rem;
  color: var(--text-dark-muted);
  font-weight: 500;
}

.savings-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-top: 0.5rem;
}

.quote-breakdown-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
  list-style: none;
}

.quote-item-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-dark-muted);
}

.quote-item-row.highlight {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.15rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-perks {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
  font-size: 0.85rem;
  color: var(--text-dark-muted);
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.perk-svg-icon {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--accent-amber-light);
  flex-shrink: 0;
}

/* ==========================================================================
   Print Methods & Services (Bright White Section)
   ========================================================================== */
.services-section {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-light);
}

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

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-amber), var(--accent-blue));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-5px);
  background: #ffffff;
  border-color: var(--border-subtle);
  box-shadow: var(--shadow-md);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-box {
  width: 3.75rem;
  height: 3.75rem;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-amber-dark);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
  transition: all var(--transition-fast);
}

.service-card:hover .service-icon-box {
  background: var(--accent-amber-soft);
  border-color: rgba(245, 158, 11, 0.4);
  transform: scale(1.05);
}

.service-icon-svg {
  width: 2rem;
  height: 2rem;
}

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

.service-desc {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.service-meta-list {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ==========================================================================
   Garment Catalog & Quality Comparison
   ========================================================================== */
.catalog-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

@media (min-width: 992px) {
  .catalog-feature-grid {
    grid-template-columns: 1.1fr 1fr;
  }
}

.catalog-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.blanks-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  display: block;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  box-sizing: border-box;
}

.blanks-table {
  width: 100%;
  min-width: 580px;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

.blanks-table th {
  background: var(--bg-surface-elevated);
  padding: 1.1rem 1.25rem;
  font-weight: 800;
  color: var(--text-heading);
  border-bottom: 1px solid var(--border-light);
  font-family: var(--font-heading);
}

.blanks-table td {
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-body);
}

.blanks-table tr:hover td {
  background: #fafafa;
}

.blanks-table tr:last-child td {
  border-bottom: none;
}

.blank-name {
  font-weight: 800;
  color: var(--text-heading);
  display: block;
}

.blank-brand {
  font-size: 0.775rem;
  color: var(--accent-amber-dark);
  font-weight: 700;
}

/* ==========================================================================
   Community Niches
   ========================================================================== */
.niches-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 640px) {
  .niches-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .niches-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.niche-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.niche-card:hover {
  border-color: var(--accent-amber);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.niche-icon-box {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-md);
  background: var(--accent-amber-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all var(--transition-fast);
}

.niche-card:hover .niche-icon-box {
  background: linear-gradient(135deg, var(--accent-amber), var(--accent-amber-dark));
  color: #ffffff;
  transform: scale(1.05);
}

.niche-icon-svg {
  width: 2rem;
  height: 2rem;
  color: var(--accent-amber-dark);
  transition: color var(--transition-fast);
}

.niche-card:hover .niche-icon-svg {
  color: #ffffff;
}

.niche-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}

.niche-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.niche-items-list {
  margin-top: auto;
  padding-left: 1.2rem;
  font-size: 0.825rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 600;
}

/* ==========================================================================
   Work Showcase / Portfolio
   ========================================================================== */
.portfolio-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.portfolio-tab-btn {
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.6rem 1.35rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.portfolio-tab-btn:hover {
  color: var(--text-heading);
  border-color: var(--border-subtle);
}

.portfolio-tab-btn.active {
  background: var(--accent-amber-dark);
  color: #ffffff;
  border-color: var(--accent-amber-dark);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 640px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.portfolio-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-amber);
  box-shadow: var(--shadow-md);
}

.portfolio-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

.portfolio-card:hover .portfolio-img-wrap img {
  transform: scale(1.06);
}

.portfolio-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.portfolio-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.portfolio-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-heading);
}

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

/* ==========================================================================
   4-Step Ordering Workflow (Contrasting Dark Navy Section)
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-card {
  background: var(--bg-dark-surface);
  border: 1px solid var(--border-dark-subtle);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.5rem;
  text-align: center;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.step-badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.step-number {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-amber), var(--accent-amber-dark));
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
  flex-shrink: 0;
}

.step-icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-amber-light);
  transition: all var(--transition-fast);
}

.step-card:hover .step-icon-wrap {
  background: rgba(245, 158, 11, 0.18);
  border-color: var(--accent-amber);
  transform: scale(1.08);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Founder Story (Deep Contrast Showcase Card)
   ========================================================================== */
.story-box {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  color: #ffffff;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 992px) {
  .story-box {
    grid-template-columns: 1.2fr 1fr;
    padding: 3.5rem;
  }
}

.story-content h3 {
  font-family: var(--font-heading);
  font-size: 2.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.story-text {
  font-size: 1.025rem;
  color: #cbd5e1;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.story-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 500px) {
  .story-pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.pillar-icon-svg {
  width: 2rem;
  height: 2rem;
  color: var(--accent-amber-light);
}

.pillar-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
}

.story-visual-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   Reviews & Testimonials
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.testimonial-stars-svg {
  display: flex;
  gap: 0.3rem;
  color: #f59e0b;
  margin-bottom: 1.25rem;
}

.star-icon {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--accent-amber-dark);
}

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

.author-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-heading);
}

.author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-wrap {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--border-subtle);
}

.faq-item.active {
  border-color: var(--accent-amber);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.1);
}

.faq-question-btn {
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  background: transparent;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-heading);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-chevron {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform var(--transition-normal);
  color: var(--accent-amber-dark);
  flex-shrink: 0;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
  padding: 0 1.5rem;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding-bottom: 1.25rem;
}

/* ==========================================================================
   Order Inquiry & Proof Request Form
   ========================================================================== */
.inquiry-section {
  position: relative;
  background: var(--bg-page);
  border-bottom: 1px solid var(--border-light);
}

.inquiry-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .inquiry-card {
    padding: 3.5rem;
  }
}

.inquiry-prefill-banner {
  background: var(--accent-amber-soft);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.inquiry-prefill-banner.active {
  display: flex;
}

.prefill-text {
  font-size: 0.875rem;
  color: var(--text-heading);
  font-weight: 600;
}

.prefill-specs-badge {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent-amber-dark);
}

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

@media (min-width: 640px) {
  .form-grid.col-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-heading);
}

.form-input, .form-select, .form-textarea {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  color: var(--text-heading);
  transition: border-color var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent-amber);
  background: #ffffff;
}

.form-file-drop {
  border: 2px dashed var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  text-align: center;
  cursor: pointer;
  background: var(--bg-page);
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.form-file-drop:hover {
  border-color: var(--accent-amber);
  background: var(--accent-amber-soft);
}

.form-file-svg-icon {
  width: 2.4rem;
  height: 2.4rem;
  color: var(--accent-amber-dark);
  margin-bottom: 0.5rem;
  transition: transform var(--transition-fast);
}

.form-file-drop:hover .form-file-svg-icon {
  transform: translateY(-2px);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: #0b0f19;
  color: #94a3b8;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4.5rem 0 2rem 0;
}

.footer .brand-logo {
  color: #ffffff;
}

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

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.75fr 1fr 1fr 1.25fr;
  }
}

.footer-brand p {
  color: #94a3b8;
  font-size: 0.925rem;
  margin-top: 1rem;
  line-height: 1.6;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #94a3b8;
}

.footer-links-list a:hover {
  color: var(--accent-amber-light);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: #64748b;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

/* Modal / Toast Notifications */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.modal-icon-success {
  width: 4rem;
  height: 4rem;
  background: var(--accent-emerald-soft);
  border: 1px solid rgba(5, 150, 105, 0.3);
  color: var(--accent-emerald);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
}

.modal-desc {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 2rem;
}

/* ==========================================================================
   Mobile Center Alignment: All Titles, Headers, Subtitles & CTAs
   ========================================================================== */
@media (max-width: 991px) {
  /* Catch-all for all Headings, Subtitles and Section Titles */
  h1, h2, h3, h4,
  .hero-title,
  .section-title,
  .section-subtitle,
  .service-card-title,
  .niche-card-title,
  .step-title,
  .portfolio-title,
  .portfolio-meta,
  .modal-title {
    text-align: center !important;
    text-wrap: balance;
    word-break: break-word;
  }

  /* Center All Badge Tags */
  .badge-tag,
  .hero-content .badge-tag,
  .section-header .badge-tag {
    display: inline-flex !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    justify-content: center !important;
  }

  /* Center All CTA Button Wrappers and Buttons */
  .hero-ctas,
  .customizer-actions,
  .portfolio-tabs,
  .cta-banner-buttons {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-ctas .btn,
  .customizer-actions .btn,
  .quote-total-card .btn,
  .inquiry-card #submit-inquiry-btn,
  .cta-banner-buttons .btn {
    display: inline-flex !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* Section Headers, Badges & Titles */
  .section-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  /* Blanks Catalog Showcase */
  .catalog-feature-grid {
    text-align: center;
  }
  .catalog-feature-grid .badge-tag {
    margin: 0 auto 1rem auto;
  }
  .catalog-feature-grid .section-title {
    text-align: center;
  }
  .catalog-feature-grid .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  /* Founder Story / Our Mission */
  .story-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .story-content .badge-tag {
    margin: 0 auto 1.25rem auto;
  }
  .story-content h3 {
    text-align: center;
  }
  .story-text {
    text-align: center;
  }
  .story-pillars {
    justify-content: center;
  }
  .pillar-item {
    text-align: center;
    align-items: center;
  }

  /* Services Cards */
  .service-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .service-icon-box {
    margin: 0 auto 1.25rem auto;
  }
  .service-card-title {
    text-align: center;
  }

  /* Community Niches */
  .niche-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .niche-icon-box {
    margin: 0 auto;
  }
  .niche-card-title {
    text-align: center;
  }

  /* Process Steps */
  .step-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .step-icon-wrap {
    margin: 0 auto 1rem auto;
  }
  .step-title {
    text-align: center;
  }
  .step-desc {
    text-align: center;
  }

  /* Portfolio */
  .portfolio-tabs {
    justify-content: center;
  }
  .portfolio-title,
  .portfolio-meta {
    text-align: center;
  }

  /* Testimonials */
  .testimonial-header {
    justify-content: center;
  }
  .testimonial-stars {
    justify-content: center;
  }
  .testimonial-quote {
    text-align: center;
  }
  .testimonial-author {
    justify-content: center;
    text-align: center;
  }

  /* All Primary and Action CTAs on Mobile */
  .customizer-actions {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .customizer-actions .btn {
    width: 100%;
    max-width: 380px;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
  }
  .quote-total-card .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .inquiry-card #submit-inquiry-btn {
    width: 100%;
    max-width: 380px;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
  }

  .hero-trust-bar {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .badge-tag {
    font-size: 0.72rem !important;
    padding: 0.35rem 0.75rem !important;
    white-space: normal !important;
    text-align: center !important;
    line-height: 1.3 !important;
  }
}
