/* ==========================================================================
   BeSpokeHQ - Main Design Tokens & Global Styles
   Aesthetic: High-End Minimalistic Natural (Editorial, Linen, Bone, Warm Charcoal, Champagne Gold)
   ========================================================================== */

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

:root {
  /* Official BeSpokeHQ Carbon Luxury Palette: Brushed Titanium & Molten Ember */
  --bg-primary: #070709;
  --bg-secondary: #0D0D12;
  --bg-surface: #13131A;
  --bg-elevated: #1B1B24;
  --bg-dark: #050507;
  --bg-dark-card: #0F0F16;

  /* Typography Colors - Brushed Platinum, Chrome & Slate */
  --text-primary: #F8FAFC;
  --text-secondary: #CBD5E1;
  --text-muted: #64748B;
  --text-light: #FFFFFF;
  --text-light-muted: #94A3B8;

  /* Accents & Metals - Electric Molten Ember & Titanium Flare */
  --accent-gold: #FF6600;
  --accent-gold-hover: #FF7D1A;
  --accent-gold-soft: rgba(255, 102, 0, 0.12);
  --accent-gold-border: rgba(255, 102, 0, 0.35);

  /* Status Colors */
  --accent-sage: #38bdf8;
  --accent-sage-soft: rgba(56, 189, 248, 0.12);
  --status-pending: #FF851B;
  --status-pending-bg: rgba(255, 133, 27, 0.12);
  --status-approved: #10B981;
  --status-approved-bg: rgba(16, 185, 129, 0.12);
  --status-paid: #059669;
  --status-paid-bg: rgba(5, 150, 105, 0.12);
  --status-internal: #6366F1;
  --status-contractor: #EC4899;

  /* Borders & Glass Dividers */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.15);
  --border-gold: rgba(255, 102, 0, 0.4);

  /* Typography Stacks - Precision Brushed Tech / Luxury Sans */
  --font-editorial: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Transitions & Shadows */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 9999px;

  --shadow-subtle: 0 2px 10px rgba(0, 0, 0, 0.45);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.65);
  --shadow-floating: 0 20px 45px -12px rgba(0, 0, 0, 0.85);
  --shadow-modal: 0 25px 60px -15px rgba(0, 0, 0, 0.95);
  --shadow-ember: 0 0 25px rgba(255, 102, 0, 0.35);

  --transition-smooth: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Defaults */
*, *::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;
  width: 100%;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 102, 0, 0.45) #070709;
}

/* Custom Carbon Luxury & Molten Ember Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #070709;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(255, 102, 0, 0.45) 0%, rgba(255, 133, 27, 0.25) 100%);
  border-radius: 9999px;
  border: 2px solid #070709;
  box-shadow: inset 0 0 4px rgba(255, 102, 0, 0.2);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #FF6600 0%, #FF851B 100%);
  box-shadow: 0 0 12px rgba(255, 102, 0, 0.75), inset 0 0 4px #FFA500;
}

::-webkit-scrollbar-thumb:active {
  background: #FF5500;
  box-shadow: 0 0 16px rgba(255, 85, 0, 0.95);
}

::-webkit-scrollbar-corner {
  background: #070709;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  width: 100%;
}

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

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

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

/* Utility Containers */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Precision Modern Typography (Brushed Titanium / Sleek Technical) */
h1, h2, h3, h4, .font-editorial {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

h1 {
  font-size: 4rem;
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.035em;
}

h2 {
  font-size: 2.85rem;
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.85rem;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h4 {
  font-size: 1.35rem;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -0.015em;
}

p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.68;
}

.lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-weight: 400;
}

.subheading {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
  display: inline-block;
}

/* Editorial Archival Stamp */
.editorial-stamp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold-border);
  background: var(--accent-gold-soft);
  padding: 0.28rem 0.85rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.85rem;
  max-width: 100%;
  box-sizing: border-box;
}

/* --- Agency Model & Clean Sheet Section --- */
.agency-model-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.workflow-steps-card {
  box-shadow: var(--shadow-floating);
  padding: 2.5rem;
  position: sticky;
  top: 100px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

.workflow-steps-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
  position: relative;
}

.workflow-step-item {
  display: flex;
  gap: 1.15rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: rgba(19, 19, 26, 0.4);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  cursor: pointer;
  user-select: none;
}

.workflow-step-item:hover {
  border-color: rgba(255, 102, 0, 0.35);
  background: rgba(27, 27, 36, 0.7);
  transform: translateX(4px);
}

.workflow-step-item.is-active {
  border-color: var(--accent-gold);
  background: rgba(255, 102, 0, 0.08);
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.7), 0 0 16px rgba(255, 102, 0, 0.2);
  transform: translateX(6px);
}

.workflow-step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.workflow-step-item.is-active .workflow-step-num {
  background: linear-gradient(135deg, #FF6600, #FFA500);
  color: #FFFFFF;
  border-color: #FFA500;
  box-shadow: 0 0 14px rgba(255, 102, 0, 0.6);
}

.workflow-step-title {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.workflow-step-item.is-active .workflow-step-title {
  color: #FF851B;
}

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

/* --- Ultra-Slim Molten Scroll Progress Bar --- */
.scroll-progress-track {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  z-index: 1001;
  pointer-events: none;
}

.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #FF5500 0%, #FF8800 50%, #FFAA00 100%);
  box-shadow: 0 0 10px rgba(255, 102, 0, 0.85), 0 0 4px #FF7700;
  transition: width 0.08s ease-out;
}


/* --- Editorial Scroll Reveal & Fluid Motion Polish --- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.32s; }
.reveal-delay-4 { transition-delay: 0.42s; }

/* Enhanced CTA Button Micro-Interactions */
.btn-gold {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FF6600 0%, #FF851B 100%);
  color: #FFFFFF !important;
  border: none;
  font-weight: 600;
  box-shadow: 0 4px 18px rgba(255, 102, 0, 0.35);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1), filter 0.2s ease;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 102, 0, 0.55), 0 0 16px rgba(255, 133, 27, 0.4);
  filter: brightness(1.05);
}

.btn-gold:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(255, 102, 0, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-medium);
  color: var(--text-primary);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s ease, background-color 0.2s ease;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--border-gold);
  background: rgba(255, 102, 0, 0.08);
}

/* Accessibility: Respect Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Signature Molten Ember Flare Divider */
.ember-flare-divider {
  width: 100%;
  max-width: 640px;
  height: 2px;
  margin: 3.5rem auto;
  background: radial-gradient(ellipse at center, #FF8800 0%, rgba(255, 102, 0, 0.5) 45%, transparent 75%);
  box-shadow: 0 0 16px rgba(255, 102, 0, 0.55);
  position: relative;
}

.ember-flare-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FFA500;
  box-shadow: 0 0 12px #FF8800, 0 0 22px #FF5500;
}

/* Header & Navigation (Public Landing) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 7, 9, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 1.25rem;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.brand-name {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
  font-weight: 700;
  color: #F8FAFC;
}

.brand-name .brand-hq {
  background: linear-gradient(135deg, #FF7700 0%, #FFA500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-left: 1px;
}

.brand-logo-img,
img.brand-logo-img,
.brand-logo img {
  width: 36px !important;
  height: 36px !important;
  max-width: 36px !important;
  max-height: 36px !important;
  min-width: 36px !important;
  min-height: 36px !important;
  border-radius: 9px;
  object-fit: cover;
  border: 1px solid rgba(255, 102, 0, 0.35);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6), 0 0 12px rgba(255, 102, 0, 0.2);
  flex-shrink: 0 !important;
  display: inline-block;
  vertical-align: middle;
}

.brand-logo-auth,
img.brand-logo-auth {
  width: 72px !important;
  height: 72px !important;
  max-width: 72px !important;
  max-height: 72px !important;
  min-width: 72px !important;
  min-height: 72px !important;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(255, 102, 0, 0.4);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 102, 0, 0.25);
  flex-shrink: 0 !important;
  display: block;
  margin: 0 auto 0.75rem;
}

.auth-tagline {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-top: 0.35rem;
}

.brand-logo .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  box-shadow: 0 0 8px var(--accent-gold);
  display: inline-block;
  margin-left: 2px;
  transform: translateY(-2px);
  flex-shrink: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.4vw, 1.85rem);
  list-style: none;
  margin: 0;
  padding: 0;
  flex-shrink: 1;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.015em;
  white-space: nowrap;
  text-decoration: none;
  padding: 0.4rem 0.2rem;
  transition: color 0.2s ease;
  display: inline-block;
}

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

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

.nav-signin-link {
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text-secondary);
  white-space: nowrap;
  padding: 0.4rem 0.6rem;
  transition: color 0.2s ease;
}

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

.nav-portal-btn {
  white-space: nowrap;
  font-size: 0.84rem;
  padding: 0.52rem 1.15rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Landing Hero Section */
.hero-section {
  padding: 6.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-subtle);
}

.hero-tag-mobile {
  display: none;
}

@media (max-width: 480px) {
  .hero-tag-full {
    display: none;
  }
  .hero-tag-mobile {
    display: inline;
  }
}

.hero-tag-pulse {
  width: 8px;
  height: 8px;
  background-color: #2D6A4F;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.2);
}

.hero-title {
  max-width: 920px;
  margin-bottom: 1.75rem;
  font-size: 4.1rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.06;
  color: #FFFFFF;
}

.hero-title em {
  font-style: normal;
  font-family: inherit;
  font-weight: 800;
  background: linear-gradient(135deg, #FF6600 0%, #FFA500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-desc {
  max-width: 680px;
  font-size: 1.25rem;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 5.5rem;
  padding: 2.75rem 3rem;
  background: rgba(19, 19, 26, 0.6);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.12), 0 24px 60px -15px rgba(0, 0, 0, 0.9);
  position: relative;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-sans);
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  background: linear-gradient(180deg, #FFFFFF 20%, #CBD5E1 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.45rem;
}

.stat-label {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Services Grid (Minimalistic Luxury) */
.section {
  padding: 6rem 0;
}

.section-alt {
  background-color: var(--bg-secondary);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* --- Paper Grain Disabled: Crystal Clear Glass Surface --- */
.luxury-grain {
  display: none !important;
}

/* Editorial Creative Disciplines Architecture (Roomy 3-Column Grid) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: rgba(19, 19, 26, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.1), 0 16px 40px -12px rgba(0, 0, 0, 0.75);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
  border-top-color: #FFA500;
  box-shadow: inset 0 1px 0 0 rgba(255, 102, 0, 0.35), 0 20px 48px -10px rgba(0, 0, 0, 0.9), 0 0 24px rgba(255, 102, 0, 0.2);
}

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

.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

.service-index-num {
  font-family: var(--font-editorial);
  font-size: 1.4rem;
  color: var(--accent-gold);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.service-badge-pill {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  background: var(--accent-gold-soft);
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold-border);
}

.service-title {
  font-family: var(--font-editorial);
  font-size: 1.85rem;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.service-tagline {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

/* Curated Deliverables as Minimal Tags */
.service-deliverables-wrap {
  margin-bottom: 2rem;
  flex-grow: 1;
}

.service-deliverables-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.service-tag-chip {
  font-size: 0.78rem;
  background: var(--bg-secondary);
  color: var(--text-secondary);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(26, 18, 12, 0.06);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-tag-chip:hover {
  background: var(--bg-surface);
  border-color: var(--accent-gold-border);
  color: var(--text-primary);
  transform: translateY(-1px);
}

.service-tag-chip::before {
  content: "◆";
  font-size: 0.5rem;
  color: var(--accent-gold);
}

/* Service Footer */
.service-card-footer {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.service-rate-box {
  display: flex;
  flex-direction: column;
}

.service-rate-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.service-rate-amount {
  font-family: var(--font-editorial);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--text-primary);
}

.service-rate-unit {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.service-actions-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* Service Details Modal Specifics */
#serviceDetailsModalOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 13, 7, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

#serviceDetailsModalOverlay.active {
  display: flex !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.service-modal-box {
  max-width: 680px;
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-modal);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.24s cubic-bezier(0.16, 1, 0.3, 1);
}

#serviceDetailsModalOverlay.active .service-modal-box {
  transform: translateY(0) scale(1);
}

.service-modal-hero {
  padding: 1.75rem 2rem 1.25rem;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-surface) 100%);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.service-modal-meta-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1rem 2rem;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border-subtle);
}

.service-modal-meta-item {
  display: flex;
  flex-direction: column;
}

.service-modal-meta-item .label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.service-modal-meta-item .val {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-primary);
}

.service-modal-body {
  padding: 1.75rem 2rem;
  max-height: 55vh;
  overflow-y: auto;
}

.service-modal-section {
  margin-bottom: 1.5rem;
}

.service-modal-section:last-child {
  margin-bottom: 0;
}

.service-modal-section-title {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.service-modal-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.service-modal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.service-modal-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.service-modal-list li .ph {
  color: var(--accent-gold);
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.service-modal-foot {
  padding: 1.25rem 2rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 640px) {
  .service-modal-meta-strip {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
  }
  .service-modal-hero {
    padding: 1.25rem;
  }
  .service-modal-body {
    padding: 1.25rem;
  }
  .service-modal-foot {
    padding: 1rem 1.25rem;
    flex-direction: column;
    align-items: stretch;
  }
  .service-modal-foot button,
  .service-modal-foot a {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .service-card {
    padding: 2.25rem 1.75rem;
  }
}

/* Talent Showcase Preview Grid */
.talent-roster-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.talent-preview-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.talent-preview-card:hover {
  border-color: var(--accent-gold-border);
  box-shadow: var(--shadow-card);
}

.talent-img-wrap {
  height: 280px;
  position: relative;
  overflow: hidden;
  background: #EAE6DF;
}

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

.talent-preview-card:hover .talent-img-wrap img {
  transform: scale(1.04);
}

.talent-pill-type {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
}

.type-internal {
  background: rgba(19, 19, 26, 0.92);
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
}

.type-contractor {
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.95), rgba(255, 133, 27, 0.95));
  color: #FFFFFF;
}

.talent-body {
  padding: 1.5rem 1.25rem;
}

.talent-name {
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.talent-role {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
}

.talent-bio-clamp {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.talent-meta-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.82rem;
}

.talent-rate {
  font-weight: 600;
  color: var(--text-primary);
}

.talent-location {
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  margin-top: auto;
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 5rem 0 3rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand h3 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-light-muted);
  max-width: 320px;
}

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

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

.footer-links a {
  color: var(--text-light-muted);
  font-size: 0.9rem;
}

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

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: all 0.25s ease;
  text-decoration: none;
}

.social-icon-btn:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--bg-dark);
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-light-muted);
}

/* --- Floating Back to Top Button --- */
.back-to-top-btn {
  position: fixed;
  bottom: 2.25rem;
  right: 2.25rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-dark);
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold-border);
  box-shadow: 0 8px 24px rgba(26, 18, 12, 0.28), 0 2px 6px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  cursor: pointer;
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.85);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.back-to-top-btn:hover {
  background: var(--accent-gold);
  color: var(--bg-dark);
  border-color: var(--accent-gold);
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 12px 28px rgba(197, 155, 118, 0.4);
}

.back-to-top-btn:active {
  transform: translateY(-1px) scale(0.96);
}

/* --- Floating Bottom-Left "Get a Quote" / Contact Button (Always Visible) --- */
.floating-quote-btn {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.72rem 1.35rem;
  border-radius: var(--radius-pill);
  background: var(--bg-dark);
  color: var(--text-light);
  border: 1px solid var(--border-gold);
  box-shadow: 0 10px 30px rgba(26, 18, 12, 0.35), 0 0 18px var(--accent-gold-soft);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  z-index: 990;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-quote-btn .quote-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-gold-soft);
  color: var(--accent-gold);
  font-size: 0.95rem;
}

.floating-quote-btn .quote-btn-arrow {
  color: var(--accent-gold);
  transition: transform 0.25s ease;
  display: inline-block;
}

.floating-quote-btn:hover {
  background: var(--bg-dark-card);
  border-color: var(--accent-gold);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 34px rgba(26, 18, 12, 0.45), 0 0 24px rgba(197, 155, 118, 0.35);
  color: #FFFFFF;
}

.floating-quote-btn:hover .quote-btn-arrow {
  transform: translateX(3px);
}

.floating-quote-btn:active {
  transform: translateY(-1px) scale(0.98);
}

/* --- Consultation Section Simple Operational Hours & Hubs Strip --- */
.booking-hours-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem 1.6rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.5rem;
  margin-bottom: 2rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--text-secondary);
  box-shadow: 0 2px 10px rgba(26, 18, 12, 0.03);
}

.booking-hours-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.booking-hours-item strong {
  color: var(--text-primary);
  font-weight: 600;
}

.booking-hours-item .ph {
  font-size: 1.05rem;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.booking-hours-divider {
  color: var(--border-medium);
  font-size: 0.75rem;
  user-select: none;
}

/* --- Mobile Navigation Drawer & Hamburger Toggle --- */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-menu-toggle:hover {
  background: var(--bg-secondary);
  border-color: var(--border-medium);
}

.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(20, 19, 18, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  visibility: hidden;
  width: 320px;
  max-width: 86vw;
  height: 100vh;
  background: var(--bg-surface);
  border-left: 1px solid var(--border-subtle);
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.18);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
  overflow-y: auto;
}

.mobile-drawer.active {
  transform: translateX(0);
  visibility: visible;
}

.mobile-drawer-head {
  padding: 1.5rem 1.5rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-drawer-close {
  background: transparent;
  border: none;
  font-size: 1.35rem;
  color: var(--text-muted);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.mobile-drawer-close:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

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

.mobile-drawer-link {
  display: block;
  padding: 0.85rem 0.5rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-subtle);
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobile-drawer-link:hover {
  color: var(--accent-gold);
}

.mobile-drawer-actions {
  padding: 1.5rem;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid var(--border-subtle);
}

.mobile-drawer-socials {
  padding: 1rem 1.5rem 1.75rem;
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.3rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .nav-menu { display: none !important; }
  .mobile-menu-toggle { display: inline-flex !important; }
  .nav-actions { gap: 0.5rem; }
  .nav-actions .btn-outline { display: none !important; }
}

@media (max-width: 900px) {
  .agency-model-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }

  .problem-thesis-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .problem-card,
  .thesis-card {
    padding: 1.85rem 1.5rem !important;
  }

  .problem-title,
  .thesis-title {
    font-size: 1.35rem !important;
  }

  .thesis-pipeline-strip {
    padding: 0.65rem 0.85rem !important;
    font-size: 0.78rem !important;
    gap: 0.35rem !important;
  }
}

@media (max-width: 768px) {
  /* Eliminate header button crowding on mobile */
  .nav-actions .nav-link,
  .nav-actions .btn-gold,
  .nav-actions .nav-portal-btn,
  .nav-actions .nav-signin-link {
    display: none !important;
  }
  .nav-wrap { height: 60px; }
  .brand-logo { font-size: 1.3rem; }

  h1 { font-size: 2.35rem; }
  .hero-section { padding: 3.25rem 0 2rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  .booking-hours-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 1rem 1.25rem;
  }
  .booking-hours-divider {
    display: none;
  }

  .problem-card,
  .thesis-card {
    padding: 1.65rem 1.25rem !important;
  }
}

@media (max-width: 600px) {
  .container, .container-narrow {
    padding: 0 1.15rem !important;
  }

  /* Agency Model Section */
  .agency-model-grid {
    gap: 2rem !important;
  }
  .workflow-steps-card {
    padding: 1.5rem 1.15rem !important;
  }

  /* Hero Section */
  .hero-section { padding: 2.75rem 0 2rem; }
  .hero-tag {
    display: inline-flex !important;
    align-items: flex-start !important;
    border-radius: var(--radius-sm) !important;
    padding: 0.45rem 0.75rem !important;
    font-size: 0.68rem !important;
    line-height: 1.45 !important;
    margin-bottom: 1.5rem !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .hero-tag-pulse {
    margin-top: 4px !important;
    flex-shrink: 0 !important;
  }
  .hero-title {
    font-size: clamp(1.65rem, 7vw, 2.05rem) !important;
    line-height: 1.25 !important;
    margin-bottom: 1.25rem !important;
  }
  .hero-desc {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin-bottom: 2rem !important;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Hero Stats 2x2 Grid */
  .hero-stats {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.25rem 0.85rem !important;
    padding: 1.25rem 1rem !important;
    margin-top: 2.5rem !important;
  }
  .stat-num {
    font-size: 2rem !important;
  }
  .stat-label {
    font-size: 0.72rem !important;
    line-height: 1.3 !important;
  }

  /* Services Grid */
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .service-card {
    padding: 1.5rem 1.15rem !important;
  }
  .service-title {
    font-size: 1.45rem !important;
  }
  .service-tagline {
    font-size: 0.88rem !important;
    margin-bottom: 1.25rem !important;
  }
  .service-tags-list {
    gap: 0.35rem !important;
  }
  .service-tag-chip {
    font-size: 0.72rem !important;
    padding: 0.25rem 0.55rem !important;
  }
  .service-card-footer {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 1rem !important;
  }
  .service-card-footer .select-service-btn,
  .service-card-footer .btn {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
  }

  /* The Collective Pillars */
  .collective-pillar-card {
    padding: 1.5rem 1.15rem !important;
  }
  .pillar-num {
    font-size: 2.5rem !important;
  }
  .pillar-title {
    font-size: 1.35rem !important;
  }
  .pillar-roles-list li {
    font-size: 0.84rem !important;
  }
  .curation-banner {
    padding: 1.75rem 1.15rem !important;
  }
  .curation-banner h3 {
    font-size: 1.55rem !important;
  }
  .curation-banner p {
    font-size: 0.9rem !important;
  }
  .curation-banner .btn {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    white-space: normal !important;
  }

  /* Booking Form Card */
  .clean-sheet-wrapper {
    padding: 1.35rem 1rem !important;
  }
  .form-row {
    grid-template-columns: 1fr !important;
    gap: 0.85rem !important;
  }
  .form-group {
    margin-bottom: 0.85rem !important;
  }
  .form-input, .form-select, .form-textarea {
    font-size: 16px !important;
    padding: 0.75rem 0.85rem !important;
  }
  .booking-hours-bar {
    padding: 0.85rem 0.95rem !important;
    font-size: 0.76rem !important;
    gap: 0.5rem !important;
  }

  /* Floating Buttons */
  .floating-quote-btn {
    bottom: 1rem !important;
    left: 0.75rem !important;
    padding: 0.55rem 0.85rem !important;
    font-size: 0.75rem !important;
    gap: 0.35rem !important;
  }
  .back-to-top-btn {
    bottom: 1rem !important;
    right: 0.75rem !important;
    width: 38px !important;
    height: 38px !important;
    font-size: 1.05rem !important;
  }

  /* Pitch Features & Who We Serve on Mobile */
  .pitch-features-grid {
    grid-template-columns: 1fr !important;
    gap: 0.65rem !important;
  }
  .pitch-feature-chip {
    padding: 0.75rem 0.9rem !important;
    font-size: 0.88rem !important;
  }
  .who-we-serve-grid {
    grid-template-columns: 1fr !important;
    gap: 0.85rem !important;
  }
  .industry-card {
    padding: 1rem 1.15rem !important;
  }
  .market-callout {
    padding: 1rem 1.15rem !important;
    font-size: 0.88rem !important;
  }
}

/* --- Who We Serve & Why BeSpoke Matters --- */
.who-we-serve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.industry-card {
  background: rgba(19, 19, 26, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition-smooth);
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.08);
}

.industry-card:hover {
  border-color: var(--border-gold);
  border-top-color: #FFA500;
  transform: translateY(-2px);
  background: rgba(27, 27, 36, 0.7);
  box-shadow: inset 0 1px 0 0 rgba(255, 102, 0, 0.3), var(--shadow-card);
}

.industry-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-secondary);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.industry-title {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.market-callout {
  margin-top: 2.25rem;
  background: var(--accent-gold-soft);
  border: 1px solid var(--accent-gold-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.98rem;
  color: var(--text-primary);
  line-height: 1.55;
}

/* --- Section Smooth Scroll & Anchor Offsets --- */
html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 76px;
}

/* --- Problem & Thesis (Why BeSpokeHQ Matters) --- */
.problem-thesis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.problem-card {
  background: rgba(19, 19, 26, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.1), var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.problem-badge {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #EF4444;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.problem-title {
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  line-height: 1.35;
}

.problem-lead {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.thesis-card {
  background: rgba(19, 19, 26, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
  border-top: 1px solid #FFA500;
  box-shadow: inset 0 1px 0 0 rgba(255, 102, 0, 0.3), var(--shadow-card);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.thesis-accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-gold);
}

.thesis-badge {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.thesis-title {
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  line-height: 1.35;
}

.thesis-lead {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.thesis-pipeline-strip {
  padding: 0.75rem 1rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 1.25rem;
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}

.pipeline-tag {
  background: rgba(217, 167, 74, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  border: 1px solid rgba(217, 167, 74, 0.2);
}

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

.thesis-subtext {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.thesis-deliverables-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.check-icon {
  color: var(--accent-gold);
  font-weight: 700;
  margin-right: 0.35rem;
}

/* --- Pitch Features Grid (How It Works) --- */
.pitch-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.pitch-feature-chip {
  padding: 0.8rem 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pitch-feature-chip .ph {
  color: var(--accent-gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}


/* Mobile S (320px Extreme Testing) */
@media (max-width: 360px) {
  .container, .container-narrow {
    padding: 0 0.85rem !important;
  }
  .brand-logo {
    font-size: 1.25rem !important;
  }
  .hero-tag {
    font-size: 0.64rem !important;
    padding: 0.35rem 0.6rem !important;
  }
  .hero-title {
    font-size: 1.55rem !important;
  }
  .hero-desc {
    font-size: 0.88rem !important;
  }
  .hero-stats {
    padding: 1rem 0.75rem !important;
    gap: 1rem 0.6rem !important;
  }
  .stat-num {
    font-size: 1.75rem !important;
  }
  .stat-label {
    font-size: 0.68rem !important;
  }
  .clean-sheet-wrapper {
    padding: 1.15rem 0.75rem !important;
  }
  .workflow-steps-card {
    padding: 1.25rem 0.85rem !important;
  }
  .editorial-stamp {
    font-size: 0.62rem !important;
    letter-spacing: 0.12em !important;
    padding: 0.25rem 0.6rem !important;
  }
  .booking-hours-bar {
    padding: 0.75rem 0.75rem !important;
    font-size: 0.72rem !important;
  }
  .floating-quote-btn {
    bottom: 0.85rem !important;
    left: 0.5rem !important;
    padding: 0.48rem 0.7rem !important;
    font-size: 0.72rem !important;
  }
  .back-to-top-btn {
    bottom: 0.85rem !important;
    right: 0.5rem !important;
    width: 34px !important;
    height: 34px !important;
    font-size: 0.95rem !important;
  }
}
