/* ==========================================================================
   SILK SCREEN CITY - INDUSTRIAL DESIGN SYSTEM
   Brand: Gritty, Industrial, Substance-over-Flash
   ========================================================================== */

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

:root {
  --bg-black: #0c0c0d;
  --bg-surface: #141416;
  --bg-card: #1a1a1c;
  --bg-card-elevated: #222225;
  --bg-concrete: #f4f4f0;
  --bg-concrete-subtle: #ebebe5;
  
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --text-dark: #121214;
  --text-dark-muted: #52525b;

  --accent-orange: #f97316;
  --accent-orange-hover: #ea580c;
  --accent-orange-glow: rgba(249, 115, 22, 0.15);
  --accent-rust: #c2410c;
  --accent-yellow: #eab308;
  --accent-green: #22c55e;
  
  --border-subtle: #27272a;
  --border-medium: #3f3f46;
  --border-strong: #52525b;
  --border-orange: rgba(249, 115, 22, 0.4);

  --font-display: 'Syne', sans-serif;
  --font-sans: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --container-max: 1240px;
  --transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  background-color: var(--bg-black);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background-image: 
    radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(12, 12, 13, 0.95), rgba(12, 12, 13, 0.98));
  background-size: 24px 24px, 100% 100%;
}

/* Subtle Halftone Pattern Utility */
.halftone-bg {
  background-image: radial-gradient(var(--border-subtle) 15%, transparent 16%);
  background-size: 12px 12px;
}

/* Hazard Stripes Accent Bar */
.hazard-stripe {
  height: 6px;
  width: 100%;
  background: repeating-linear-gradient(
    -45deg,
    var(--accent-orange),
    var(--accent-orange) 14px,
    #18181b 14px,
    #18181b 28px
  );
}

.hazard-stripe-thin {
  height: 3px;
  background: repeating-linear-gradient(
    -45deg,
    var(--accent-orange),
    var(--accent-orange) 8px,
    #222 8px,
    #222 16px
  );
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-weight: 800;
  line-height: 1.05;
}

p {
  color: var(--text-secondary);
}

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

/* Technical Monospace Micro-labels */
.tech-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tech-label::before {
  content: "⊕";
  font-size: 0.85rem;
  color: var(--accent-orange);
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   TOP INDUSTRIAL CAPACITY TICKER
   ========================================================================== */
.capacity-ticker {
  background-color: #111113;
  border-bottom: 1px solid var(--border-subtle);
  padding: 8px 0;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-secondary);
  overflow: hidden;
  position: relative;
  z-index: 50;
}

.ticker-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.ticker-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

.ticker-items {
  display: flex;
  align-items: center;
  gap: 24px;
}

.ticker-item strong {
  color: var(--text-primary);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(12, 12, 13, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-crosshair {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--accent-orange);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-crosshair::before,
.brand-crosshair::after {
  content: "";
  position: absolute;
  background-color: var(--accent-orange);
}

.brand-crosshair::before {
  width: 100%;
  height: 1px;
}

.brand-crosshair::after {
  height: 100%;
  width: 1px;
}

.brand-center-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-orange);
  position: relative;
  z-index: 2;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1;
}

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

.brand-sub {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 2px;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  position: relative;
  padding: 6px 0;
}

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

.nav-links a.active,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-orange);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Button Component Library */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--accent-orange);
  color: #ffffff;
  border-color: var(--accent-orange);
}

.btn-primary:hover {
  background-color: var(--accent-orange-hover);
  border-color: var(--accent-orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
}

.btn-secondary {
  background-color: #222225;
  color: var(--text-primary);
  border-color: var(--border-medium);
}

.btn-secondary:hover {
  background-color: #2c2c30;
  border-color: var(--border-strong);
  color: #ffffff;
}

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

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

.btn-sm {
  padding: 8px 16px;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  padding: 8px 12px;
  font-size: 1.2rem;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 70px 0 60px;
  position: relative;
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

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

.hero-badge-strip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 14px;
  background-color: rgba(249, 115, 22, 0.1);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
}

.hero-badge-text {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent-orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 0.98;
}

.hero-title span.highlight {
  color: var(--accent-orange);
  display: block;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 580px;
  line-height: 1.65;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-specs-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
}

.hero-spec-item {
  display: flex;
  flex-direction: column;
}

.hero-spec-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
}

.hero-spec-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 2px;
}

/* Hero Visual / Real Print Floor Display */
.hero-visual-card {
  position: relative;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.hero-visual-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.hero-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.1) brightness(0.92);
  transition: transform 0.6s ease;
}

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

.hero-visual-overlay-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(18, 18, 20, 0.9);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border-subtle);
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent-orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-visual-footer {
  padding: 16px 20px;
  background: #141416;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-visual-caption {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.hero-visual-caption strong {
  color: var(--text-primary);
}

/* ==========================================================================
   PAIN POINTS & THE SSC STANDARD SECTION
   ========================================================================== */
.pain-points-section {
  padding: 90px 0;
  background-color: #111113;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.section-header {
  margin-bottom: 60px;
  text-align: center;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 16px;
}

.section-subhead {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pain-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.pain-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.pain-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--accent-orange);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.85;
}

.pain-frustration {
  background-color: rgba(239, 68, 68, 0.08);
  border-left: 3px solid #ef4444;
  padding: 14px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 24px;
}

.pain-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  color: #f87171;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  display: block;
}

.pain-quote {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  font-style: italic;
  line-height: 1.45;
}

.pain-solution {
  background-color: rgba(34, 197, 94, 0.06);
  border-left: 3px solid var(--accent-orange);
  padding: 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: auto;
}

.solution-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--accent-orange);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  display: block;
  font-weight: 700;
}

.solution-text {
  font-size: 0.92rem;
  color: var(--text-primary);
  line-height: 1.5;
}

/* ==========================================================================
   INTERACTIVE PRICING CALCULATOR SECTION
   ========================================================================== */
.calculator-section {
  padding: 90px 0;
  background-color: var(--bg-black);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.calc-wrapper-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: start;
}

/* The Exact Calculator Container Component */
#quote-calculator {
  background: #18181b !important;
  color: #f4f4f0 !important;
  padding: 36px !important;
  border-radius: 8px !important;
  font-family: var(--font-sans) !important;
  border: 1px solid #333336 !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  position: relative;
}

#quote-calculator::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-orange);
  border-radius: 8px 8px 0 0;
}

.calc-header-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.calc-title {
  font-family: var(--font-display) !important;
  font-size: 1.75rem !important;
  margin-bottom: 8px !important;
  color: #ffffff !important;
  letter-spacing: -0.02em;
}

.calc-subhead {
  color: #a1a1aa !important;
  font-size: 0.95rem !important;
  margin-bottom: 24px !important;
  line-height: 1.5;
}

.calc-form-group {
  margin-bottom: 20px !important;
}

.calc-form-group label {
  display: block !important;
  margin-bottom: 8px !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #e4e4e7;
  font-family: var(--font-mono);
}

.calc-select {
  width: 100% !important;
  padding: 14px 16px !important;
  background: #27272a !important;
  color: #ffffff !important;
  border: 1px solid #444448 !important;
  border-radius: 4px !important;
  font-family: var(--font-sans) !important;
  font-size: 1rem !important;
  outline: none;
  cursor: pointer;
  transition: var(--transition);
}

.calc-select:focus {
  border-color: var(--accent-orange) !important;
  box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.25);
}

.calc-addons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 22px;
}

.calc-addon-toggle {
  background: #242427;
  border: 1px solid #38383c;
  padding: 12px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #d4d4d8;
  transition: var(--transition);
  user-select: none;
}

.calc-addon-toggle:hover {
  background: #2c2c30;
  border-color: #4a4a50;
}

.calc-addon-toggle.active {
  background: rgba(249, 115, 22, 0.12);
  border-color: var(--accent-orange);
  color: #ffffff;
}

.calc-addon-toggle input[type="checkbox"] {
  accent-color: var(--accent-orange);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* Calculator Output Card */
.calc-output-box {
  background: #121214 !important;
  padding: 24px 20px !important;
  border-radius: 6px !important;
  text-align: center !important;
  margin-bottom: 25px !important;
  border: 1px solid #333336 !important;
  position: relative;
  overflow: hidden;
}

.calc-output-box::before {
  content: "LIVE ESTIMATE";
  position: absolute;
  top: 8px;
  right: 12px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--accent-orange);
  letter-spacing: 0.1em;
}

.calc-output-label {
  font-size: 0.78rem !important;
  color: #a1a1aa !important;
  display: block !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  font-family: var(--font-mono);
}

#calc-output {
  font-family: var(--font-display) !important;
  font-size: 2.5rem !important;
  font-weight: 800 !important;
  color: #f97316 !important;
  margin: 10px 0 !important;
  display: block !important;
  letter-spacing: -0.02em;
}

.calc-per-unit-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #ffffff;
  background: #27272a;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 8px;
  border: 1px solid #3f3f46;
}

.calc-output-disclaimer {
  font-size: 0.75rem !important;
  color: #71717a !important;
  display: block !important;
  line-height: 1.4;
}

.calc-submit-btn {
  width: 100% !important;
  background: #f97316 !important;
  color: #ffffff !important;
  border: none !important;
  padding: 18px 24px !important;
  font-family: var(--font-sans) !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  transition: background 0.2s, transform 0.15s !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.calc-submit-btn:hover {
  background: #ea580c !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

/* Calculator Side Explainer & Trust Proof */
.calc-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.calc-proof-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
}

.calc-proof-title {
  font-size: 1.15rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.calc-proof-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
}

.calc-proof-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-secondary);
}

.calc-proof-list li strong {
  color: var(--text-primary);
}

.calc-proof-check {
  color: var(--accent-orange);
  font-weight: bold;
  font-family: var(--font-mono);
}

/* ==========================================================================
   THE TRADE SPEC SHEET SECTION (GARMENTS & INK CHEMISTRY)
   ========================================================================== */
.spec-sheet-section {
  padding: 90px 0;
  background-color: #111113;
  border-bottom: 1px solid var(--border-subtle);
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.spec-column {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.spec-column-header {
  padding: 24px 28px;
  background: #18181b;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.spec-column-title {
  font-size: 1.3rem;
  color: var(--text-primary);
}

.spec-column-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.spec-column-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.1) brightness(0.92);
}

.spec-details-list {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.spec-detail-item {
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 14px;
}

.spec-detail-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.spec-detail-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.spec-detail-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 2px 8px;
  background: #27272a;
  border: 1px solid #3f3f46;
  border-radius: var(--radius-sm);
  color: var(--accent-orange);
}

.spec-detail-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   TRADE BROKERAGE & WHOLESALE ROUTING MODEL
   ========================================================================== */
.trade-model-section {
  padding: 90px 0;
  background-color: var(--bg-black);
  border-bottom: 1px solid var(--border-subtle);
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
  position: relative;
}

.workflow-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.workflow-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--border-medium);
}

.workflow-card:hover::before {
  background: var(--accent-orange);
}

.workflow-step-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent-orange);
  font-weight: 700;
  margin-bottom: 14px;
}

.workflow-step-title {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.workflow-step-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   GEO & TRADITIONAL SEO ARCHITECTURE (DEFINITIONAL H2/H3s & FAQs)
   ========================================================================== */
.geo-faq-section {
  padding: 90px 0;
  background-color: #111113;
  border-bottom: 1px solid var(--border-subtle);
}

.faq-container {
  max-width: 860px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

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

.faq-item.active {
  border-color: var(--border-orange);
}

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

.faq-question-btn h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: none;
  line-height: 1.35;
  margin: 0;
}

.faq-icon {
  width: 28px;
  height: 28px;
  background: #27272a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--accent-orange);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--accent-orange);
  color: #ffffff;
}

.faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: #141417;
}

.faq-answer-inner {
  padding: 0 24px 24px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
}

.faq-answer-inner p {
  margin-bottom: 12px;
}

.faq-answer-inner p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   DIRECT SPEC INTAKE & LEAD CAPTURE SECTION
   ========================================================================== */
.intake-section {
  padding: 90px 0;
  background-color: var(--bg-black);
  border-bottom: 1px solid var(--border-subtle);
}

.intake-box {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}

.intake-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}

.form-group-full {
  grid-column: span 2;
}

.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #d4d4d8;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 13px 16px;
  background: #222226;
  border: 1px solid #3d3d42;
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--accent-orange);
  background: #28282d;
  box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.2);
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

/* Artwork Drag & Drop Mock */
.artwork-dropzone {
  border: 2px dashed #44444a;
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  background: #1c1c20;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.artwork-dropzone:hover, .artwork-dropzone.dragover {
  border-color: var(--accent-orange);
  background: rgba(249, 115, 22, 0.05);
}

.dropzone-icon {
  font-size: 1.8rem;
  color: var(--accent-orange);
  margin-bottom: 8px;
}

.dropzone-text {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 600;
}

.dropzone-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.file-preview-strip {
  display: none;
  margin-top: 12px;
  padding: 10px 14px;
  background: #27272a;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-primary);
  align-items: center;
  justify-content: space-between;
}

/* ==========================================================================
   MODAL / POPUP (TRIGGERED FROM ESTIMATOR)
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(8, 8, 10, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 20px;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #18181b;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  max-width: 620px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.open .modal-card {
  transform: translateY(0);
}

.modal-header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #141416;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #ffffff;
}

.modal-close-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}

.modal-close-btn:hover {
  color: #ffffff;
}

.modal-body {
  padding: 28px;
}

.modal-spec-summary {
  background: #121214;
  border: 1px solid var(--border-subtle);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.modal-summary-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent-orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.modal-summary-details {
  font-size: 0.95rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.toast-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #18181b;
  border: 1px solid var(--accent-orange);
  color: #ffffff;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  z-index: 2000;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: #0d0d0f;
  border-top: 1px solid var(--border-subtle);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 50px;
}

.footer-brand-col p {
  margin: 16px 0 24px;
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.88rem;
}

.footer-links a {
  color: var(--text-secondary);
}

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

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   RESPONSIVE QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .calc-wrapper-grid {
    grid-template-columns: 1fr;
  }
  .spec-grid {
    grid-template-columns: 1fr;
  }
  .workflow-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .pain-grid {
    grid-template-columns: 1fr;
  }
  .workflow-steps {
    grid-template-columns: 1fr;
  }
  .intake-form-grid {
    grid-template-columns: 1fr;
  }
  .form-group-full {
    grid-column: span 1;
  }
  .calc-addons-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .intake-box {
    padding: 24px;
  }
}
