/* ==========================================================================
   VANTAGE EXPERTS - COMPONENT STYLES
   Theme: Executive Navy (#0B1F42) & Prestige Gold (#C6A15B)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. NAVIGATION HEADER (Institutional & Professional Layout)
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 122px;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.90);
  backdrop-filter: var(--backdrop-blur);
  -webkit-backdrop-filter: var(--backdrop-blur);
  border-bottom: 1px solid rgba(7, 20, 43, 0.12);
  transition: background-color var(--transition-normal), backdrop-filter var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.90);
  backdrop-filter: var(--backdrop-blur);
  -webkit-backdrop-filter: var(--backdrop-blur);
  border-bottom: 1px solid rgba(7, 20, 43, 0.12);
  box-shadow: var(--shadow-md);
}

.header-container {
  max-width: var(--container-max);
  height: 100%;
  margin: 0 auto;
  padding: 10px var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-primary);
  font-family: var(--font-display);
  flex-shrink: 0;
}

.brand-logo-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 345px;
  height: 102px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.brand-logo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1);
  opacity: 0.90;
}

.brand-monogram {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #07142B;
  font-weight: 900;
  font-size: 1.2rem;
  box-shadow: var(--gold-glow-subtle);
  position: relative;
  flex-shrink: 0;
}

.brand-monogram::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 10px;
  background: var(--gold-gradient);
  opacity: 0.35;
  z-index: -1;
  filter: blur(4px);
}

.brand-logo-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 1.08rem;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--text-primary);
}

.brand-tagline-sub {
  font-size: 0.625rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--gold-400);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Nav Menu: Professional Proportionate Spacing */
.desktop-nav {
  display: flex;
  align-items: center;
}

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

.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.885rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.45rem 0.5rem;
  border-radius: var(--radius-xs);
  transition: all var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

.site-header .nav-link {
  color: #1E3A5F;
}

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

.site-header .nav-link:hover,
.site-header .nav-link.active {
  color: #07142B;
}

[data-theme="light"] .nav-link {
  color: #1E3A5F;
}

[data-theme="light"] .nav-link:hover, 
[data-theme="light"] .nav-link.active {
  color: #07142B;
  background-color: rgba(184, 142, 58, 0.12);
}

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

/* Theme Toggle */
.theme-toggle-btn {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-medium);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.theme-toggle-btn:hover {
  color: var(--gold-400);
  border-color: var(--gold-border-bright);
  background: var(--bg-elevated);
}

[data-theme="light"] .theme-toggle-btn {
  background: #FFFFFF;
  border-color: rgba(7, 20, 43, 0.15);
  color: #1E3A5F;
}

[data-theme="light"] .theme-toggle-btn:hover {
  background: #EFF4FA;
  color: #7A5210;
  border-color: var(--gold-500);
}

/* Mobile Hamburger Toggle */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #07142B;
  font-size: 1.5rem;
  cursor: pointer;
  padding: var(--space-xs);
}

/* Mobile Navigation Drawer */
.mobile-drawer {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  background: var(--bg-primary);
  backdrop-filter: var(--backdrop-blur-heavy);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: var(--space-xl) var(--space-lg);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
  border-bottom: 1px solid var(--border-medium);
}

.mobile-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer .nav-menu {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  width: 100%;
}

.mobile-drawer .nav-link {
  font-size: 1.25rem;
  font-weight: 600;
  width: 100%;
  padding: 0.65rem 0.75rem;
}

/* --------------------------------------------------------------------------
   2. BUTTONS & CTAs
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.925rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #07142B;
  font-weight: 700;
  box-shadow: var(--gold-glow-subtle);
  border-color: var(--gold-500);
}

.btn-gold:hover {
  box-shadow: var(--gold-glow);
  transform: translateY(-2px);
}

.btn-glass {
  background: var(--bg-glass-card);
  backdrop-filter: var(--backdrop-blur);
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
}

.btn-glass:hover {
  background: var(--bg-glass-card-hover);
  border-color: var(--gold-border-bright);
  color: var(--gold-400);
  transform: translateY(-2px);
}

[data-theme="light"] .btn-glass {
  background: #FFFFFF;
  color: #07142B;
  border-color: rgba(7, 20, 43, 0.18);
  box-shadow: var(--shadow-sm);
}

[data-theme="light"] .btn-glass:hover {
  background: #EFF4FA;
  border-color: var(--gold-500);
  color: #07142B;
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-400);
  border: 1px solid var(--gold-border);
}

.btn-outline-gold:hover {
  background: var(--gold-subtle);
  border-color: var(--gold-border-bright);
  transform: translateY(-2px);
}

[data-theme="light"] .btn-outline-gold {
  color: #7A5210;
  border-color: rgba(135, 103, 39, 0.45);
}

[data-theme="light"] .btn-outline-gold:hover {
  background: rgba(184, 142, 58, 0.12);
  color: #5E3D06;
  border-color: #876727;
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1.025rem;
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: 0.45rem 1.05rem;
  font-size: 0.84rem;
}

/* --------------------------------------------------------------------------
   3. HERO SECTION & INTELLIGENCE HUD
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 2.5rem);
  padding-bottom: var(--space-4xl);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background-image: linear-gradient(90deg, rgba(7, 20, 43, 0.98) 0%, rgba(7, 20, 43, 0.84) 42%, rgba(7, 20, 43, 0.55) 100%), url('../images/luxury_highstreet_night.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 20, 43, 0.18), rgba(7, 20, 43, 0.72));
  pointer-events: none;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.4rem 1.1rem;
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-pill);
  color: var(--gold-400);
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}

.pulse-indicator {
  width: 8px;
  height: 8px;
  background: var(--gold-500);
  border-radius: 50%;
  position: relative;
}

.pulse-indicator::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--gold-500);
  opacity: 0.6;
  animation: ripplePulse 2s infinite ease-out;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}

.hero-title .gold-gradient-text {
  background: var(--gold-gradient-text);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

[data-theme="light"] .hero-section {
  background-image: linear-gradient(90deg, rgba(244, 247, 251, 0.96) 0%, rgba(244, 247, 251, 0.9) 48%, rgba(244, 247, 251, 0.68) 100%), url('../images/luxury_highstreet_night.jpg');
}

[data-theme="light"] .hero-section::after {
  background: linear-gradient(180deg, rgba(244, 247, 251, 0.1), rgba(244, 247, 251, 0.72));
}

[data-theme="light"] .hero-hud-card {
  background: rgba(255, 255, 255, 0.94);
  border-color: var(--gold-border);
  color: var(--text-primary);
  box-shadow: var(--shadow-lg), var(--gold-glow-subtle);
}

[data-theme="light"] .hud-header {
  border-bottom-color: var(--border-subtle);
}

[data-theme="light"] .hud-status {
  color: #087A54;
}

[data-theme="light"] .hud-metric-box {
  background: var(--bg-tertiary);
  border-color: var(--border-card);
}

[data-theme="light"] .hud-metric-label {
  color: var(--text-muted);
}

[data-theme="light"] .hud-metric-number,
[data-theme="light"] .hud-list-city {
  color: var(--text-primary);
}

[data-theme="light"] .hud-list-item {
  background: var(--bg-tertiary);
}

[data-theme="light"] .hud-footer-callout {
  background: var(--gold-subtle);
  border-color: var(--gold-border);
  color: var(--text-secondary);
}

[data-theme="light"] .hud-footer-callout strong {
  color: var(--text-primary);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 620px;
  margin-bottom: var(--space-2xl);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-3xl);
}

/* Metric Counter Strip */
.metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--bg-glass-card);
  backdrop-filter: var(--backdrop-blur);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.metric-item {
  display: flex;
  flex-direction: column;
  padding: 0 var(--space-sm);
  border-right: 1px solid var(--border-subtle);
}

.metric-item:last-child {
  border-right: none;
}

.metric-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  display: flex;
  align-items: baseline;
}

.metric-value .gold-suffix {
  color: var(--gold-400);
  font-size: 1.5rem;
  margin-left: 2px;
}

.metric-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Retail Terminal HUD Asset (High-Tech Navy Radar in Both Themes) */
.hero-hud-card {
  background: linear-gradient(180deg, #0B1F42 0%, #07142B 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg), var(--gold-glow-subtle);
  position: relative;
  overflow: hidden;
  color: #F8FAFC;
}

.hud-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  padding-bottom: var(--space-md);
  margin-bottom: var(--space-lg);
}

.hud-status {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: #34D399;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hud-pill {
  width: 8px;
  height: 8px;
  background: #34D399;
  border-radius: 50%;
  box-shadow: 0 0 10px #34D399;
}

.hud-badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  background: rgba(198, 161, 91, 0.15);
  color: #EAD2A1;
  border: 1px solid rgba(198, 161, 91, 0.35);
  font-weight: 600;
}

.hud-grid-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.hud-metric-box {
  background: rgba(7, 20, 43, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.hud-metric-label {
  font-size: 0.75rem;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.hud-metric-number {
  font-size: 1.35rem;
  font-weight: 700;
  color: #F8FAFC;
  margin-top: 4px;
}

.hud-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.hud-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  border: 1px solid transparent;
  transition: all var(--transition-fast);
}

.hud-list-item:hover {
  background: rgba(198, 161, 91, 0.12);
  border-color: rgba(198, 161, 91, 0.35);
}

.hud-list-city {
  font-weight: 600;
  color: #F8FAFC;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.hud-list-rate {
  color: #EAD2A1;
  font-weight: 600;
  font-family: monospace;
}

.hud-footer-callout {
  margin-top: 1.25rem;
  padding: 0.85rem;
  background: rgba(198, 161, 91, 0.14);
  border: 1px solid rgba(198, 161, 91, 0.35);
  border-radius: var(--radius-sm);
  font-size: 0.825rem;
  color: #E2E8F0;
  text-align: center;
  line-height: 1.5;
}

.hud-footer-callout strong {
  color: #F4E7CC;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   4. MARQUEE TICKER & PORTFOLIO FILTER
   -------------------------------------------------------------------------- */
.portfolio-section {
  padding: var(--space-4xl) 0;
  position: relative;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.ticker-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: var(--space-lg) 0;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: infiniteTicker 40s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.brand-ticker-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: 140px;
  min-width: 140px;
  padding: 0 1.25rem;
  margin: 0 0.5rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-pill);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.brand-ticker-logo {
  max-height: 28px;
  max-width: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 1;
  transition: filter var(--transition-fast), transform var(--transition-fast), opacity var(--transition-fast);
}

.brand-ticker-logo {
  filter: none;
  opacity: 1;
}

.brand-ticker-logo.logo-light,
.portfolio-brand-logo.logo-light,
.brand-ticker-logo[src*="malabar.svg"],
.portfolio-brand-logo[src*="malabar.svg"],
.brand-ticker-logo[src*="bhpc.png"],
.portfolio-brand-logo[src*="bhpc.png"] {
  filter: brightness(0);
}

.brand-ticker-card:hover {
  background: var(--gold-subtle);
  border-color: var(--gold-border-bright);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.brand-ticker-card:hover .brand-ticker-logo {
  filter: none;
  opacity: 1;
  transform: scale(1.08);
}

.category-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-xl);
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-medium);
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--gold-500);
  color: #07142B;
  border-color: var(--gold-500);
  font-weight: 700;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.portfolio-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  height: 96px;
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-card);
  cursor: pointer;
}

.portfolio-logo-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-brand-logo {
  max-height: 38px;
  max-width: 125px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 1;
  transition: all var(--transition-fast);
}

.portfolio-brand-logo {
  filter: none;
  opacity: 1;
}

.portfolio-brand-logo.logo-light {
  filter: brightness(0);
}
.portfolio-card:hover {
  border-color: var(--gold-border-bright);
  transform: translateY(-4px);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-card-hover);
}

.portfolio-card:hover .portfolio-brand-logo {
  filter: none;
  opacity: 1;
  transform: scale(1.08);
}

.portfolio-card:hover .portfolio-brand-logo[src*="malabar.svg"] {
  filter: none !important;
}

.portfolio-card:hover .portfolio-brand-logo[src*="bhpc.png"] {
  filter: none !important;
}

/* --------------------------------------------------------------------------
   4b. ARCHITECTURAL VISUAL SHOWCASE FRAMES
   -------------------------------------------------------------------------- */
.visual-showcase-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-lg), var(--gold-glow-subtle);
  background: var(--bg-tertiary);
  margin-top: var(--space-2xl);
}

.visual-showcase-img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  max-height: 440px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.visual-showcase-frame:hover .visual-showcase-img {
  transform: scale(1.03);
}

.visual-floating-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(7, 20, 43, 0.88);
  backdrop-filter: var(--backdrop-blur);
  -webkit-backdrop-filter: var(--backdrop-blur);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  color: #F8FAFC;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

[data-theme="light"] .visual-floating-badge {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(135, 103, 39, 0.35);
  color: #07142B;
}

.visual-badge-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}

.visual-badge-sub {
  font-size: 0.775rem;
  color: var(--gold-400);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   5. BENTO GRID - 8 CORE PRACTICE AREAS
   -------------------------------------------------------------------------- */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--space-3xl);
}

.section-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.section-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-lg);
}

.bento-card {
  background: var(--bg-glass-card);
  backdrop-filter: var(--backdrop-blur);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.bento-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-border-bright);
  box-shadow: var(--shadow-card-hover);
  background: var(--bg-glass-card-hover);
}

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

/* Bento Span Modifiers */
.bento-span-4 { grid-column: span 4; }
.bento-span-6 { grid-column: span 6; }
.bento-span-8 { grid-column: span 8; }
.bento-span-12 { grid-column: span 12; }

.bento-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
}

.bento-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  line-height: 1.25;
}

.bento-card-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.bento-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-lg) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.bento-features li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 500;
}

.bento-features li::before {
  content: '✓';
  color: var(--gold-400);
  font-weight: 800;
}

.bento-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--gold-400);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: gap var(--transition-fast);
}

.bento-card-link:hover {
  gap: var(--space-sm);
  color: var(--gold-500);
}

/* --------------------------------------------------------------------------
   6. THE VANTAGE ADVANTAGE (DIFFERENTIATORS)
   -------------------------------------------------------------------------- */
.differentiators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.diff-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-normal);
  position: relative;
  box-shadow: var(--shadow-card);
}

.diff-card:hover {
  border-color: var(--gold-border-bright);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.diff-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold-400);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: var(--space-md);
}

.diff-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.diff-desc {
  font-size: 0.925rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   7. TARGET AUDIENCE & RETAIL CATEGORIES ("WHO WE WORK WITH")
   -------------------------------------------------------------------------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-3xl);
}

.audience-card {
  background: var(--bg-glass-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-card);
}

.audience-card:hover {
  border-color: var(--gold-border-bright);
  transform: translateY(-6px);
  background: var(--bg-glass-card-hover);
  box-shadow: var(--shadow-card-hover);
}

.audience-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-400);
  margin-bottom: var(--space-md);
}

.audience-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.audience-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.categories-container {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  box-shadow: var(--shadow-card);
}

.categories-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}

.categories-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

.category-tag {
  padding: 0.5rem 1.15rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  color: var(--text-primary);
  font-weight: 600;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.category-tag:hover {
  background: var(--gold-subtle);
  color: var(--gold-400);
  border-color: var(--gold-border-bright);
}

/* --------------------------------------------------------------------------
   8. 2-3 YEAR RETAIL EXPANSION ROADMAP (STEPPER)
   -------------------------------------------------------------------------- */
.roadmap-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-md);
  position: relative;
  margin-top: var(--space-2xl);
}

.roadmap-step-card {
  background: var(--bg-glass-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-card);
}

.roadmap-step-card:hover {
  border-color: var(--gold-border-bright);
  transform: translateY(-4px);
  background: var(--bg-glass-card-hover);
  box-shadow: var(--shadow-card-hover);
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  color: var(--gold-400);
  font-family: var(--font-display);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: var(--space-md);
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

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

/* --------------------------------------------------------------------------
   8b. MOBILE APP ACCESS
   -------------------------------------------------------------------------- */
.mobile-app-section {
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-app-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: var(--space-4xl);
  align-items: center;
}

.mobile-app-content .section-title {
  max-width: 620px;
}

.mobile-app-content .section-desc {
  max-width: 650px;
  margin-bottom: var(--space-xl);
}

.mobile-app-brand {
  display: block;
  width: 190px;
  height: auto;
  padding: 0.65rem 0.9rem;
  margin-bottom: var(--space-lg);
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-sm);
}

.mobile-app-benefits {
  display: grid;
  gap: var(--space-md);
  max-width: 650px;
  margin-bottom: var(--space-xl);
}

.mobile-app-benefit {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: var(--space-md);
  align-items: start;
}

.mobile-app-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  color: var(--gold-400);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
}

.mobile-app-benefit h3 {
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.mobile-app-benefit p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.app-store-button {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 180px;
  padding: 0.7rem 1rem;
  background: #07142B;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  color: #FFFFFF;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.app-store-button + .app-store-button {
  margin-left: 0.55rem;
}

.app-store-button-ios .app-store-icon {
  font-size: 1.45rem;
}

.app-store-button:hover {
  border-color: var(--gold-400);
  box-shadow: var(--gold-glow-subtle);
  transform: translateY(-2px);
}

.app-store-icon {
  color: var(--gold-300);
  font-size: 1.25rem;
}

.app-store-button small,
.app-store-button strong {
  display: block;
  line-height: 1.1;
}

.app-store-button small {
  font-size: 0.62rem;
  color: #CBD5E1;
}

.app-store-button strong {
  font-size: 1rem;
  margin-top: 0.16rem;
}

.app-store-note {
  display: inline-block;
  margin-left: 0.75rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  vertical-align: middle;
}

.mobile-app-preview {
  display: flex;
  justify-content: center;
  min-height: 470px;
  position: relative;
}

.mobile-app-preview::before {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(198, 161, 91, 0.04), 0 0 0 56px rgba(198, 161, 91, 0.025);
}

.mobile-app-device {
  width: 320px;
  height: 550px;
  padding: 0;
  background: #020817;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 36px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55), var(--gold-glow-subtle);
  position: relative;
  z-index: 1;
  transform: rotate(3deg);
  overflow: hidden;
}

.mobile-app-speaker {
  position: absolute;
  top: 17px;
  left: 50%;
  width: 72px;
  height: 5px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(-50%);
  z-index: 2;
}

.mobile-app-screen {
  height: 100%;
  padding: 2.5rem 1rem 1rem;
  background: linear-gradient(160deg, #102A56 0%, #07142B 68%);
  border-radius: 28px;
  color: #F8FAFC;
  overflow: hidden;
}

.mobile-app-screen-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #FFFFFF;
}

.app-screen-header,
.app-screen-metrics,
.app-screen-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-screen-header {
  color: var(--gold-300);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.app-screen-status {
  padding: 0.25rem 0.45rem;
  border: 1px solid var(--emerald-border);
  border-radius: var(--radius-pill);
  color: var(--emerald-400);
  font-size: 0.55rem;
}

.app-screen-greeting {
  margin-top: 2.25rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.app-screen-caption {
  color: var(--text-muted);
  font-size: 0.68rem;
  margin-top: 0.25rem;
}

.app-screen-metrics {
  gap: 0.5rem;
  margin-top: 1.6rem;
}

.app-screen-metrics div {
  flex: 1;
  padding: 0.7rem 0.6rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
}

.app-screen-metrics strong,
.app-screen-metrics span,
.app-screen-card span,
.app-screen-card strong,
.app-screen-card small,
.app-screen-list span {
  display: block;
}

.app-screen-metrics strong {
  color: var(--gold-200);
  font-family: var(--font-display);
  font-size: 1.18rem;
}

.app-screen-metrics span,
.app-screen-list span {
  color: var(--text-muted);
  font-size: 0.6rem;
  margin-top: 0.15rem;
}

.app-screen-card {
  margin-top: 1rem;
  padding: 0.85rem;
  background: rgba(198, 161, 91, 0.14);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
}

.app-screen-card span {
  color: var(--gold-300);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.app-screen-card strong {
  margin-top: 0.45rem;
  font-size: 0.82rem;
  line-height: 1.3;
}

.app-screen-card small {
  color: var(--text-muted);
  font-size: 0.62rem;
  line-height: 1.35;
  margin-top: 0.4rem;
}

.app-screen-list {
  margin-top: 1.2rem;
}

.app-screen-list i {
  display: block;
  height: 8px;
  margin-top: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
}

.app-screen-list i:nth-child(3) { width: 82%; }
.app-screen-list i:nth-child(4) { width: 62%; }
.app-screen-list i:nth-child(5) { width: 74%; }

.app-screen-nav {
  margin-top: 1.35rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-muted);
  font-size: 0.6rem;
}

.app-screen-nav span:first-child {
  color: var(--gold-300);
}

/* --------------------------------------------------------------------------
   9. DEVELOPER NETWORK & TRUST LAYER
   -------------------------------------------------------------------------- */
.developer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.developer-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-card);
}

.developer-card:hover {
  border-color: var(--gold-border-bright);
  background: var(--bg-elevated);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.dev-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.dev-scope {
  font-size: 0.775rem;
  color: var(--gold-400);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   10. STRATEGY CONSULTATION MODAL
   -------------------------------------------------------------------------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 20, 43, 0.88);
  backdrop-filter: var(--backdrop-blur-heavy);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: var(--bg-secondary);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg), var(--gold-glow);
  position: relative;
  transform: scale(0.95) translateY(15px);
  transition: transform var(--transition-normal);
}

.modal-backdrop.active .modal-dialog {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-medium);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  color: var(--text-primary);
  border-color: var(--gold-500);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: var(--space-xs);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-glass-input);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px var(--gold-subtle);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-xs);
}

.chip-checkbox {
  cursor: pointer;
}

.chip-checkbox input {
  display: none;
}

.chip-checkbox span {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-pill);
  font-size: 0.825rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: all var(--transition-fast);
}

.chip-checkbox input:checked + span {
  background: var(--gold-subtle);
  border-color: var(--gold-500);
  color: var(--gold-400);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   11. CONVERSION FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: #050E1E;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-4xl) 0 var(--space-2xl);
  position: relative;
  color: #F8FAFC;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand-col p {
  font-size: 0.925rem;
  line-height: 1.6;
  color: #94A3B8;
  margin: var(--space-md) 0 var(--space-lg);
  max-width: 340px;
}

.site-footer .brand-logo-frame {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-sm);
  padding: 0.25rem 0.5rem;
}

[data-theme="light"] .site-footer {
  background: #FFFFFF;
  border-top-color: var(--border-medium);
  color: var(--text-primary);
}

[data-theme="light"] .footer-brand-col p,
[data-theme="light"] .footer-links a {
  color: var(--text-secondary);
}

[data-theme="light"] .footer-col-title {
  color: var(--text-primary);
}

[data-theme="light"] .footer-links a:hover {
  color: var(--gold-700);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #F8FAFC;
  margin-bottom: var(--space-lg);
  letter-spacing: 0.02em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  text-decoration: none;
  color: #94A3B8;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: #EAD2A1;
}

.newsletter-form {
  display: flex;
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

.newsletter-input {
  flex-grow: 1;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: #F8FAFC;
  font-size: 0.875rem;
}

.newsletter-input:focus {
  outline: none;
  border-color: #C6A15B;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #94A3B8;
}

[data-theme="light"] .site-footer .footer-brand-col p,
[data-theme="light"] .site-footer .footer-links a,
[data-theme="light"] .site-footer .footer-bottom {
  color: var(--text-secondary);
}

[data-theme="light"] .site-footer .footer-col-title {
  color: var(--text-primary);
}

[data-theme="light"] .site-footer .footer-links a:hover {
  color: var(--gold-700);
}

[data-theme="light"] .site-footer .newsletter-input {
  background: #FFFFFF;
  border-color: var(--border-medium);
  color: var(--text-primary);
}

[data-theme="light"] .site-footer .newsletter-input::placeholder {
  color: var(--text-muted);
}

[data-theme="light"] .site-footer .footer-bottom {
  border-top-color: var(--border-medium);
}
