/* ==============================================================================
   Code Sapphire & Anyvio Pro - Premium Modern Dark Aesthetic Stylesheet
   Designed for Storefront & License Management Portal
   ============================================================================== */

:root {
  --bg-dark: #090b10;
  --bg-body: #0d1017;
  --bg-card: #131722;
  --bg-card-hover: #1a2030;
  --bg-card-elevated: #1e2436;
  --bg-tertiary: #242b40;
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-subtle: rgba(255, 255, 255, 0.05);
  --border-highlight: rgba(99, 102, 241, 0.5);
  --border-gold: rgba(245, 158, 11, 0.5);
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --accent: #6366f1;
  --accent-hover: #4f46e5;
  --accent-gradient: linear-gradient(135deg, #6366f1, #8b5cf6);
  --accent-glow: rgba(99, 102, 241, 0.35);
  
  --sapphire: #3b82f6;
  --sapphire-gradient: linear-gradient(135deg, #3b82f6, #6366f1, #8b5cf6);
  
  --gold: #f59e0b;
  --gold-gradient: linear-gradient(135deg, #f59e0b, #ef4444);
  
  --emerald: #10b981;
  --emerald-gradient: linear-gradient(135deg, #10b981, #059669);
  --emerald-glow: rgba(16, 185, 129, 0.25);
  
  --ruby: #ef4444;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Background Ambient Lighting */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

.glow-top-left {
  top: -100px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.45), transparent 70%);
}

.glow-top-right {
  top: 50px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.35), transparent 70%);
}

.glow-bottom {
  bottom: 100px;
  left: 20%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2), transparent 70%);
}

/* ==========================================================================
   Navigation Bar
   ========================================================================== */

.portal-navbar {
  height: 70px;
  background: rgba(9, 11, 16, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
}

.brand-logo-img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  object-fit: contain;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  transition: var(--transition);
}

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

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

.brand-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.badge-pro {
  font-size: 10px;
  font-weight: 800;
  background: var(--gold-gradient);
  color: #000;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
}

.brand-sub {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.nav-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.nav-btn:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  border-color: var(--border-highlight);
}

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

.nav-auth-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-lang-select-wrapper {
  display: flex;
  align-items: center;
}

.nav-lang-select {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 6px 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  transition: var(--transition);
}

.nav-lang-select:focus {
  border-color: var(--accent);
}

.auth-guest {
  display: flex;
  align-items: center;
  gap: 10px;
}

.auth-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.user-avatar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 8px var(--emerald);
}

.user-email-display {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.user-role-badge {
  font-size: 10px;
  font-weight: 800;
  background: var(--bg-tertiary);
  color: var(--accent);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

/* ==========================================================================
   Buttons & Core Controls
   ========================================================================== */

.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
}

.btn-sm {
  padding: 6px 14px;
  font-size: 13px;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: var(--radius-md);
}

.btn-xl {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: var(--radius-lg);
}

.btn-subtext {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.85;
  margin-top: 3px;
}

.btn-primary {
  background: var(--sapphire-gradient);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(99, 102, 241, 0.5);
  filter: brightness(1.08);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid transparent;
}

.btn-ghost:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.btn-block {
  width: 100%;
}

.shadow-glow {
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.4);
}

/* ==========================================================================
   Typography & Gradients
   ========================================================================== */

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

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-wrapper {
  position: relative;
  padding: 60px 24px 80px;
  z-index: 10;
}

.hero-container {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid var(--border-highlight);
  color: #c7d2fe;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.15);
}

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

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

.hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  max-width: 960px;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 780px;
  margin-bottom: 36px;
}

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

/* Trust Badges Row */
.trust-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  padding: 14px 28px;
  background: rgba(19, 23, 34, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

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

.badge-icon {
  font-size: 16px;
}

/* ==========================================================================
   Interactive App Showcase Preview Window
   ========================================================================== */

.showcase-window-container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.app-window-frame {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(99, 102, 241, 0.15);
  display: flex;
  flex-direction: column;
}

.app-window-header {
  background: #11141d;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid var(--border-color);
}

.window-controls {
  display: flex;
  gap: 8px;
}

.win-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.win-close { background: #ef4444; }
.win-min { background: #f59e0b; }
.win-max { background: #10b981; }

.window-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.2px;
}

.status-pill-green {
  font-size: 11px;
  font-weight: 700;
  color: var(--emerald);
  background: rgba(16, 185, 129, 0.12);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.showcase-tabs {
  background: #141824;
  display: flex;
  gap: 2px;
  padding: 6px 12px 0;
  border-bottom: 1px solid var(--border-color);
  overflow-x: auto;
}

.showcase-tab-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-top-left-radius: var(--radius-sm);
  border-top-right-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  white-space: nowrap;
}

.showcase-tab-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

.showcase-tab-btn.active {
  background: var(--bg-card);
  color: var(--accent);
  border-top: 2px solid var(--accent);
}

.showcase-content-box {
  min-height: 380px;
  background: var(--bg-card);
  padding: 20px;
  text-align: left;
}

.showcase-panel {
  display: none;
  animation: fadeIn 0.3s ease;
}

.showcase-panel.active {
  display: block;
}

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

/* Mock Workspace UIs */
.mock-workspace {
  display: flex;
  gap: 16px;
  min-height: 340px;
  border-radius: var(--radius-md);
  background: #0d1017;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
}

.mock-sidebar {
  width: 240px;
  background: #121622;
  border-right: 1px solid var(--border-color);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mock-tree-header {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.mock-thumb {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}

.mock-thumb.active, .mock-thumb:hover {
  background: rgba(99, 102, 241, 0.15);
  color: var(--text-primary);
}

.thumb-preview {
  width: 24px;
  height: 30px;
  background: #252c3f;
  border: 1px solid var(--border-color);
  border-radius: 2px;
}

.mock-sidebar-tools {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mock-tool-btn {
  background: #1c2233;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.mock-viewer {
  flex: 1;
  padding: 24px;
  display: flex;
  justify-content: center;
  overflow-y: auto;
}

.mock-doc-page {
  background: #171b28;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  width: 100%;
  max-width: 600px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.mock-doc-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}

.doc-tag {
  font-size: 11px;
  font-weight: 800;
  color: var(--accent);
}

.doc-badge {
  font-size: 10px;
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  padding: 2px 6px;
  border-radius: 4px;
}

.mock-doc-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
}

.mock-doc-p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.mock-highlight-box {
  background: rgba(245, 158, 11, 0.1);
  border-left: 3px solid var(--gold);
  padding: 10px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.highlight-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.mock-highlight-box p {
  font-size: 12px;
  color: #fde68a;
  margin-top: 4px;
}

.mock-doc-chart {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  height: 70px;
  background: #10141f;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
}

.chart-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.bar-1 { background: #475569; }
.bar-2 { background: var(--sapphire-gradient); }

/* Comic Showcase */
.mock-comic-view {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 14px;
  gap: 12px;
}

.comic-toolbar {
  display: flex;
  gap: 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  background: #141824;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
}

.comic-spread {
  display: flex;
  gap: 10px;
  flex: 1;
}

.comic-page {
  flex: 1;
  background: #181d2c;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.comic-panel-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.comic-cell {
  flex: 1;
  background: #20273b;
  border: 1px dashed var(--border-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  padding: 10px;
  text-align: center;
}

.comic-cell.highlight {
  background: rgba(99, 102, 241, 0.15);
  border-color: var(--accent);
  color: var(--accent);
}

/* OCR Split Showcase */
.ocr-split {
  width: 100%;
  padding: 16px;
  display: flex;
  gap: 20px;
}

.ocr-left, .ocr-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ocr-scan-img {
  flex: 1;
  background: #161b27;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.scan-overlay-box {
  width: 85%;
  height: 70%;
  border: 2px solid var(--accent);
  border-radius: 4px;
  background: rgba(99, 102, 241, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  position: relative;
}

.scan-laser-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: scanLaser 2.5s ease-in-out infinite alternate;
}

@keyframes scanLaser {
  0% { top: 5%; }
  100% { top: 95%; }
}

.ocr-status-tag {
  font-size: 11px;
  color: var(--emerald);
  font-weight: 600;
}

.ocr-text-output {
  flex: 1;
  background: #121520;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: #e2e8f0;
  line-height: 1.6;
}

/* Tools Grid Showcase */
.tools-grid-showcase {
  width: 100%;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.tool-tile {
  background: #141826;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 18px;
}

.tool-icon {
  font-size: 24px;
  margin-bottom: 8px;
  display: block;
}

.tool-tile h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}

.tool-tile p {
  font-size: 12px;
  color: var(--text-secondary);
}

/* License Showcase */
.license-showcase {
  width: 100%;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.license-info-card {
  max-width: 600px;
  text-align: center;
}

.lic-status-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold);
  border: 1px solid var(--border-gold);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.mock-key-cards {
  display: flex;
  gap: 14px;
  margin: 20px 0;
}

.mock-key-box {
  flex: 1;
  background: #141826;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.key-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
}

.mock-key-box code {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: #0a0c12;
  padding: 6px 10px;
  border-radius: 4px;
}

.key-status-bound {
  font-size: 11px;
  color: var(--emerald);
  font-weight: 600;
}

.lic-sub-note {
  font-size: 12px;
  color: var(--text-muted);
}

/* ==========================================================================
   Section Containers & Headers
   ========================================================================== */

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

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

.section-tag {
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.2;
  margin-bottom: 14px;
  color: #fff;
}

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

/* ==========================================================================
   Bento Features Grid
   ========================================================================== */

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

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-highlight);
  background: var(--bg-card-hover);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.bento-wide {
  grid-column: span 2;
}

.bento-icon {
  font-size: 32px;
  margin-bottom: 18px;
}

.bento-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
}

.bento-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.bento-tag-list {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 11px;
  font-weight: 700;
  background: var(--bg-tertiary);
  color: #c7d2fe;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   Comparison Table
   ========================================================================== */

.table-responsive {
  width: 100%;
  overflow-x: auto;
}

.comparison-table-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th, .comparison-table td {
  padding: 16px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  background: #111520;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.col-highlight {
  background: rgba(99, 102, 241, 0.06);
  border-left: 1px solid rgba(99, 102, 241, 0.2);
  border-right: 1px solid rgba(99, 102, 241, 0.2);
}

.comparison-table th.col-highlight {
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
}

.badge-price {
  font-weight: 800;
  color: var(--emerald);
  background: rgba(16, 185, 129, 0.12);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.icon-check { color: var(--emerald); font-weight: 700; }
.icon-cross { color: #ef4444; font-weight: 600; }

/* ==========================================================================
   Storefront Pricing Card
   ========================================================================== */

.pricing-card-wrapper {
  max-width: 580px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 44px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.pricing-card.featured {
  border: 2px solid var(--accent);
  box-shadow: 0 0 40px rgba(99, 102, 241, 0.25);
}

.pricing-ribbon {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--gold-gradient);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.plan-name {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  display: block;
}

.price-display {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 14px 0 6px;
}

.price-display .currency {
  font-size: 28px;
  font-weight: 800;
  color: var(--emerald);
}

.price-display .amount {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: #fff;
}

.price-display .period {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 600;
}

.plan-sub {
  font-size: 14px;
  color: var(--text-secondary);
}

.pricing-divider {
  height: 1px;
  background: var(--border-color);
  margin: 24px 0;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-primary);
}

.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

.pricing-guarantee-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 18px;
  text-align: center;
}

/* ==========================================================================
   Reviews & Testimonials
   ========================================================================== */

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

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.review-stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 16px;
}

.review-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  font-size: 24px;
}

.reviewer-info strong {
  display: block;
  font-size: 14px;
  color: #fff;
}

.reviewer-info span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 20px;
  color: var(--accent);
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact-card-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

.contact-left h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
}

.contact-left p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.contact-meta-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-meta-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.meta-icon {
  font-size: 20px;
}

.contact-meta-item strong {
  display: block;
  font-size: 13px;
  color: #fff;
}

.contact-meta-item span {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ==========================================================================
   User Dashboard & Admin Center Styles
   ========================================================================== */

.dashboard-container, .admin-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.dashboard-header-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.dash-user-info h2 {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.dash-user-info p {
  font-size: 14px;
  color: var(--text-secondary);
}

.dash-quick-stats {
  display: flex;
  gap: 14px;
}

.stat-pill {
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
}

.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
}

.stat-value {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
}

.stat-value.highlight {
  color: var(--gold);
}

.keys-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.keys-section-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}

.keys-subtitle {
  font-size: 13px;
  color: var(--text-secondary);
}

.user-keys-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.key-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.key-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.key-card-label {
  font-size: 14px;
  font-weight: 800;
  color: var(--accent);
}

.key-card-status {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.status-active {
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald);
}

.key-display-box {
  background: #090b10;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.key-code {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}

.btn-copy-key {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  color: #fff;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-copy-key:hover {
  background: var(--accent);
}

.bound-devices-list {
  background: #0f121b;
  border-radius: var(--radius-sm);
  padding: 12px;
  font-size: 12px;
}

.bound-device-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.bound-device-item:last-child {
  border-bottom: none;
}

.download-client-card {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(59, 130, 246, 0.08));
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.download-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.download-app-logo {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
}

/* Admin Center Styles */
.admin-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.admin-top-bar h2 {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
}

.admin-top-bar p {
  font-size: 14px;
  color: var(--text-secondary);
}

.admin-actions {
  display: flex;
  gap: 10px;
}

.admin-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.metric-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.metric-card.highlight {
  border-color: var(--emerald);
  background: rgba(16, 185, 129, 0.05);
}

.metric-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.metric-num {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin: 6px 0;
}

.metric-card.highlight .metric-num {
  color: var(--emerald);
}

.metric-sub {
  font-size: 11px;
  color: var(--text-secondary);
}

.admin-subtabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}

.admin-tab-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: inherit;
}

.admin-tab-btn.active {
  background: var(--bg-card);
  color: var(--accent);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.data-table th, .data-table td {
  padding: 14px 18px;
  font-size: 13px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.data-table th {
  background: #11141f;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
}

.generate-keys-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px;
  max-width: 600px;
}

.form-row-inline {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

/* ==========================================================================
   Forms & Modals
   ========================================================================== */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}

.modal-box {
  background: var(--bg-card-elevated);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 440px;
  padding: 32px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8);
}

.modal-box-lg {
  max-width: 680px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.modal-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}

.modal-badge-sub {
  font-size: 12px;
  color: var(--text-secondary);
}

.modal-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
}

.modal-close:hover {
  color: #fff;
}

.modal-scroll-content {
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 10px;
}

.modal-scroll-content h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--accent);
  margin: 16px 0 6px;
}

.modal-scroll-content p, .modal-scroll-content ul {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}

.modal-scroll-content ul {
  padding-left: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
}

.form-input {
  background: #0b0e14;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  padding: 10px 14px;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.feedback-msg {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  margin-bottom: 16px;
}

.feedback-msg.error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

.feedback-msg.success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #6ee7b7;
}

.modal-switch-text {
  font-size: 13px;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 18px;
}

.modal-switch-text a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.portal-footer {
  background: #080a0f;
  border-top: 1px solid var(--border-color);
  padding: 60px 24px 30px;
  margin-top: auto;
  position: relative;
  z-index: 10;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 16px;
}

.footer-merchant-badge {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-merchant-badge strong {
  color: #fff;
}

.footer-links-group h4 {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.footer-links-group a {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 10px;
  transition: var(--transition);
}

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

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

/* ==========================================================================
   Toast Notifications
   ========================================================================== */

.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 3000;
}

.toast {
  background: var(--bg-card-elevated);
  border: 1px solid var(--border-color);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */

@media (max-width: 960px) {
  .hero-title { font-size: 38px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-wide { grid-column: span 1; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-card-box { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .admin-metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .user-keys-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Detected Device Banner & Modern Auth Styling
   ========================================================================== */

.detected-device-banner {
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.banner-icon {
  font-size: 22px;
}

.banner-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.banner-text strong {
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.banner-text span {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.banner-sub {
  font-size: 11px !important;
  font-weight: 500 !important;
  color: var(--text-secondary) !important;
  margin-top: 2px;
}

.btn-google-auth {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #181d2c;
  color: #fff;
  border: 1px solid var(--border-color);
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 16px;
}

.btn-google-auth:hover {
  background: #22293d;
  border-color: rgba(255, 255, 255, 0.2);
}

.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 16px 0 20px;
  color: var(--text-muted);
  font-size: 12px;
}

.auth-divider::before, .auth-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--border-color);
}

.auth-divider span {
  padding: 0 12px;
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 640px) {
  .form-row-2col {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ==========================================================================
   Code Sapphire Company & Featured Products Styling
   ========================================================================== */

.solutions-hero-wrap {
  padding: 80px 0 60px;
}

.solutions-catalog-section {
  padding: 60px 0 80px;
  background: rgba(13, 16, 23, 0.6);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.featured-product-showcase {
  margin-top: 40px;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.featured-product-card {
  background: linear-gradient(135deg, rgba(26, 32, 48, 0.95) 0%, rgba(15, 18, 28, 0.98) 100%);
  border: 1px solid rgba(99, 102, 241, 0.35);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(99, 102, 241, 0.12);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.featured-product-card:hover {
  border-color: var(--accent);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(99, 102, 241, 0.22);
  transform: translateY(-3px);
}

.featured-product-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.featured-product-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.3;
}

.featured-product-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
}

.featured-product-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.featured-product-pills span {
  font-size: 12px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
}

.featured-product-action-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.featured-product-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 8px 16px;
  border-radius: var(--radius-full);
}

.featured-product-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.featured-product-preview-img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s ease;
}

.featured-product-card:hover .featured-product-preview-img {
  transform: scale(1.02);
}

.company-values-section {
  padding: 60px 0 80px;
}

.company-banner-card {
  background: linear-gradient(135deg, rgba(30, 36, 54, 0.9), rgba(15, 18, 27, 0.95));
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.company-banner-content h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 12px 0 16px;
}

.company-banner-content p {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.company-stat-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.company-stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.company-stat-item .stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-mono);
}

.company-stat-item .stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

@media (max-width: 900px) {
  .featured-product-card {
    grid-template-columns: 1fr;
    padding: 28px;
    gap: 24px;
  }
}

@media (max-width: 680px) {
  .company-stat-pills {
    flex-direction: column;
    gap: 20px;
  }
}


