/* ============================================
   ZYN Hub Services — Design System & Styles
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Primary palette */
  --purple-50: #f5f0ff;
  --purple-100: #ede5ff;
  --purple-200: #daccff;
  --purple-300: #c2a6ff;
  --purple-400: #a67aff;
  --purple-500: #8b4ffa;
  --purple-600: #7c3aed;
  --purple-700: #6d28d9;
  --purple-800: #5b21b6;
  --purple-900: #4c1d95;

  /* Neutrals */
  --gray-50: #fafafa;
  --gray-100: #f4f4f5;
  --gray-200: #e4e4e7;
  --gray-300: #d4d4d8;
  --gray-400: #a1a1aa;
  --gray-500: #71717a;
  --gray-600: #52525b;
  --gray-700: #3f3f46;
  --gray-800: #27272a;
  --gray-900: #18181b;
  --gray-950: #0f0f12;

  /* Semantic colors */
  --bg-primary: #09090b;
  --bg-secondary: #111114;
  --bg-elevated: #18181d;
  --bg-card: rgba(24, 24, 29, 0.6);
  --bg-card-hover: rgba(30, 30, 38, 0.8);
  --text-primary: #fafafa;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --border-color: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(139, 79, 250, 0.3);

  /* Accent */
  --accent: #8b4ffa;
  --accent-hover: #a67aff;
  --accent-glow: rgba(139, 79, 250, 0.15);
  --accent-subtle: rgba(139, 79, 250, 0.08);

  /* Status */
  --green: #22c55e;
  --amber: #f59e0b;
  --red: #ef4444;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(139, 79, 250, 0.15);

  /* Layout */
  --max-width: 1200px;
  --header-height: 72px;
}


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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: var(--header-height);
  /* Ensure html always allows scrolling on mobile */
  height: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--font-sans);
  background-color: transparent;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: clip;
  font-size: 16px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: auto;
}

body[dir="rtl"] .header .container {
  flex-direction: row-reverse;
}

body[dir="rtl"] .nav-links,
body[dir="rtl"] .nav-actions {
  flex-direction: row-reverse;
}

body[dir="rtl"] .lang-switcher {
  margin-right: 0;
  margin-left: var(--space-lg);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

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

ul,
ol {
  list-style: none;
}

::selection {
  background-color: var(--purple-600);
  color: white;
}


/* subtle particles and CTA positioning fallback */
.space-foreground-fade {
  position: absolute;
  inset: auto 0 0 0;
  height: 18%;
  background: linear-gradient(180deg, rgba(5, 1, 10, 0) 0%, rgba(5, 1, 10, 0.6) 100%);
  pointer-events: none;
}


/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h4 {
  font-size: 1.25rem;
}

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

.text-gradient {
  background: linear-gradient(135deg, var(--purple-300), var(--purple-500), var(--purple-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-accent {
  color: var(--accent);
}

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


/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section {
  padding: var(--space-5xl) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section-header .label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: var(--space-lg);
  padding: 6px 14px;
  background: var(--accent-subtle);
  border: 1px solid rgba(139, 79, 250, 0.15);
  border-radius: var(--radius-full);
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  font-size: 1.1rem;
}


/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 12px 28px;
  font-weight: 500;
  font-size: 0.9375rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple-600), var(--purple-700));
  color: white;
  box-shadow: 0 0 20px rgba(139, 79, 250, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--purple-500), var(--purple-600));
  box-shadow: 0 0 30px rgba(139, 79, 250, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-1px);
}

.btn-whatsapp {
  background: rgba(37, 211, 102, 0.12);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.35);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.15);
}

.btn-whatsapp:hover {
  background: #25D366;
  color: #0b0e14;
  border-color: #25D366;
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.4), 0 0 10px rgba(37, 211, 102, 0.6);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--text-secondary);
  padding: 8px 16px;
}

.btn-ghost:hover {
  color: var(--text-primary);
  background: var(--accent-subtle);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.8125rem;
}

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


/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: all var(--transition-base);
  background: rgba(9, 9, 11, 0.7);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  border-bottom-color: var(--border-color);
  background: rgba(9, 9, 11, 0.9);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  z-index: 1001;
}

.logo img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav-links a {
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 450;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background: var(--accent-subtle);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem;
  margin-right: var(--space-lg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
}

.lang-btn {
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 0.8rem;
  transition: all var(--transition-fast);
}

.lang-btn.active {
  background: var(--accent-subtle);
  color: var(--text-primary);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 1000;
  padding-top: calc(var(--header-height) + var(--space-xl));
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-size: 1.25rem;
  padding: 12px 32px;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  font-weight: 500;
}

.mobile-menu a:hover {
  color: var(--text-primary);
}


/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: clip;
  padding-top: var(--header-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg .gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
}

.hero-bg .orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--purple-700), transparent 70%);
  top: -200px;
  right: -100px;
  animation: float-slow 20s ease-in-out infinite;
}

.hero-bg .orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--purple-900), transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: float-slow 25s ease-in-out infinite reverse;
}

.hero-bg .grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent);
}

.hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 6px 16px;
  background: var(--accent-subtle);
  border: 1px solid rgba(139, 79, 250, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--purple-300);
  margin-bottom: var(--space-xl);
  animation: fade-in-up 0.6s ease-out;
}

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

.hero h1 {
  max-width: 800px;
  margin: 0 auto var(--space-lg);
  animation: fade-in-up 0.6s ease-out 0.1s both;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 560px;
  margin: 0 auto var(--space-2xl);
  animation: fade-in-up 0.6s ease-out 0.2s both;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  animation: fade-in-up 0.6s ease-out 0.3s both;
}

.hero-stats-panel {
  display: flex;
  gap: var(--space-xl);
  justify-content: center;
  align-items: stretch;
  margin-top: var(--space-4xl);
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  animation: fade-in-up 0.6s ease-out 0.4s both;
}

.stats-card {
  flex: 1;
  min-width: 280px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  text-align: left;
}

.stats-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(139, 79, 250, 0.15);
}

.stats-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: var(--space-md);
}

.stats-card-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}

.stats-card-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.stats-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.discord-svg-icon {
  width: 24px;
  height: 24px;
  color: #5865F2;
  filter: drop-shadow(0 0 6px rgba(88, 101, 242, 0.3));
}

.zyn-logo-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(139, 79, 250, 0.3));
}

.live-pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--green);
  letter-spacing: 0.05em;
  background: rgba(34, 197, 94, 0.08);
  padding: 1px 6px;
  border-radius: 12px;
  border: 1px solid rgba(34, 197, 94, 0.15);
}

.pulse-dot {
  width: 5px;
  height: 5px;
  background-color: var(--green);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0);
  }

  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.stats-card-body {
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
}

.stats-card .hero-stat {
  flex: 1;
  text-align: left;
}

.stats-card .hero-stat .number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.stats-card .hero-stat .label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.hero-stat .label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 4px;
}


/* --- Cards --- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(139, 79, 250, 0.05), transparent, transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

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

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--accent-subtle);
  border: 1px solid rgba(139, 79, 250, 0.15);
  margin-bottom: var(--space-lg);
  color: var(--accent);
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.card h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
}

.card p {
  font-size: 0.9375rem;
}

.preview-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius-xl) * 1.1);
  padding: var(--space-2xl);
  overflow: hidden;
  align-items: center;
  box-shadow: 0 24px 80px rgba(4, 9, 22, 0.22);
  backdrop-filter: blur(18px);
}

.preview-card-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  min-width: 0;
}

.preview-card-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(139, 79, 250, 0.14);
  color: var(--accent);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.preview-card h2 {
  font-size: clamp(1.8rem, 2.2vw, 2.4rem);
  line-height: 1.05;
  margin: 0;
}

.preview-card p {
  max-width: 520px;
  color: var(--text-secondary);
}

.preview-card-image {
  position: relative;
  min-height: 240px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.preview-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .preview-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .preview-card {
    padding: var(--space-xl);
  }
}


/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.service-card {
  position: relative;
}

.service-card .tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-subtle);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.service-card .features-list {
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.service-card .features-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.service-card .features-list li svg {
  width: 16px;
  height: 16px;
  color: var(--green);
  flex-shrink: 0;
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
  margin-top: var(--space-lg);
  transition: gap var(--transition-fast);
}

.service-card .card-link:hover {
  gap: 10px;
}

.service-card .card-link svg {
  width: 16px;
  height: 16px;
}


/* --- Features Section --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.feature-item {
  text-align: center;
  padding: var(--space-xl);
}

.feature-item .icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--accent-subtle);
  border: 1px solid rgba(139, 79, 250, 0.1);
  color: var(--accent);
  transition: all var(--transition-base);
}

.feature-item:hover .icon-wrap {
  background: rgba(139, 79, 250, 0.12);
  transform: scale(1.05);
}

.feature-item .icon-wrap svg {
  width: 24px;
  height: 24px;
}

.feature-item h4 {
  margin-bottom: var(--space-xs);
  font-size: 1rem;
}

.feature-item p {
  font-size: 0.8125rem;
}


/* --- Vouches / Testimonials --- */
.vouches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.vouch-card {
  padding: var(--space-2xl);
}

.vouch-card .stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-md);
  color: var(--amber);
}

.vouch-card .stars svg {
  width: 16px;
  height: 16px;
}

.vouch-card .quote {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.vouch-card .customer {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.vouch-card .customer-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: white;
}

.vouch-card .customer-info .name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

.vouch-card .customer-info .service {
  font-size: 0.75rem;
  color: var(--text-muted);
}


/* --- Bot Features Section --- */
.bot-features-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.bot-features-left h3 {
  margin-bottom: var(--space-md);
}

.bot-features-left>p {
  font-size: 1.05rem;
  margin-bottom: var(--space-xl);
}

.bot-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.bot-feature-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.bot-feature-list li:hover {
  background: var(--accent-subtle);
}

.bot-feature-list li svg {
  width: 16px;
  height: 16px;
  color: var(--purple-400);
  flex-shrink: 0;
}

.bot-commands-panel {
  background: var(--bg-elevated);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.bot-commands-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--border-color);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
}

.bot-commands-header .dot-group {
  display: flex;
  gap: 6px;
}

.bot-commands-header .dot-group span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.bot-commands-header .dot-group span:nth-child(1) {
  background: var(--red);
}

.bot-commands-header .dot-group span:nth-child(2) {
  background: var(--amber);
}

.bot-commands-header .dot-group span:nth-child(3) {
  background: var(--green);
}

.bot-commands-body {
  padding: var(--space-lg);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  line-height: 2;
}

.bot-commands-body .cmd {
  color: var(--purple-300);
}

.bot-commands-body .comment {
  color: var(--text-muted);
}

.bot-commands-body .free-tag {
  color: var(--green);
  font-weight: 600;
}


/* --- Discount / Pricing Section --- */
.discount-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
}

.discount-card {
  padding: var(--space-xl);
  text-align: center;
}

.discount-card .role-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--purple-300);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-sm);
}

.discount-card .discount-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.discount-card .discount-value span {
  font-size: 1.25rem;
  color: var(--text-muted);
}

.discount-card .perks {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  text-align: left;
}

.discount-card .perks li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.discount-card .perks li svg {
  width: 16px;
  height: 16px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}


/* --- Gallery --- */
.gallery-section {
  margin-bottom: var(--space-4xl);
}

.gallery-section-header {
  margin-bottom: var(--space-xl);
}

.gallery-section-header h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  margin-bottom: var(--space-sm);
}

.gallery-section-header p {
  color: var(--text-secondary);
  max-width: 640px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  aspect-ratio: 16 / 10;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item .gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  font-size: 0.8125rem;
  font-weight: 500;
  color: white;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-label {
  opacity: 1;
}

.gallery-item.gallery-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(139, 79, 250, 0.18), rgba(255, 255, 255, 0.04));
  border-style: dashed;
  border-color: rgba(139, 79, 250, 0.35);
}

/* --- Site Notice / Promo --- */
.site-notice {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: linear-gradient(135deg, rgba(139, 79, 250, 0.12), rgba(24, 24, 29, 0.9));
  color: var(--text-primary);
  border: 1px solid rgba(139, 79, 250, 0.18);
  padding: 16px 18px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  max-width: 320px;
  display: flex;
  gap: 12px;
  align-items: center;
  transform: translateY(12px) scale(0.98);
  opacity: 0;
  transition: opacity 300ms var(--transition-base), transform 300ms var(--transition-base);
  z-index: 2500;
}

.site-notice.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.site-notice .notice-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
}

.site-notice .notice-body {
  flex: 1;
}

.site-notice .notice-body p {
  margin: 0;
  font-weight: 600;
}

.site-notice .notice-close {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 18px;
  cursor: pointer;
}

.site-notice .notice-cta {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.site-notice .notice-cta:hover {
  filter: brightness(0.95);
}

.gallery-item.gallery-placeholder:hover {
  transform: translateY(-2px);
}

.gallery-placeholder-content {
  text-align: center;
  padding: var(--space-xl);
}

.gallery-badge {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-full);
  background: rgba(139, 79, 250, 0.2);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
}

.gallery-placeholder-content h3 {
  margin-bottom: var(--space-sm);
}

.gallery-placeholder-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: var(--space-xl);
  right: var(--space-xl);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}


/* --- Partners Section --- */
.partners-track {
  display: flex;
  gap: var(--space-2xl);
  justify-content: center;
  flex-wrap: wrap;
}

.partner-badge {
  padding: 10px 24px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition-base);
}

.partner-badge:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
}


/* --- FAQ / Accordion --- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question .faq-icon {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-answer-inner {
  padding: 0 var(--space-xl) var(--space-lg);
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}


/* --- CTA Section --- */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(139, 79, 250, 0.08), transparent);
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--space-4xl) var(--space-3xl);
  max-width: 720px;
  margin: 0 auto;
}

.cta-box h2 {
  margin-bottom: var(--space-md);
}

.cta-box p {
  margin-bottom: var(--space-2xl);
  font-size: 1.05rem;
}

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


/* --- Footer --- */
.footer {
  border-top: 1px solid var(--border-color);
  padding: var(--space-4xl) 0 var(--space-xl);
  background: var(--bg-secondary);
}

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

.footer-brand .logo {
  margin-bottom: var(--space-md);
}

.footer-brand p {
  font-size: 0.875rem;
  max-width: 280px;
  margin-bottom: var(--space-lg);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  color: var(--accent);
  border-color: var(--border-hover);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.footer-col a {
  display: block;
  padding: 4px 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-bottom .payment-methods {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-bottom .payment-methods svg {
  width: 20px;
  height: 20px;
}


/* --- Page transitions --- */
.page {
  display: none;
  opacity: 0;
  animation: page-in 0.4s ease-out forwards;
}

.page.active {
  display: block;
}

@keyframes page-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* --- Scroll reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.96);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-reduced-motion: no-preference) {
  .reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: reveal-glow 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes reveal-glow {
  0% {
    box-shadow: 0 0 0px rgba(139, 79, 250, 0);
    border-color: rgba(139, 79, 250, 0.2);
  }

  30% {
    box-shadow: 0 0 25px rgba(139, 79, 250, 0.35), inset 0 0 10px rgba(139, 79, 250, 0.15);
    border-color: rgba(139, 79, 250, 0.6);
  }

  100% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--border-color);
  }
}


/* --- Sub-page headers --- */
.page-hero {
  padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-4xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(139, 79, 250, 0.1), transparent);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin-bottom: var(--space-md);
}

.page-hero p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.1rem;
}


/* --- Detailed service blocks --- */
.detail-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  padding: var(--space-3xl) 0;
  border-bottom: 1px solid var(--border-color);
}

.detail-block:last-child {
  border-bottom: none;
}

.detail-block.reverse {
  direction: rtl;
}

.detail-block.reverse>* {
  direction: ltr;
}

.detail-block .detail-content h3 {
  margin-bottom: var(--space-md);
}

.detail-block .detail-content p {
  margin-bottom: var(--space-lg);
}

.detail-block .detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.detail-block .detail-image img {
  width: 100%;
  height: auto;
}


/* --- Info / Documentation cards --- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.info-card {
  padding: var(--space-xl);
}

.info-card h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.1rem;
}

.info-card p {
  font-size: 0.875rem;
}

.info-card .info-list {
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.info-card .info-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.info-card .info-list li svg {
  width: 14px;
  height: 14px;
  color: var(--purple-400);
  flex-shrink: 0;
}


/* --- Payment methods section --- */
.payment-grid {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
}

.payment-card {
  padding: var(--space-xl) var(--space-2xl);
  text-align: center;
  min-width: 200px;
}

.payment-card svg {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-md);
}

.payment-card h4 {
  font-size: 1rem;
}


/* --- Animations --- */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-slow {

  0%,
  100% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(10px, -20px);
  }

  50% {
    transform: translate(-5px, 10px);
  }

  75% {
    transform: translate(15px, 5px);
  }
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}


/* --- Responsive --- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vouches-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .bot-features-container {
    grid-template-columns: 1fr;
  }

  .detail-block {
    grid-template-columns: 1fr;
  }

  .detail-block.reverse {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  :root {
    --space-4xl: 4rem;
    --space-5xl: 5rem;
  }

  .nav-links,
  .nav-actions .btn {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .services-grid,
  .vouches-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats-panel {
    gap: var(--space-xl);
  }

  .hero-stat .number {
    font-size: 1.5rem;
  }

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

  .bot-feature-list {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .section {
    padding: var(--space-3xl) 0;
  }

  .cta-box {
    padding: var(--space-2xl) var(--space-lg);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats-panel {
    flex-direction: column;
    gap: var(--space-md);
  }

  .stats-card {
    width: 100%;
  }

  .discount-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Mobile Intro Fixes --- */
@media (max-width: 640px) {
  .intro-anim-content {
    padding: 1.5rem 1rem;
    justify-content: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .intro-logo-container {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
  }

  .intro-line:first-child {
    font-size: 1.4rem;
  }

  .intro-line {
    font-size: 1rem;
  }

  .intro-thought-bubble {
    margin-bottom: 1.5rem;
  }

  #intro-video {
    width: 100%;
    max-width: 320px;
  }

  .intro-lang-content {
    padding: 2rem 1.25rem;
    margin: 0 1rem;
  }

  .intro-lang-content h2 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }

  .intro-enter-btn {
    margin-bottom: 2rem;
  }

  /* Ensure the runner doesn't block content on mobile */
  .zyn-runner-container {
    bottom: 80px;
    right: 12px;
    width: 80px;
    height: 100px;
  }
}


/* --- Utility classes --- */
.mt-sm {
  margin-top: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mt-xl {
  margin-top: var(--space-xl);
}

.mb-md {
  margin-bottom: var(--space-md);
}

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

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-700);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray-600);
}

/* Tab navigation for service pages */
.tab-nav {
  display: flex;
  gap: var(--space-xs);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: var(--space-2xl);
  overflow-x: auto;
  padding-bottom: 0;
}

.tab-btn {
  padding: 12px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--text-secondary);
}

.tab-btn.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fade-in-up 0.3s ease-out;
}

/* Ark service specific */
.ark-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.cluster-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

.cluster-feature-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.cluster-feature-list li svg {
  width: 14px;
  height: 14px;
  color: var(--green);
  flex-shrink: 0;
}

.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: var(--space-md);
}

.price-tag .currency {
  font-size: 1rem;
  color: var(--text-muted);
}

.price-tag .unit {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   What We Do Section Styles
   ============================================ */
.whatwedo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.whatwedo-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--space-xl);
  height: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  background: rgba(24, 24, 29, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.whatwedo-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  background: rgba(30, 24, 45, 0.65);
  box-shadow: 0 12px 35px rgba(139, 79, 250, 0.22);
}

.whatwedo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: translateX(-100%);
  transition: transform 0.65s ease;
}

.whatwedo-card:hover::before {
  transform: translateX(100%);
}

.whatwedo-card .card-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--accent-subtle);
  border: 1px solid rgba(139, 79, 250, 0.18);
  color: var(--accent);
  margin-bottom: var(--space-lg);
  transition: all var(--transition-base);
}

.whatwedo-card:hover .card-icon-wrapper {
  background: var(--accent);
  color: white;
  box-shadow: 0 0 20px var(--accent);
  transform: scale(1.08) rotate(5deg);
}

.whatwedo-card .card-icon {
  width: 26px;
  height: 26px;
}

.whatwedo-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--transition-fast);
}

.whatwedo-card:hover h3 {
  color: var(--purple-300);
}

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

.whatwedo-card .card-bullets {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  width: 100%;
  padding: 0;
  margin: 0;
}

.whatwedo-card .card-bullets li {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.whatwedo-card .card-bullets .bullet-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  flex-shrink: 0;
}

body[dir="rtl"] .whatwedo-card {
  align-items: flex-start;
  text-align: right;
}

body[dir="rtl"] .whatwedo-card .card-bullets li {
  flex-direction: row;
}

.whatwedo-more {
  border-style: dashed;
  background: rgba(139, 79, 250, 0.02);
}

.whatwedo-more:hover {
  border-style: solid;
  background: rgba(30, 24, 45, 0.55);
}

.whatwedo-more .arrow-icon {
  transition: transform var(--transition-base);
}

.whatwedo-more:hover .arrow-icon {
  transform: translateX(6px);
}

body[dir="rtl"] .whatwedo-more .arrow-icon {
  transform: rotate(180deg);
}

body[dir="rtl"] .whatwedo-more:hover .arrow-icon {
  transform: translateX(-6px) rotate(180deg);
}

/* --- Intro Sequence --- */
.intro-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #050508;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  font-family: var(--font-sans);
  touch-action: pan-y;
}

.intro-overlay::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(139, 79, 250, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.intro-step {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.intro-step.active {
  opacity: 1;
  visibility: visible;
}

.intro-lang-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* Logo Jump Animation */
.lang-logo-wrapper {
  position: relative;
  width: 140px;
  height: 140px;
  transform: translateX(-150vw) rotate(-20deg);
  animation: logoJumpIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.lang-jumping-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: logoIdleBounce 1.5s ease-in-out infinite;
}

@keyframes logoIdleBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Alert Mark Animation */
.lang-alert-mark {
  position: absolute;
  top: -40px;
  right: -20px;
  color: #a78bfa;
  font-size: 4rem;
  font-weight: 900;
  text-shadow: 0 0 15px rgba(167, 139, 250, 0.8), 0 0 30px rgba(167, 139, 250, 0.5);
  opacity: 0;
  transform: scale(0.5) translateY(10px);
  animation: alertPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.2s forwards;
}

@keyframes logoJumpIn {
  0% {
    transform: translateX(-150vw) rotate(-20deg);
  }

  60% {
    transform: translateX(10vw) rotate(10deg);
  }

  100% {
    transform: translateX(0) rotate(0);
  }
}

@keyframes alertPop {
  0% {
    opacity: 0;
    transform: scale(0.5) translateY(10px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* UI Modal Reveal */
.intro-lang-content {
  text-align: center;
  background: rgba(20, 20, 25, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 4rem;
  border-radius: 24px;
  border: 1px solid rgba(167, 139, 250, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(167, 139, 250, 0.1), 0 0 30px rgba(167, 139, 250, 0.15);
  transform: translateY(30px);
  opacity: 0;
  animation: uiReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.8s forwards;
}

@keyframes uiReveal {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.intro-lang-content h2 {
  margin-bottom: 2.5rem;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.intro-lang-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.intro-lang-btn {
  background: rgba(139, 79, 250, 0.1);
  border: 1px solid rgba(167, 139, 250, 0.4);
  box-shadow: 0 0 10px rgba(167, 139, 250, 0.1);
  color: #fff;
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  font-family: inherit;
}

.intro-lang-btn:hover {
  background: rgba(139, 79, 250, 0.3);
  border-color: rgba(167, 139, 250, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(167, 139, 250, 0.4);
}

.intro-anim-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
  width: 90%;
  z-index: 2;
}

.intro-logo-container {
  position: relative;
  width: 180px;
  height: 180px;
  margin-bottom: 3rem;
}

.intro-jumping-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: jumpWavesPremium 2.5s cubic-bezier(0.45, 0, 0.15, 1) infinite;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5));
}

.intro-waves {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 160%;
  height: 15px;
  background: radial-gradient(ellipse at center, rgba(139, 79, 250, 0.6) 0%, transparent 70%);
  border-radius: 50%;
  animation: shadowPulse 2.5s cubic-bezier(0.45, 0, 0.15, 1) infinite;
  z-index: 1;
}

.intro-text {
  margin-bottom: 3rem;
  opacity: 0;
  animation: textFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.4s;
}

.intro-line {
  font-size: 1.5rem;
  font-weight: 500;
  color: #a1a1aa;
  margin: 0.5rem 0;
  line-height: 1.6;
}

.intro-line:first-child {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.intro-thought-bubble {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 15px;
  margin-bottom: 2.5rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(139, 79, 250, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  animation: popVideo 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 1.2s;
}

.intro-thought-bubble .bubble-tail {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 20px;
  background: linear-gradient(to bottom, rgba(139, 79, 250, 0), rgba(139, 79, 250, 0.8));
  border-radius: 2px;
}

#intro-video {
  width: 400px;
  max-width: 100%;
  border-radius: 16px;
  outline: none;
  display: block;
}

.intro-enter-btn {
  opacity: 0;
  animation: btnGlowPulse 2s infinite alternate, introSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 2.5s;
}

.intro-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* --- Premium Animations --- */
@keyframes introSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes jumpWavesPremium {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-50px) scale(1.02) rotate(2deg);
  }
}

@keyframes shadowPulse {

  0%,
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.8;
  }

  50% {
    transform: translateX(-50%) scale(1.4);
    opacity: 0.2;
  }
}

@keyframes textFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes popVideo {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes btnGlowPulse {
  0% {
    box-shadow: 0 0 15px rgba(139, 79, 250, 0.3);
  }

  100% {
    box-shadow: 0 0 30px rgba(139, 79, 250, 0.7);
  }
}

/* --- ZYN Runner Mascot --- */
.zyn-runner-container {
  position: fixed;
  bottom: 120px;
  /* Elevated for better visibility */
  right: 40px;
  width: 120px;
  /* Increased size */
  height: 140px;
  z-index: 9999;
  pointer-events: auto;
  /* Enable hover & clicks */
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0.9;
  /* Always visible */
}

.zyn-runner-container:hover {
  opacity: 1;
}

.zyn-runner-platform {
  width: 100px;
  /* Larger base */
  height: 6px;
  background: linear-gradient(90deg, transparent, var(--purple-500), transparent);
  box-shadow: 0 0 12px var(--purple-500);
  border-radius: var(--radius-full);
  margin-top: -2px;
  opacity: 0.9;
  transition: transform 0.2s ease;
}

.zyn-runner {
  position: relative;
  width: 80px;
  /* Larger torso & limbs */
  height: 95px;
  transform-origin: bottom center;
  transition: transform 0.2s ease;
  z-index: 2;
}

/* Face directions */
.zyn-runner.facing-left {
  transform: scaleX(-1);
}

.zyn-runner .torso {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 50px;
  height: 50px;
  z-index: 10;
}

.zyn-runner .torso img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(139, 79, 250, 0.7));
  transition: transform 0.2s ease;
}

.zyn-runner-container:hover .torso img {
  transform: scale(1.1);
}

/* Limbs setup */
.zyn-runner .limb {
  position: absolute;
  transform-origin: top center;
  animation-play-state: paused;
  transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.zyn-runner .limb svg {
  width: 100%;
  height: 100%;
}

.zyn-runner .limb-glow {
  filter: drop-shadow(0 0 6px rgba(139, 79, 250, 0.9));
}

/* Arm positioning */
.zyn-runner .arm-left {
  top: 28px;
  left: 12px;
  width: 22px;
  height: 38px;
  z-index: 5;
}

.zyn-runner .arm-right {
  top: 28px;
  left: 42px;
  width: 22px;
  height: 38px;
  z-index: 12;
}

/* Leg positioning */
.zyn-runner .leg-left {
  top: 55px;
  left: 18px;
  width: 20px;
  height: 40px;
  z-index: 4;
}

.zyn-runner .leg-right {
  top: 55px;
  left: 38px;
  width: 20px;
  height: 40px;
  z-index: 11;
}

/* Speech Bubble */
.zyn-runner-bubble {
  position: absolute;
  top: -20px;
  background: rgba(15, 15, 20, 0.9);
  border: 1px solid var(--purple-500);
  border-radius: var(--radius-md);
  padding: 6px 12px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-primary);
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(139, 79, 250, 0.3);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 20;
}

.zyn-runner-bubble::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px 6px 0;
  border-style: solid;
  border-color: rgba(15, 15, 20, 0.9) transparent;
  display: block;
  width: 0;
}

.zyn-runner-container:hover .zyn-runner-bubble {
  opacity: 1;
  transform: translateY(0);
}

/* Particle Emitting */
.zyn-runner-particles {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 40px;
  pointer-events: none;
  z-index: 1;
}

.spark-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--purple-400);
  border-radius: 50%;
  filter: drop-shadow(0 0 4px var(--purple-500));
  animation: sparkOut 0.6s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

/* --- ANIMATION CYCLES --- */

/* 1. Idle state */
.zyn-runner.idle {
  animation: bodyBob 1.5s ease-in-out infinite alternate;
}

.zyn-runner.idle .arm-left {
  transform: rotate(-15deg);
}

.zyn-runner.idle .arm-right {
  transform: rotate(15deg);
}

.zyn-runner.idle .leg-left {
  transform: rotate(-5deg);
}

.zyn-runner.idle .leg-right {
  transform: rotate(5deg);
}

/* 2. Running state */
.zyn-runner.running {
  animation: bodyRunBob var(--run-duration, 0.4s) infinite ease-in-out;
}

.zyn-runner.running .arm-left {
  animation: armRunLeft var(--run-duration, 0.4s) infinite ease-in-out;
  animation-play-state: running;
}

.zyn-runner.running .arm-right {
  animation: armRunRight var(--run-duration, 0.4s) infinite ease-in-out;
  animation-play-state: running;
}

.zyn-runner.running .leg-left {
  animation: legRunLeft var(--run-duration, 0.4s) infinite ease-in-out;
  animation-play-state: running;
}

.zyn-runner.running .leg-right {
  animation: legRunRight var(--run-duration, 0.4s) infinite ease-in-out;
  animation-play-state: running;
}

/* 3. Jump State */
.zyn-runner.jumping {
  animation: jumpFlip 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.zyn-runner.jumping .arm-left {
  transform: rotate(-120deg);
  transition: transform 0.2s;
}

.zyn-runner.jumping .arm-right {
  transform: rotate(120deg);
  transition: transform 0.2s;
}

.zyn-runner.jumping .leg-left {
  transform: rotate(45deg);
  transition: transform 0.2s;
}

.zyn-runner.jumping .leg-right {
  transform: rotate(-45deg);
  transition: transform 0.2s;
}

/* 4. Landing Impact effect */
.zyn-runner-platform.impact {
  animation: platformSquish 0.3s ease;
}

/* Keyframes */
@keyframes bodyBob {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-4px);
  }
}

@keyframes bodyRunBob {

  0%,
  100% {
    transform: translateY(0) rotate(8deg);
  }

  50% {
    transform: translateY(-4px) rotate(12deg);
  }
}

@keyframes armRunLeft {

  0%,
  100% {
    transform: rotate(45deg);
  }

  50% {
    transform: rotate(-45deg);
  }
}

@keyframes armRunRight {

  0%,
  100% {
    transform: rotate(-45deg);
  }

  50% {
    transform: rotate(45deg);
  }
}

@keyframes legRunLeft {

  0%,
  100% {
    transform: rotate(-50deg) translateY(0);
  }

  50% {
    transform: rotate(40deg) translateY(-2px);
  }
}

@keyframes legRunRight {

  0%,
  100% {
    transform: rotate(40deg) translateY(-2px);
  }

  50% {
    transform: rotate(-50deg) translateY(0);
  }
}

@keyframes jumpFlip {
  0% {
    transform: translateY(0) rotate(0deg) scaleY(0.85);
  }

  15% {
    transform: translateY(-20px) rotate(-10deg) scaleY(1.1);
  }

  50% {
    transform: translateY(-110px) rotate(-180deg) scale(1);
  }

  85% {
    transform: translateY(-15px) rotate(-350deg) scaleY(1.05);
  }

  100% {
    transform: translateY(0) rotate(-360deg) scaleY(0.85);
  }
}

@keyframes platformSquish {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scaleX(1.2) scaleY(0.7);
  }
}

@keyframes sparkOut {
  0% {
    transform: translate(0, 20px) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(var(--dx), var(--dy)) scale(0.2);
    opacity: 0;
  }
}

/* ============================================
   UNTURNED SECTION & GAMER VISUAL ENHANCEMENTS
   ============================================ */

/* Unturned Theme Color Token */
:root {
  --unturned-green: #10b981;
  --unturned-green-glow: rgba(16, 185, 129, 0.25);
  --unturned-green-subtle: rgba(16, 185, 129, 0.1);
}

/* Unturned Card Highlights */
.unturned-card {
  border-color: rgba(16, 185, 129, 0.2) !important;
}

.unturned-card:hover {
  border-color: var(--unturned-green) !important;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2) !important;
}

.unturned-icon-wrap {
  background: var(--unturned-green-subtle) !important;
  color: var(--unturned-green) !important;
  border: 1px solid rgba(16, 185, 129, 0.3) !important;
}

.unturned-dot {
  background-color: var(--unturned-green) !important;
  box-shadow: 0 0 10px var(--unturned-green) !important;
}

.tag-unturned {
  background: var(--unturned-green-subtle) !important;
  color: var(--unturned-green) !important;
  border: 1px solid rgba(16, 185, 129, 0.3) !important;
}

.tag-unturned-badge {
  background: rgba(16, 185, 129, 0.15) !important;
  color: #10b981 !important;
  border: 1px solid rgba(16, 185, 129, 0.35) !important;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  display: inline-block;
}

.service-card-unturned:hover {
  border-color: var(--unturned-green) !important;
  box-shadow: 0 12px 36px rgba(16, 185, 129, 0.22) !important;
}

.card-link-unturned {
  color: var(--unturned-green) !important;
}

.card-link-unturned:hover {
  color: #34d399 !important;
}

/* Enhanced Cyber-Gamer Aesthetics */
.card {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.tab-btn[data-tab="unturned"].active {
  background: linear-gradient(135deg, #059669, #10b981) !important;
  color: #ffffff !important;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.4) !important;
}

/* Glassmorphic Cyber glow on hero stats */
.stats-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Discord Trust Channels Showcase */
.discord-trust-wrapper {
  background: rgba(18, 18, 24, 0.7);
  border: 1px solid rgba(139, 79, 250, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(139, 79, 250, 0.08);
}

.discord-category-bar {
  text-align: center;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.discord-category-title {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--purple-300);
  letter-spacing: 0.1em;
  text-shadow: 0 0 12px rgba(168, 85, 247, 0.5);
}

.discord-channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.discord-channel-card {
  display: flex;
  flex-direction: column;
  padding: var(--space-lg);
  background: rgba(30, 31, 36, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  text-decoration: none;
}

.discord-channel-card:hover {
  background: rgba(43, 45, 49, 0.95);
  border-color: var(--purple-400);
  box-shadow: 0 8px 24px rgba(139, 79, 250, 0.25);
  transform: translateY(-3px);
}

.discord-channel-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
}

.discord-channel-header .hashtag {
  color: #80848e;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
}

.discord-channel-header .emoji {
  font-size: 1.2rem;
}

.discord-channel-header .channel-name {
  color: #f2f3f5;
  font-family: var(--font-sans);
  letter-spacing: -0.01em;
}

.discord-channel-card .channel-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* ============================================
   VERIFIED CUSTOMERS SECTION & ANIMATED LOGO TRACK
   ============================================ */

.verified-showcase-container {
  margin-top: 40px;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  text-align: center;
}

.verified-showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 125, 0, 0.12);
  border: 1px solid rgba(255, 125, 0, 0.35);
  color: #ff9f43;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(255, 125, 0, 0.2);
  text-transform: uppercase;
}

.live-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #10b981;
  box-shadow: 0 0 10px #10b981, 0 0 20px #10b981;
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.6;
  }
}

.showcase-track-stage {
  width: 100%;
  height: 110px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(18, 18, 26, 0.45);
  border: 1px solid rgba(255, 125, 0, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.showcase-glow-orb {
  position: absolute;
  top: 50%;
  left: 30%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 125, 0, 0.25) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: blur(25px);
}

.showcase-mover-track {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  will-change: transform;
  animation: showcasePingPong 9s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
}

.showcase-track-stage:hover .showcase-mover-track {
  animation-play-state: paused;
}

@keyframes showcasePingPong {
  0% {
    transform: translate3d(20px, -50%, 0);
  }
  100% {
    transform: translate3d(calc(900px - 100% - 20px), -50%, 0);
  }
}

@media (max-width: 900px) {
  @keyframes showcasePingPong {
    0% {
      transform: translate3d(10px, -50%, 0);
    }
    100% {
      transform: translate3d(calc(100vw - 100% - 40px), -50%, 0);
    }
  }
}

.verified-client-pill {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(38, 25, 48, 0.95), rgba(20, 18, 30, 0.98));
  border: 1.5px solid rgba(255, 125, 0, 0.65);
  border-radius: 60px;
  padding: 12px 28px 12px 16px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6), 0 0 35px rgba(255, 125, 0, 0.4);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.verified-client-pill:hover {
  transform: scale(1.05) translateY(-2px);
  border-color: #ffaa00;
  box-shadow: 0 18px 45px rgba(255, 125, 0, 0.5), 0 0 45px rgba(255, 125, 0, 0.6);
}

.client-logo-wrapper {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 125, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  box-shadow: 0 0 15px rgba(255, 125, 0, 0.3);
}

.shambird-showcase-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(255, 100, 0, 0.5));
}

.client-text-meta {
  display: flex;
  flex-direction: column;
  text-align: left;
}

body[dir="rtl"] .client-text-meta {
  text-align: right;
}

.client-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.client-sub {
  font-size: 0.78rem;
  color: #a78bfa;
  font-weight: 600;
}

.inline-verified-badge {
  vertical-align: middle;
  filter: drop-shadow(0 0 8px rgba(0, 242, 254, 0.7));
}

.verified-seal-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  margin-left: 8px;
  filter: drop-shadow(0 0 12px rgba(255, 170, 0, 0.8));
  transition: transform 0.3s ease;
}

body[dir="rtl"] .verified-seal-box {
  margin-left: 0;
  margin-right: 8px;
}

.verified-client-pill:hover .verified-seal-box {
  transform: rotate(12deg) scale(1.15);
}

.badge-starburst-ic {
  filter: drop-shadow(0 0 8px rgba(255, 170, 0, 0.8));
}

.verified-customer-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(22, 22, 30, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 28px 36px;
  min-width: 300px;
  max-width: 340px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
}

.verified-customer-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: rgba(255, 125, 0, 0.6);
  box-shadow: 0 20px 40px rgba(255, 100, 0, 0.25), 0 0 25px rgba(255, 125, 0, 0.3);
}

.verified-customer-card.featured-customer {
  background: linear-gradient(145deg, rgba(40, 24, 48, 0.85), rgba(20, 18, 30, 0.95));
  border: 1.5px solid rgba(255, 125, 0, 0.45);
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 125, 0, 0.15);
  color: #ff9d42;
  border: 1px solid rgba(255, 125, 0, 0.35);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.customer-logo-box {
  width: 130px;
  height: 130px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 125, 0, 0.25);
  transition: transform 0.3s ease;
}

.verified-customer-card:hover .customer-logo-box {
  transform: scale(1.06) rotate(1deg);
}

.shambird-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.customer-logo-box.text-logo {
  background: linear-gradient(135deg, rgba(139, 79, 250, 0.25), rgba(255, 125, 0, 0.25));
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.community-avatar {
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffffff;
}

.customer-card-info h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.customer-card-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  font-weight: 600;
}

.customer-tag {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--purple-300);
  background: rgba(139, 79, 250, 0.12);
  border: 1px solid rgba(139, 79, 250, 0.25);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

body[dir="rtl"] .verified-customer-card {
  direction: rtl;
}