/* ============================================================
   VR HUB — WordPress Block Theme Component Styles
   All classes namespaced with `vr-hub-` to avoid WP conflicts.
   NO CSS resets. Layers on top of WordPress defaults.
   ============================================================ */

/* --- Design Tokens (Custom Properties) --- */
:root {
  /* Fonts */
  --vr-hub-font-body: 'General Sans', 'Helvetica Neue', sans-serif;
  --vr-hub-font-display: 'Cabinet Grotesk', 'Helvetica Neue', sans-serif;

  /* Type Scale */
  --vr-hub-text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --vr-hub-text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --vr-hub-text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --vr-hub-text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --vr-hub-text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --vr-hub-text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --vr-hub-text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);

  /* Spacing */
  --vr-hub-space-1:  0.25rem;
  --vr-hub-space-2:  0.5rem;
  --vr-hub-space-3:  0.75rem;
  --vr-hub-space-4:  1rem;
  --vr-hub-space-5:  1.25rem;
  --vr-hub-space-6:  1.5rem;
  --vr-hub-space-8:  2rem;
  --vr-hub-space-10: 2.5rem;
  --vr-hub-space-12: 3rem;
  --vr-hub-space-16: 4rem;
  --vr-hub-space-20: 5rem;
  --vr-hub-space-24: 6rem;
  --vr-hub-space-32: 8rem;

  /* Radius */
  --vr-hub-radius-sm: 0.375rem;
  --vr-hub-radius-md: 0.625rem;
  --vr-hub-radius-lg: 0.875rem;
  --vr-hub-radius-xl: 1.25rem;
  --vr-hub-radius-full: 9999px;

  /* Transitions */
  --vr-hub-transition: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --vr-hub-ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Content widths */
  --vr-hub-content-narrow: 680px;
  --vr-hub-content-default: 1000px;
  --vr-hub-content-wide: 1200px;

  /* Brand constants (shared between themes) */
  --vr-hub-color-primary: #5B3DE6;
  --vr-hub-color-primary-hover: #4A2FCC;
  --vr-hub-color-teal: #09B89C;
  --vr-hub-color-teal-hover: #07A08A;
  --vr-hub-color-gradient-start: #6F4CFF;
  --vr-hub-color-gradient-end: #0DD3B0;
}

/* ============================================================
   LIGHT THEME (default)
   ============================================================ */
:root,
[data-theme="light"] {
  --vr-hub-color-bg: #F8F7FC;
  --vr-hub-color-surface: #FFFFFF;
  --vr-hub-color-surface-2: #F0EFF6;
  --vr-hub-color-surface-3: #E8E7F0;
  --vr-hub-color-border: #D8D6E3;
  --vr-hub-color-text: #1A1730;
  --vr-hub-color-text-muted: #5C586E;
  --vr-hub-color-text-faint: #938FA5;
  --vr-hub-color-primary-glow: rgba(91, 61, 230, 0.12);
  --vr-hub-color-teal-glow: rgba(9, 184, 156, 0.10);
  --vr-hub-color-purple-soft: rgba(91, 61, 230, 0.06);
  --vr-hub-color-teal-soft: rgba(9, 184, 156, 0.06);
  --vr-hub-shadow-sm: 0 1px 3px rgba(26,23,48,0.06);
  --vr-hub-shadow-md: 0 4px 16px rgba(26,23,48,0.08);
  --vr-hub-shadow-lg: 0 12px 40px rgba(26,23,48,0.12);
  --vr-hub-shadow-glow-purple: 0 0 40px rgba(91, 61, 230, 0.10);
  --vr-hub-shadow-glow-teal: 0 0 40px rgba(9, 184, 156, 0.08);
  --vr-hub-header-bg: rgba(248, 247, 252, 0.88);
  --vr-hub-hero-overlay-top: rgba(248, 247, 252, 0.3);
  --vr-hub-hero-overlay-mid: rgba(248, 247, 252, 0.55);
}

/* ============================================================
   DARK THEME
   ============================================================ */
[data-theme="dark"] {
  --vr-hub-color-bg: #0B0A14;
  --vr-hub-color-surface: #13121F;
  --vr-hub-color-surface-2: #1A192A;
  --vr-hub-color-surface-3: #222136;
  --vr-hub-color-border: #2E2D42;
  --vr-hub-color-text: #EEEDF5;
  --vr-hub-color-text-muted: #9B99B0;
  --vr-hub-color-text-faint: #5E5C72;
  --vr-hub-color-primary: #6F4CFF;
  --vr-hub-color-primary-hover: #5A38E0;
  --vr-hub-color-primary-glow: rgba(111, 76, 255, 0.3);
  --vr-hub-color-teal: #0DD3B0;
  --vr-hub-color-teal-hover: #0AB898;
  --vr-hub-color-teal-glow: rgba(13, 211, 176, 0.2);
  --vr-hub-color-purple-soft: rgba(111, 76, 255, 0.08);
  --vr-hub-color-teal-soft: rgba(13, 211, 176, 0.08);
  --vr-hub-shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --vr-hub-shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --vr-hub-shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
  --vr-hub-shadow-glow-purple: 0 0 40px rgba(111, 76, 255, 0.25);
  --vr-hub-shadow-glow-teal: 0 0 40px rgba(13, 211, 176, 0.2);
  --vr-hub-header-bg: rgba(11, 10, 20, 0.85);
  --vr-hub-hero-overlay-top: rgba(11, 10, 20, 0.4);
  --vr-hub-hero-overlay-mid: rgba(11, 10, 20, 0.6);
}

/* ============================================================
   SCOPED BASE — only applies to .vr-hub-page
   ============================================================ */
body.vr-hub-page {
  font-family: var(--vr-hub-font-body);
  color: var(--vr-hub-color-text);
  background-color: var(--vr-hub-color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.vr-hub-page ::selection {
  background: rgba(111, 76, 255, 0.25);
  color: var(--vr-hub-color-text);
}

/* Accessibility */
.vr-hub-sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.vr-hub-container {
  width: 100%;
  max-width: var(--vr-hub-content-wide);
  margin: 0 auto;
  padding-inline: var(--vr-hub-space-6);
}

.vr-hub-container--narrow {
  max-width: var(--vr-hub-content-default);
}

.vr-hub-section {
  padding-block: clamp(var(--vr-hub-space-12), 8vw, var(--vr-hub-space-24));
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.vr-hub-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--vr-hub-space-4) 0;
  background: var(--vr-hub-header-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--vr-hub-color-border);
  transition: transform 0.3s var(--vr-hub-ease-out), box-shadow 0.3s var(--vr-hub-ease-out);
}

.vr-hub-header .vr-hub-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--vr-hub-space-4);
}

.vr-hub-logo {
  display: flex;
  align-items: center;
  gap: var(--vr-hub-space-3);
  text-decoration: none;
  color: var(--vr-hub-color-text);
}

.vr-hub-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.vr-hub-logo-img-dark { display: none; }
.vr-hub-logo-img-light { display: block; }

[data-theme="dark"] .vr-hub-logo-img-dark { display: block; }
[data-theme="dark"] .vr-hub-logo-img-light { display: none; }

.vr-hub-nav-links {
  display: flex;
  align-items: center;
  gap: var(--vr-hub-space-2);
  list-style: none;
  padding: 0;
  margin: 0;
}

.vr-hub-nav-links a {
  font-size: var(--vr-hub-text-sm);
  font-weight: 500;
  color: var(--vr-hub-color-text-muted);
  text-decoration: none;
  padding: var(--vr-hub-space-2) var(--vr-hub-space-3);
  border-radius: var(--vr-hub-radius-sm);
  transition: color var(--vr-hub-transition), background var(--vr-hub-transition);
}

.vr-hub-nav-links a:hover {
  color: var(--vr-hub-color-text);
  background: var(--vr-hub-color-purple-soft);
}

.vr-hub-nav-active {
  color: var(--vr-hub-color-text) !important;
  font-weight: 600;
}

.vr-hub-nav-back {
  font-size: var(--vr-hub-text-xs) !important;
  color: var(--vr-hub-color-text-faint) !important;
  text-decoration: none !important;
  opacity: 0.7;
  transition: opacity var(--vr-hub-transition), color var(--vr-hub-transition) !important;
}

.vr-hub-nav-back:hover {
  opacity: 1;
  color: var(--vr-hub-color-primary) !important;
}

.vr-hub-nav-cta {
  font-size: var(--vr-hub-text-sm) !important;
  font-weight: 600 !important;
  color: white !important;
  background: var(--vr-hub-color-primary) !important;
  padding: var(--vr-hub-space-2) var(--vr-hub-space-5) !important;
  border-radius: var(--vr-hub-radius-full) !important;
  text-decoration: none !important;
  transition: background var(--vr-hub-transition), box-shadow var(--vr-hub-transition), transform var(--vr-hub-transition) !important;
}

.vr-hub-nav-cta:hover {
  background: var(--vr-hub-color-primary-hover) !important;
  box-shadow: var(--vr-hub-shadow-glow-purple);
  transform: translateY(-1px);
}

/* Mobile nav */
.vr-hub-mobile-toggle {
  display: none;
  color: var(--vr-hub-color-text);
  padding: var(--vr-hub-space-2);
  background: none;
  border: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .vr-hub-mobile-toggle { display: block; }
  .vr-hub-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--vr-hub-color-surface);
    border-bottom: 1px solid var(--vr-hub-color-border);
    padding: var(--vr-hub-space-4) var(--vr-hub-space-6);
    gap: var(--vr-hub-space-1);
  }
  .vr-hub-nav-links.vr-hub-active { display: flex; }
  .vr-hub-nav-links a { padding: var(--vr-hub-space-3) var(--vr-hub-space-4); width: 100%; }
}

/* ============================================================
   HEADER UTILITIES (Language + Theme Toggle)
   ============================================================ */
.vr-hub-header-utils {
  display: flex;
  align-items: center;
  gap: var(--vr-hub-space-2);
}

/* Theme Toggle */
.vr-hub-theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--vr-hub-radius-sm);
  color: var(--vr-hub-color-text-muted);
  cursor: pointer;
  background: none;
  border: none;
  flex-shrink: 0;
  transition: color var(--vr-hub-transition), background var(--vr-hub-transition);
}

.vr-hub-theme-toggle:hover {
  color: var(--vr-hub-color-text);
  background: var(--vr-hub-color-purple-soft);
}

.vr-hub-theme-toggle .vr-hub-icon-sun,
.vr-hub-theme-toggle .vr-hub-icon-moon { display: none; }

:root .vr-hub-theme-toggle .vr-hub-icon-moon,
[data-theme="light"] .vr-hub-theme-toggle .vr-hub-icon-moon { display: block; }

[data-theme="dark"] .vr-hub-theme-toggle .vr-hub-icon-sun { display: block; }
[data-theme="dark"] .vr-hub-theme-toggle .vr-hub-icon-moon { display: none; }

/* Language Dropdown */
.vr-hub-lang-wrapper {
  position: relative;
  flex-shrink: 0;
}

.vr-hub-lang-btn {
  display: flex;
  align-items: center;
  gap: var(--vr-hub-space-2);
  font-family: var(--vr-hub-font-body);
  font-size: var(--vr-hub-text-xs);
  font-weight: 500;
  color: var(--vr-hub-color-text-muted);
  background: var(--vr-hub-color-surface-2);
  border: 1px solid var(--vr-hub-color-border);
  border-radius: var(--vr-hub-radius-full);
  padding: var(--vr-hub-space-1) var(--vr-hub-space-3) var(--vr-hub-space-1) var(--vr-hub-space-2);
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--vr-hub-transition), border-color var(--vr-hub-transition), background var(--vr-hub-transition);
}

.vr-hub-lang-btn:hover {
  color: var(--vr-hub-color-text);
  border-color: var(--vr-hub-color-primary);
  background: var(--vr-hub-color-surface-3);
}

.vr-hub-lang-btn .vr-hub-globe-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.vr-hub-lang-btn .vr-hub-chevron {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  transition: transform 0.2s var(--vr-hub-ease-out);
}

.vr-hub-lang-wrapper.vr-hub-open .vr-hub-lang-btn .vr-hub-chevron {
  transform: rotate(180deg);
}

.vr-hub-lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + var(--vr-hub-space-2));
  right: 0;
  min-width: 200px;
  background: var(--vr-hub-color-surface);
  border: 1px solid var(--vr-hub-color-border);
  border-radius: var(--vr-hub-radius-lg);
  box-shadow: var(--vr-hub-shadow-lg);
  padding: var(--vr-hub-space-2);
  z-index: 200;
  max-height: 360px;
  overflow-y: auto;
}

.vr-hub-lang-wrapper.vr-hub-open .vr-hub-lang-dropdown {
  display: block;
}

.vr-hub-lang-option {
  display: flex;
  align-items: center;
  gap: var(--vr-hub-space-3);
  width: 100%;
  padding: var(--vr-hub-space-2) var(--vr-hub-space-3);
  font-family: var(--vr-hub-font-body);
  font-size: var(--vr-hub-text-sm);
  font-weight: 500;
  color: var(--vr-hub-color-text-muted);
  background: none;
  border: none;
  border-radius: var(--vr-hub-radius-sm);
  cursor: pointer;
  text-align: left;
  white-space: nowrap;
  transition: color var(--vr-hub-transition), background var(--vr-hub-transition);
}

.vr-hub-lang-option:hover {
  color: var(--vr-hub-color-text);
  background: var(--vr-hub-color-purple-soft);
}

.vr-hub-lang-option.vr-hub-active {
  color: var(--vr-hub-color-primary);
  font-weight: 600;
}

.vr-hub-lang-option .vr-hub-flag {
  font-size: 1.1em;
  flex-shrink: 0;
}

.vr-hub-lang-translating {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--vr-hub-color-surface);
  border: 1px solid var(--vr-hub-color-border);
  border-radius: var(--vr-hub-radius-lg);
  padding: var(--vr-hub-space-6) var(--vr-hub-space-8);
  box-shadow: var(--vr-hub-shadow-lg);
  z-index: 500;
  text-align: center;
  font-size: var(--vr-hub-text-sm);
  font-weight: 500;
  color: var(--vr-hub-color-text-muted);
  display: none;
}

.vr-hub-lang-translating.vr-hub-visible {
  display: block;
}

@media (max-width: 768px) {
  .vr-hub-lang-btn .vr-hub-lang-label { display: none; }
  .vr-hub-lang-dropdown { right: -1rem; min-width: 180px; }
}

/* ============================================================
   HERO
   ============================================================ */
.vr-hub-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 6rem;
  background: var(--vr-hub-color-bg);
}

.vr-hub-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.vr-hub-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

[data-theme="dark"] .vr-hub-hero-bg img {
  opacity: 0.35;
}

.vr-hub-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--vr-hub-hero-overlay-top) 0%,
    var(--vr-hub-hero-overlay-mid) 50%,
    var(--vr-hub-color-bg) 100%
  );
}

.vr-hub-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: var(--vr-hub-space-8) var(--vr-hub-space-6);
}

.vr-hub-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--vr-hub-space-2);
  font-size: var(--vr-hub-text-xs);
  font-weight: 600;
  color: var(--vr-hub-color-teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--vr-hub-space-2) var(--vr-hub-space-4);
  background: var(--vr-hub-color-teal-soft);
  border: 1px solid rgba(13, 211, 176, 0.2);
  border-radius: var(--vr-hub-radius-full);
  margin-bottom: var(--vr-hub-space-6);
}

[data-theme="light"] .vr-hub-hero-badge { color: var(--vr-hub-color-text); }

.vr-hub-hero-badge .vr-hub-dot {
  width: 8px;
  height: 8px;
  background: var(--vr-hub-color-teal);
  border-radius: 50%;
  animation: vr-hub-pulse-dot 2s ease-in-out infinite;
}

@keyframes vr-hub-pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.vr-hub-hero h1 {
  font-family: var(--vr-hub-font-display);
  font-size: var(--vr-hub-text-3xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: var(--vr-hub-space-6);
  color: var(--vr-hub-color-text);
}

.vr-hub-gradient-text {
  background: linear-gradient(135deg, var(--vr-hub-color-gradient-start), var(--vr-hub-color-gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vr-hub-hero-sub {
  font-size: var(--vr-hub-text-lg);
  color: var(--vr-hub-color-text-muted);
  max-width: 640px;
  margin: 0 auto var(--vr-hub-space-8);
  line-height: 1.6;
}

.vr-hub-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--vr-hub-space-3);
  margin-bottom: var(--vr-hub-space-10);
}

/* Buttons */
.vr-hub-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--vr-hub-space-2);
  font-family: var(--vr-hub-font-body);
  font-size: var(--vr-hub-text-sm);
  font-weight: 600;
  padding: var(--vr-hub-space-3) var(--vr-hub-space-6);
  border-radius: var(--vr-hub-radius-full);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background var(--vr-hub-transition), box-shadow var(--vr-hub-transition), transform var(--vr-hub-transition);
}

.vr-hub-btn--primary {
  color: white;
  background: var(--vr-hub-color-primary);
  box-shadow: var(--vr-hub-shadow-glow-purple);
}

.vr-hub-btn--primary:hover {
  background: var(--vr-hub-color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(111, 76, 255, 0.35);
  color: white;
}

.vr-hub-btn--primary:active { transform: translateY(0); }

.vr-hub-btn--secondary {
  color: var(--vr-hub-color-text);
  background: var(--vr-hub-color-surface-2);
  border: 1px solid var(--vr-hub-color-border);
}

.vr-hub-btn--secondary:hover {
  background: var(--vr-hub-color-surface-3);
  border-color: rgba(111, 76, 255, 0.3);
  transform: translateY(-1px);
  color: var(--vr-hub-color-text);
}

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

.vr-hub-btn--ghost:hover {
  color: var(--vr-hub-color-text);
  border-color: var(--vr-hub-color-text-faint);
}

.vr-hub-btn--teal {
  color: white;
  background: var(--vr-hub-color-teal);
  box-shadow: var(--vr-hub-shadow-glow-teal);
}

.vr-hub-btn--teal:hover {
  background: var(--vr-hub-color-teal-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(13, 211, 176, 0.35);
  color: white;
}

.vr-hub-btn--teal:active { transform: translateY(0); }

/* Hero Stats */
.vr-hub-hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--vr-hub-space-10);
}

.vr-hub-hero-stats .vr-hub-stat {
  text-align: center;
}

.vr-hub-hero-stats .vr-hub-stat-value {
  font-family: var(--vr-hub-font-display);
  font-size: var(--vr-hub-text-xl);
  font-weight: 700;
  color: var(--vr-hub-color-text);
}

.vr-hub-hero-stats .vr-hub-stat-label {
  font-size: var(--vr-hub-text-xs);
  color: var(--vr-hub-color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 600px) {
  .vr-hub-hero-stats { gap: var(--vr-hub-space-6); }
  .vr-hub-hero-actions { flex-direction: column; align-items: center; }
}

/* ============================================================
   SOCIAL PROOF BAR
   ============================================================ */
.vr-hub-proof-bar {
  border-top: 1px solid var(--vr-hub-color-border);
  border-bottom: 1px solid var(--vr-hub-color-border);
  padding-block: var(--vr-hub-space-8);
  background: var(--vr-hub-color-surface);
}

.vr-hub-proof-bar .vr-hub-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--vr-hub-space-10);
  flex-wrap: wrap;
}

.vr-hub-proof-bar p {
  font-size: var(--vr-hub-text-sm);
  color: var(--vr-hub-color-text-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.vr-hub-proof-logos {
  display: flex;
  align-items: center;
  gap: var(--vr-hub-space-8);
  flex-wrap: wrap;
  justify-content: center;
}

.vr-hub-proof-logos span {
  font-size: var(--vr-hub-text-sm);
  font-weight: 600;
  color: var(--vr-hub-color-text-muted);
  white-space: nowrap;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.vr-hub-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--vr-hub-space-12);
}

.vr-hub-section-label {
  display: inline-block;
  font-size: var(--vr-hub-text-xs);
  font-weight: 600;
  color: var(--vr-hub-color-teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--vr-hub-space-3);
}

.vr-hub-section-header h2 {
  font-family: var(--vr-hub-font-display);
  font-size: var(--vr-hub-text-2xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--vr-hub-space-4);
  color: var(--vr-hub-color-text);
}

.vr-hub-section-header p {
  font-size: var(--vr-hub-text-base);
  color: var(--vr-hub-color-text-muted);
  margin: 0 auto;
  max-width: 580px;
}

/* ============================================================
   FEATURES GRID
   ============================================================ */
.vr-hub-features {
  background: var(--vr-hub-color-bg);
}

.vr-hub-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--vr-hub-space-6);
}

.vr-hub-feature-card {
  background: var(--vr-hub-color-surface);
  border: 1px solid var(--vr-hub-color-border);
  border-radius: var(--vr-hub-radius-lg);
  padding: var(--vr-hub-space-8);
  transition: border-color var(--vr-hub-transition), box-shadow var(--vr-hub-transition), transform var(--vr-hub-transition);
}

.vr-hub-feature-card:hover {
  border-color: rgba(111, 76, 255, 0.3);
  box-shadow: var(--vr-hub-shadow-glow-purple);
  transform: translateY(-3px);
}

.vr-hub-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--vr-hub-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--vr-hub-space-5);
  font-size: 1.5rem;
}

.vr-hub-feature-icon--purple {
  background: var(--vr-hub-color-purple-soft);
  color: var(--vr-hub-color-primary);
  border: 1px solid rgba(111, 76, 255, 0.15);
}

.vr-hub-feature-icon--teal {
  background: var(--vr-hub-color-teal-soft);
  color: var(--vr-hub-color-teal);
  border: 1px solid rgba(13, 211, 176, 0.15);
}

.vr-hub-feature-card h3 {
  font-family: var(--vr-hub-font-display);
  font-size: var(--vr-hub-text-lg);
  font-weight: 700;
  margin-bottom: var(--vr-hub-space-3);
  letter-spacing: -0.01em;
  color: var(--vr-hub-color-text);
}

.vr-hub-feature-card p {
  font-size: var(--vr-hub-text-sm);
  color: var(--vr-hub-color-text-muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .vr-hub-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .vr-hub-features-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   VALUE PROPOSITIONS
   ============================================================ */
.vr-hub-value-props {
  background: var(--vr-hub-color-surface);
}

.vr-hub-value-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vr-hub-space-12);
  align-items: center;
  margin-bottom: var(--vr-hub-space-16);
}

.vr-hub-value-row:last-child { margin-bottom: 0; }

.vr-hub-value-row:nth-child(even) .vr-hub-value-text { order: 2; }
.vr-hub-value-row:nth-child(even) .vr-hub-value-visual { order: 1; }

.vr-hub-value-text h3 {
  font-family: var(--vr-hub-font-display);
  font-size: var(--vr-hub-text-xl);
  font-weight: 700;
  margin-bottom: var(--vr-hub-space-4);
  letter-spacing: -0.02em;
  color: var(--vr-hub-color-text);
}

.vr-hub-value-text p {
  font-size: var(--vr-hub-text-base);
  color: var(--vr-hub-color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--vr-hub-space-4);
}

.vr-hub-value-text ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--vr-hub-space-3);
}

.vr-hub-value-text li {
  display: flex;
  align-items: flex-start;
  gap: var(--vr-hub-space-3);
  font-size: var(--vr-hub-text-sm);
  color: var(--vr-hub-color-text-muted);
}

.vr-hub-value-text li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--vr-hub-color-teal);
}

.vr-hub-value-visual {
  border-radius: var(--vr-hub-radius-xl);
  overflow: hidden;
  border: 1px solid var(--vr-hub-color-border);
  aspect-ratio: 4/3;
  background: var(--vr-hub-color-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vr-hub-value-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .vr-hub-value-row { grid-template-columns: 1fr; gap: var(--vr-hub-space-8); }
  .vr-hub-value-row:nth-child(even) .vr-hub-value-text { order: 1; }
  .vr-hub-value-row:nth-child(even) .vr-hub-value-visual { order: 2; }
}

/* ============================================================
   MODULES LIBRARY
   ============================================================ */
.vr-hub-modules {
  background: var(--vr-hub-color-bg);
}

.vr-hub-modules-filter {
  display: flex;
  justify-content: center;
  gap: var(--vr-hub-space-2);
  margin-bottom: var(--vr-hub-space-8);
  flex-wrap: wrap;
}

.vr-hub-filter-btn {
  font-size: var(--vr-hub-text-xs);
  font-weight: 600;
  color: var(--vr-hub-color-text-muted);
  padding: var(--vr-hub-space-2) var(--vr-hub-space-4);
  border-radius: var(--vr-hub-radius-full);
  background: var(--vr-hub-color-surface);
  border: 1px solid var(--vr-hub-color-border);
  cursor: pointer;
  transition: color var(--vr-hub-transition), background var(--vr-hub-transition), border-color var(--vr-hub-transition);
}

.vr-hub-filter-btn:hover,
.vr-hub-filter-btn.vr-hub-active {
  color: var(--vr-hub-color-text);
  background: var(--vr-hub-color-surface-3);
  border-color: var(--vr-hub-color-primary);
}

.vr-hub-modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--vr-hub-space-5);
}

/* Issue #8: cursor:default on non-link module cards */
.vr-hub-module-card {
  background: var(--vr-hub-color-surface);
  border: 1px solid var(--vr-hub-color-border);
  border-radius: var(--vr-hub-radius-lg);
  padding: var(--vr-hub-space-6);
  display: flex;
  flex-direction: column;
  gap: var(--vr-hub-space-3);
  cursor: default;
  transition: border-color var(--vr-hub-transition), transform var(--vr-hub-transition);
}

.vr-hub-module-card:hover {
  border-color: rgba(13, 211, 176, 0.3);
  transform: translateY(-2px);
}

.vr-hub-module-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: var(--vr-hub-space-3);
  border-radius: var(--vr-hub-radius-sm);
}

/* Issue #2: White background behind icons in dark mode for consistency */
[data-theme="dark"] .vr-hub-module-icon {
  background: #ffffff;
  border-radius: var(--vr-hub-radius-md);
  padding: 4px;
}

.vr-hub-module-category {
  font-size: var(--vr-hub-text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: var(--vr-hub-space-1) var(--vr-hub-space-3);
  border-radius: var(--vr-hub-radius-full);
  width: fit-content;
}

.vr-hub-cat-safety { color: #D63B3B; background: rgba(214, 59, 59, 0.08); }
.vr-hub-cat-healthcare { color: #0E8E7E; background: rgba(14, 142, 126, 0.08); }
.vr-hub-cat-hospitality { color: #B08A00; background: rgba(176, 138, 0, 0.08); }
.vr-hub-cat-trades { color: #C55A20; background: rgba(197, 90, 32, 0.08); }
.vr-hub-cat-transport { color: #3366B8; background: rgba(51, 102, 184, 0.08); }
.vr-hub-cat-coming { color: var(--vr-hub-color-text-faint); background: var(--vr-hub-color-surface-3); }

[data-theme="dark"] .vr-hub-cat-safety { color: #FF6B6B; background: rgba(255, 107, 107, 0.1); }
[data-theme="dark"] .vr-hub-cat-healthcare { color: #4ECDC4; background: rgba(78, 205, 196, 0.1); }
[data-theme="dark"] .vr-hub-cat-hospitality { color: #FFD93D; background: rgba(255, 217, 61, 0.1); }
[data-theme="dark"] .vr-hub-cat-trades { color: #FF8A5C; background: rgba(255, 138, 92, 0.1); }
[data-theme="dark"] .vr-hub-cat-transport { color: #6C9CE3; background: rgba(108, 156, 227, 0.1); }

.vr-hub-module-card h3 {
  font-family: var(--vr-hub-font-display);
  font-size: var(--vr-hub-text-base);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--vr-hub-color-text);
}

.vr-hub-module-card p {
  font-size: var(--vr-hub-text-sm);
  color: var(--vr-hub-color-text-muted);
  line-height: 1.5;
  flex: 1;
}

.vr-hub-module-card .vr-hub-coming-tag {
  font-size: var(--vr-hub-text-xs);
  color: var(--vr-hub-color-teal);
  font-weight: 600;
}

/* ============================================================
   ENHANCEMENTS
   ============================================================ */
.vr-hub-enhancements {
  background: var(--vr-hub-color-surface);
}

.vr-hub-enhancements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--vr-hub-space-5);
}

.vr-hub-enhancements-grid--3x2 {
  grid-template-columns: repeat(3, 1fr);
}

.vr-hub-enhance-card {
  background: var(--vr-hub-color-surface-2);
  border: 1px solid var(--vr-hub-color-border);
  border-radius: var(--vr-hub-radius-lg);
  padding: var(--vr-hub-space-8) var(--vr-hub-space-6);
  text-align: center;
  text-decoration: none;
  color: var(--vr-hub-color-text);
  transition: border-color var(--vr-hub-transition), transform var(--vr-hub-transition), box-shadow var(--vr-hub-transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vr-hub-enhance-card:hover {
  border-color: rgba(13, 211, 176, 0.3);
  transform: translateY(-3px);
  box-shadow: var(--vr-hub-shadow-glow-teal);
  color: var(--vr-hub-color-text);
}

.vr-hub-enhance-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  border-radius: var(--vr-hub-radius-md);
  background: var(--vr-hub-color-teal-soft);
  border: 1px solid rgba(13, 211, 176, 0.15);
  margin-bottom: var(--vr-hub-space-4);
}

.vr-hub-enhance-card h3 {
  font-family: var(--vr-hub-font-display);
  font-size: var(--vr-hub-text-base);
  font-weight: 700;
  margin-bottom: var(--vr-hub-space-2);
  color: var(--vr-hub-color-text);
}

.vr-hub-enhance-card p {
  font-size: var(--vr-hub-text-sm);
  color: var(--vr-hub-color-text-muted);
  line-height: 1.6;
}

/* Showcase image card */
.vr-hub-enhance-card--showcase {
  padding: 0;
  overflow: hidden;
}

.vr-hub-enhance-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}

@media (max-width: 900px) {
  .vr-hub-enhancements-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .vr-hub-enhancements-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   TESTIMONIALS — Issue #9: Arrow navigation
   ============================================================ */
.vr-hub-testimonials {
  background: var(--vr-hub-color-bg);
  overflow: hidden;
}

.vr-hub-testimonials-wrapper {
  position: relative;
}

.vr-hub-testimonials-track {
  display: flex;
  gap: var(--vr-hub-space-6);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: var(--vr-hub-space-4);
  scroll-behavior: smooth;
}

.vr-hub-testimonials-track::-webkit-scrollbar { display: none; }

.vr-hub-testimonial-card {
  flex: 0 0 min(380px, 85vw);
  scroll-snap-align: start;
  background: var(--vr-hub-color-surface);
  border: 1px solid var(--vr-hub-color-border);
  border-radius: var(--vr-hub-radius-lg);
  padding: var(--vr-hub-space-8);
  display: flex;
  flex-direction: column;
  gap: var(--vr-hub-space-4);
}

.vr-hub-testimonial-card .vr-hub-stars {
  color: #FFD93D;
  font-size: var(--vr-hub-text-sm);
  letter-spacing: 0.1em;
}

.vr-hub-testimonial-card blockquote {
  font-size: var(--vr-hub-text-sm);
  color: var(--vr-hub-color-text-muted);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
}

.vr-hub-testimonial-card .vr-hub-author {
  font-size: var(--vr-hub-text-xs);
  font-weight: 600;
  color: var(--vr-hub-color-text);
}

.vr-hub-testimonial-card .vr-hub-author span {
  font-weight: 400;
  color: var(--vr-hub-color-text-faint);
  display: block;
  margin-top: 2px;
}

/* Arrow Buttons */
.vr-hub-testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--vr-hub-space-4);
  margin-top: var(--vr-hub-space-6);
}

.vr-hub-testimonials-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--vr-hub-color-surface);
  border: 1px solid var(--vr-hub-color-border);
  color: var(--vr-hub-color-text-muted);
  cursor: pointer;
  transition: border-color var(--vr-hub-transition), color var(--vr-hub-transition), background var(--vr-hub-transition), transform var(--vr-hub-transition);
}

.vr-hub-testimonials-arrow:hover {
  border-color: var(--vr-hub-color-primary);
  color: var(--vr-hub-color-primary);
  background: var(--vr-hub-color-purple-soft);
  transform: scale(1.05);
}

.vr-hub-testimonials-arrow:disabled {
  opacity: 0.3;
  cursor: default;
  transform: none;
}

/* Clones used for infinite scroll — visually identical, no special treatment */
.vr-hub-testimonial-card.vr-hub-clone {
  /* inherit all card styles */
}

/* Dot Indicators */
.vr-hub-testimonials-dots {
  display: flex;
  align-items: center;
  gap: var(--vr-hub-space-2);
}

.vr-hub-testimonials-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vr-hub-color-border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--vr-hub-transition), transform var(--vr-hub-transition);
}

.vr-hub-testimonials-dot.vr-hub-active {
  background: var(--vr-hub-color-primary);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .vr-hub-testimonials-arrow { display: none; }
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.vr-hub-cta-section {
  background: var(--vr-hub-color-bg);
  padding-block: clamp(var(--vr-hub-space-8), 5vw, var(--vr-hub-space-16));
}

.vr-hub-cta-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--vr-hub-color-surface-2) 0%, var(--vr-hub-color-surface-3) 100%);
  border: 1px solid var(--vr-hub-color-border);
  border-radius: var(--vr-hub-radius-xl);
  padding: clamp(var(--vr-hub-space-10), 6vw, var(--vr-hub-space-16));
  text-align: center;
}

.vr-hub-cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(111, 76, 255, 0.08) 0%, transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(13, 211, 176, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.vr-hub-cta-card > * { position: relative; }

.vr-hub-cta-card h2 {
  font-family: var(--vr-hub-font-display);
  font-size: var(--vr-hub-text-2xl);
  font-weight: 700;
  margin-bottom: var(--vr-hub-space-4);
  letter-spacing: -0.02em;
  color: var(--vr-hub-color-text);
}

.vr-hub-cta-card p {
  font-size: var(--vr-hub-text-base);
  color: var(--vr-hub-color-text-muted);
  max-width: 580px;
  margin: 0 auto var(--vr-hub-space-8);
}

.vr-hub-cta-actions {
  display: flex;
  justify-content: center;
  gap: var(--vr-hub-space-4);
  flex-wrap: wrap;
}

.vr-hub-cta-card .vr-hub-cta-phone {
  font-size: var(--vr-hub-text-sm);
  color: var(--vr-hub-color-text-faint);
  margin: var(--vr-hub-space-16) auto 0;
}

.vr-hub-cta-phone a {
  color: var(--vr-hub-color-teal);
  text-decoration: none;
}

/* ============================================================
   FAQ
   ============================================================ */
.vr-hub-faq {
  background: var(--vr-hub-color-surface);
}

.vr-hub-faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--vr-hub-space-3);
}

.vr-hub-faq-item {
  background: var(--vr-hub-color-surface-2);
  border: 1px solid var(--vr-hub-color-border);
  border-radius: var(--vr-hub-radius-lg);
  overflow: hidden;
}

.vr-hub-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--vr-hub-space-5) var(--vr-hub-space-6);
  font-size: var(--vr-hub-text-base);
  font-weight: 600;
  color: var(--vr-hub-color-text);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--vr-hub-font-body);
  transition: color var(--vr-hub-transition);
}

.vr-hub-faq-question svg {
  flex-shrink: 0;
  color: var(--vr-hub-color-text-faint);
  transition: transform 0.3s var(--vr-hub-ease-out);
}

.vr-hub-faq-item.vr-hub-open .vr-hub-faq-question svg {
  transform: rotate(45deg);
}

.vr-hub-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s var(--vr-hub-ease-out);
}

.vr-hub-faq-item.vr-hub-open .vr-hub-faq-answer {
  max-height: 600px;
}

.vr-hub-faq-answer p {
  padding: 0 var(--vr-hub-space-6) var(--vr-hub-space-5);
  font-size: var(--vr-hub-text-sm);
  color: var(--vr-hub-color-text-muted);
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.vr-hub-footer {
  background: var(--vr-hub-color-surface);
  border-top: 1px solid var(--vr-hub-color-border);
  padding-block: var(--vr-hub-space-6);
}

.vr-hub-footer .vr-hub-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--vr-hub-space-6);
}

.vr-hub-footer-left {
  display: flex;
  flex-direction: column;
  gap: var(--vr-hub-space-2);
}

.vr-hub-footer-left p {
  font-size: var(--vr-hub-text-xs);
  color: var(--vr-hub-color-text-faint);
}

.vr-hub-footer-left a {
  color: var(--vr-hub-color-text-faint);
  text-decoration: none;
  font-size: var(--vr-hub-text-xs);
}

.vr-hub-footer-left a:hover { color: var(--vr-hub-color-text-muted); }

.vr-hub-footer-logos-row {
  display: flex;
  align-items: center;
  gap: var(--vr-hub-space-4);
  flex-wrap: wrap;
  margin-bottom: var(--vr-hub-space-2);
}

.vr-hub-footer-logo-divider {
  color: var(--vr-hub-color-border);
  font-size: var(--vr-hub-text-lg);
  font-weight: 300;
  user-select: none;
}

.vr-hub-footer-partner {
  display: flex;
  align-items: center;
  gap: var(--vr-hub-space-2);
  text-decoration: none;
  font-size: var(--vr-hub-text-sm);
  font-weight: 600;
  color: var(--vr-hub-color-text-muted);
}

.vr-hub-footer-partner:hover { color: var(--vr-hub-color-teal); }

.vr-hub-footer-partner-img {
  border-radius: var(--vr-hub-radius-sm);
  height: 22px;
  width: auto;
}

.vr-hub-footer-partner-img.vr-hub-rwp-logo {
  height: 36px;
  max-width: 220px;
  object-fit: contain;
}

.vr-hub-footer-social {
  display: flex;
  align-items: center;
  gap: var(--vr-hub-space-3);
}

.vr-hub-footer-social a {
  color: var(--vr-hub-color-text-faint);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color var(--vr-hub-transition);
}

.vr-hub-footer-social a:hover {
  color: var(--vr-hub-color-teal);
}

.vr-hub-footer-contact {
  display: flex;
  align-items: center;
  gap: var(--vr-hub-space-6);
  flex-wrap: wrap;
}

.vr-hub-footer-contact a {
  font-size: var(--vr-hub-text-sm);
  font-weight: 500;
  color: var(--vr-hub-color-text-muted);
  text-decoration: none;
}

.vr-hub-footer-contact a:hover { color: var(--vr-hub-color-teal); }

/* ============================================================
   SUPPORT PAGE STYLES
   ============================================================ */
.vr-hub-support-hero {
  padding-top: 8rem;
  padding-bottom: var(--vr-hub-space-8);
  background: var(--vr-hub-color-bg);
}

/* Issue #10: Search bar */
.vr-hub-support-search {
  max-width: 520px;
  margin: var(--vr-hub-space-6) auto 0;
  position: relative;
}

.vr-hub-support-search-input {
  width: 100%;
  padding: var(--vr-hub-space-3) var(--vr-hub-space-5) var(--vr-hub-space-3) var(--vr-hub-space-12);
  font-family: var(--vr-hub-font-body);
  font-size: var(--vr-hub-text-sm);
  color: var(--vr-hub-color-text);
  background: var(--vr-hub-color-surface);
  border: 1px solid var(--vr-hub-color-border);
  border-radius: var(--vr-hub-radius-full);
  outline: none;
  transition: border-color var(--vr-hub-transition), box-shadow var(--vr-hub-transition);
}

.vr-hub-support-search-input::placeholder {
  color: var(--vr-hub-color-text-faint);
}

.vr-hub-support-search-input:focus {
  border-color: var(--vr-hub-color-primary);
  box-shadow: 0 0 0 3px var(--vr-hub-color-purple-soft);
}

.vr-hub-support-search-icon {
  position: absolute;
  left: var(--vr-hub-space-4);
  top: 50%;
  transform: translateY(-50%);
  color: var(--vr-hub-color-text-faint);
  pointer-events: none;
}

.vr-hub-support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--vr-hub-space-6);
}

.vr-hub-support-card {
  background: var(--vr-hub-color-surface);
  border: 1px solid var(--vr-hub-color-border);
  border-radius: var(--vr-hub-radius-lg);
  padding: var(--vr-hub-space-8);
  display: flex;
  flex-direction: column;
  gap: var(--vr-hub-space-3);
  text-decoration: none;
  color: var(--vr-hub-color-text);
  transition: border-color var(--vr-hub-transition), transform var(--vr-hub-transition);
}

.vr-hub-support-card:hover {
  border-color: rgba(13, 211, 176, 0.3);
  transform: translateY(-2px);
}

.vr-hub-support-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--vr-hub-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vr-hub-color-teal-soft);
  color: var(--vr-hub-color-teal);
  border: 1px solid rgba(13, 211, 176, 0.15);
  margin-bottom: var(--vr-hub-space-2);
}

.vr-hub-support-card h3 {
  font-family: var(--vr-hub-font-display);
  font-size: var(--vr-hub-text-lg);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--vr-hub-color-text);
}

.vr-hub-support-card p {
  font-size: var(--vr-hub-text-sm);
  color: var(--vr-hub-color-text-muted);
  line-height: 1.6;
}

.vr-hub-support-card ul,
.vr-hub-support-card ol {
  font-size: var(--vr-hub-text-sm);
  color: var(--vr-hub-color-text-muted);
  line-height: 1.7;
  padding-left: var(--vr-hub-space-5);
  display: flex;
  flex-direction: column;
  gap: var(--vr-hub-space-2);
}

.vr-hub-support-card--link {
  position: relative;
}

.vr-hub-support-link-arrow {
  color: var(--vr-hub-color-teal);
  margin-top: auto;
  align-self: flex-end;
}

/* Discord card */
.vr-hub-support-card--discord .vr-hub-support-card-icon {
  background: rgba(88, 101, 242, 0.08);
  color: #5865F2;
  border-color: rgba(88, 101, 242, 0.15);
}

.vr-hub-support-card--discord:hover {
  border-color: rgba(88, 101, 242, 0.3);
}

/* Forminator placeholder */
.vr-hub-support-form-placeholder {
  background: var(--vr-hub-color-surface-2);
  border: 1px dashed var(--vr-hub-color-border);
  border-radius: var(--vr-hub-radius-lg);
  padding: var(--vr-hub-space-8);
  text-align: center;
  color: var(--vr-hub-color-text-faint);
  font-size: var(--vr-hub-text-sm);
}

/* Helpful links */
.vr-hub-helpful-links {
  display: flex;
  flex-direction: column;
  gap: var(--vr-hub-space-4);
  max-width: 720px;
  margin: 0 auto;
}

.vr-hub-helpful-link {
  display: flex;
  align-items: center;
  gap: var(--vr-hub-space-5);
  background: var(--vr-hub-color-surface-2);
  border: 1px solid var(--vr-hub-color-border);
  border-radius: var(--vr-hub-radius-lg);
  padding: var(--vr-hub-space-5) var(--vr-hub-space-6);
  text-decoration: none;
  color: var(--vr-hub-color-text);
  transition: border-color var(--vr-hub-transition), transform var(--vr-hub-transition);
}

.vr-hub-helpful-link:hover {
  border-color: rgba(13, 211, 176, 0.3);
  transform: translateY(-2px);
  color: var(--vr-hub-color-text);
}

.vr-hub-helpful-link-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--vr-hub-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vr-hub-color-purple-soft);
  color: var(--vr-hub-color-primary);
  border: 1px solid rgba(111, 76, 255, 0.15);
  flex-shrink: 0;
}

.vr-hub-helpful-link h4 {
  font-family: var(--vr-hub-font-display);
  font-size: var(--vr-hub-text-base);
  font-weight: 700;
  margin-bottom: var(--vr-hub-space-1);
  color: var(--vr-hub-color-text);
}

.vr-hub-helpful-link p {
  font-size: var(--vr-hub-text-sm);
  color: var(--vr-hub-color-text-muted);
}

.vr-hub-helpful-link-arrow {
  color: var(--vr-hub-color-text-faint);
  flex-shrink: 0;
  margin-left: auto;
}

.vr-hub-helpful-link:hover .vr-hub-helpful-link-arrow {
  color: var(--vr-hub-color-teal);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.vr-hub-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.vr-hub-fade-in.vr-hub-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Gradient line */
.vr-hub-gradient-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--vr-hub-color-primary), var(--vr-hub-color-teal), transparent);
  border: none;
  margin-block: var(--vr-hub-space-1);
}

/* ============================================================
   UTILITY: Hide Google Translate UI
   ============================================================ */
.goog-te-banner-frame { display: none !important; }
body.vr-hub-page { top: 0 !important; }
.skiptranslate { display: none !important; }

@keyframes vr-hub-spin { to { transform: rotate(360deg); } }
