/* ============================================
   PANTHRA - Elite Cybersecurity
   Premium Website Styles
   ============================================ */

/* CSS Variables */
:root {
  /* Colors */
  --black: #000000;
  --bg-primary: #050507;
  --bg-secondary: #0a0a0f;
  --bg-card: #0f0f14;
  --bg-card-hover: #141419;
  
  --purple-100: #f3e8ff;
  --purple-300: #c084fc;
  --purple-400: #a855f7;
  --purple-500: #9333ea;
  --purple-600: #7c3aed;
  --purple-700: #6d28d9;
  --purple-900: #3b0764;
  
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(147, 51, 234, 0.3);
  
  /* Media tuning */
  --panther-video-brightness: 0.52;
  --panther-video-contrast: 1.38;
  --panther-video-saturation: 0.92;
  --panther-video-vignette: rgba(5, 5, 7, 0.9);
  --panther-video-bg: var(--bg-primary);
  
  /* Gradients */
  --gradient-purple: linear-gradient(135deg, var(--purple-500), var(--purple-700));
  --gradient-glow: linear-gradient(135deg, rgba(147, 51, 234, 0.4), rgba(109, 40, 217, 0.1));
  --gradient-dark: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  
  /* Typography */
  --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  
  /* Spacing */
  --section-padding: 120px;
  --container-width: 1280px;
  
  /* Effects */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 60px rgba(147, 51, 234, 0.3);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-main);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Cursor Glow Effect */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}

body:hover .cursor-glow {
  opacity: 1;
}

/* Grid Overlay */
.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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;
  pointer-events: none;
  z-index: 1;
}

/* Scan Line Effect */
.scan-line {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple-500), transparent);
  opacity: 0.5;
  animation: scanLine 8s linear infinite;
  pointer-events: none;
  z-index: 10000;
}

@keyframes scanLine {
  0% { transform: translateY(-100%); opacity: 0; }
  5% { opacity: 0.5; }
  95% { opacity: 0.5; }
  100% { transform: translateY(100vh); opacity: 0; }
}

/* Hide the mouse-follow glow on touch/coarse-pointer devices where it
   serves no purpose and only adds work. */
@media (hover: none), (pointer: coarse) {
  .cursor-glow {
    display: none;
  }
}

/* Respect users who prefer reduced motion: disable decorative animations. */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .scan-line {
    display: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* Container */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-base);
}

.header.scrolled {
  background: rgba(5, 5, 7, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
}

.nav {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo {
  position: relative;
}

/* Purple glow behind logo */
.nav-logo::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.8) 0%, rgba(147, 51, 234, 0.4) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(8px);
  z-index: 0;
  transition: all var(--transition-base);
}

.nav-logo:hover::before {
  background: radial-gradient(circle, rgba(147, 51, 234, 1) 0%, rgba(147, 51, 234, 0.6) 50%, transparent 70%);
  filter: blur(10px);
  transform: translateY(-50%) scale(1.2);
}

.logo-icon {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 40px;
  object-fit: contain;
  filter: invert(1) hue-rotate(180deg);
  transition: transform var(--transition-base), filter var(--transition-base);
}

.nav-logo:hover .logo-icon {
  filter: invert(1) hue-rotate(180deg) brightness(1.1);
}

.logo-text {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text-primary);
  background: linear-gradient(135deg, #fff 0%, #a1a1aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  transition: color var(--transition-base);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-purple);
  transition: width var(--transition-base);
}

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

.nav-link:hover::after {
  width: 100%;
}

/* Services Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  padding-top: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 28px;
  min-width: 760px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.dropdown-column {
  padding: 0 16px;
  border-right: 1px solid var(--border-color);
}

.dropdown-column:last-child {
  border-right: none;
}

.dropdown-heading {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--purple-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  white-space: nowrap;
  text-decoration: none;
  transition: color var(--transition-base);
}

a.dropdown-heading:hover {
  color: var(--text-primary);
}

.dropdown-item {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 8px 0;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.dropdown-item:hover {
  color: var(--text-primary);
  padding-left: 6px;
}

.dropdown-grid .dropdown-item {
  white-space: normal;
  line-height: 1.35;
}

.dropdown-grid .dropdown-item:hover {
  padding-left: 0;
  transform: translateX(6px);
}

/* Small dropdown (About) */
.dropdown-menu-small {
  min-width: auto;
}

.dropdown-menu-small .dropdown-simple {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 16px 8px;
  min-width: 200px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.dropdown-simple .dropdown-item {
  padding: 10px 16px;
  border-radius: 6px;
}

.dropdown-simple .dropdown-item:hover {
  background: rgba(147, 51, 234, 0.1);
  padding-left: 16px;
}

.dropdown-item-highlight {
  color: var(--text-primary) !important;
  font-weight: 500;
}

.dropdown-divider {
  height: 1px;
  background: var(--border-color);
  margin: 8px 16px;
}

.dropdown-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px 4px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--gradient-purple);
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: all var(--transition-base);
  box-shadow: 0 4px 20px rgba(147, 51, 234, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(147, 51, 234, 0.4);
}

/* Nav "Get Protected" CTA shows plain text only — no arrow icon. */
.nav-cta svg {
  display: none;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-base);
}

/* Collapse desktop nav into the hamburger before it can overflow/clip */
@media (max-width: 992px) {
  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  padding: 88px 24px 32px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: right var(--transition-slow);
  z-index: 999;
}

.mobile-menu.active {
  right: 0;
}

body:has(.mobile-menu.active) .chatbot-container {
  display: none !important;
}

.mobile-link {
  font-size: 20px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
}

.mobile-link:not(.mobile-dropdown-trigger) {
  display: block;
  width: 100%;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
  text-align: left;
}

.mobile-cta {
  padding: 16px 40px;
  background: var(--gradient-purple);
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  margin-top: 24px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

/* Mobile Dropdown */
.mobile-dropdown {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  border-bottom: 1px solid var(--border-color);
}

.mobile-dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 8px;
  padding: 16px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.mobile-dropdown-arrow {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-arrow {
  transform: rotate(180deg);
}

.mobile-dropdown-content {
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  margin-top: 0;
  padding: 0 0 12px;
  background: transparent;
  border-radius: 0;
  max-height: none;
  overflow-y: visible;
  width: 100%;
}

.mobile-dropdown.active .mobile-dropdown-content {
  display: flex;
}

.mobile-dropdown-heading {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 12px;
  padding: 0 12px;
}

.mobile-dropdown-heading:first-child {
  margin-top: 0;
}

.mobile-dropdown-item {
  display: block;
  width: 100%;
  font-size: 15px;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 12px;
  border-radius: 8px;
  box-sizing: border-box;
}

.mobile-dropdown-item:hover,
.mobile-dropdown-item:active {
  color: var(--text-primary);
  background: var(--bg-secondary);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 120px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-gradient {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.15) 0%, transparent 70%);
  animation: pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.8; transform: translateX(-50%) scale(1.1); }
}

.hero-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(90deg, transparent 49%, rgba(147, 51, 234, 0.03) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(147, 51, 234, 0.03) 50%, transparent 51%);
  background-size: 80px 80px;
}

.hero-content {
  flex: 1;
  max-width: 700px;
  padding: 0 24px;
  margin-left: max(24px, calc((100vw - var(--container-width)) / 2 + 24px));
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(147, 51, 234, 0.1);
  border: 1px solid rgba(147, 51, 234, 0.3);
  border-radius: 100px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--purple-500);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-badge span:last-child {
  font-size: 13px;
  font-weight: 500;
  color: var(--purple-300);
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -2px;
}

.title-line {
  display: block;
  overflow: hidden;
}

.title-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  animation: revealWord 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.title-line:nth-child(1) .title-word { animation-delay: 0.3s; }
.title-line:nth-child(2) .title-word { animation-delay: 0.5s; }
.title-line:nth-child(3) .title-word:nth-child(1) { animation-delay: 0.7s; }
.title-line:nth-child(3) .title-word:nth-child(2) { animation-delay: 0.85s; }

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

.title-line.accent {
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 540px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 1s;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 1.2s;
}

.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: var(--gradient-purple);
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: 0 4px 30px rgba(147, 51, 234, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(147, 51, 234, 0.5);
}

.btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 32px;
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-radius: 10px;
  transition: all var(--transition-base);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--purple-500);
}

/* CTA buttons show plain text only — no arrow/chevron icons and no underline,
   matching the homepage hero's primary button. */
.btn-primary svg,
.btn-secondary svg {
  display: none;
}

.btn-primary,
.btn-secondary {
  text-decoration: none;
}

.hero-stats {
  display: flex;
  gap: 40px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 1.4s;
  margin-bottom: 80px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: nowrap;
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
}

.stat-headline {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
}

.stat-sublabel {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.stat-suffix {
  font-size: 24px;
  font-weight: 700;
  color: var(--purple-400);
}

.stat-number-group {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
}

.stat-less-than {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
}

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

.stat-source {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 6px;
  opacity: 0.75;
  line-height: 1.4;
}

.hero-stat-divider {
  width: 1px;
  background: var(--border-color);
}

/* Hero Visual */
.hero-visual {
  position: absolute;
  right: max(24px, calc((100vw - var(--container-width)) / 2 + 24px));
  top: 50%;
  transform: translateY(calc(-50% - 190px));
  z-index: 1;
}

.panther-container {
  position: relative;
  width: 450px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.panther-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.6) 0%, rgba(147, 51, 234, 0.2) 40%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  animation: glowPulse 4s ease-in-out infinite;
}

/* Center the hero glow concentric with the logo (overrides the later compatibility rule) */
.hero-visual .panther-glow {
  inset: 0;
  margin: auto;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.6) 0%, rgba(147, 51, 234, 0.2) 40%, transparent 70%);
  filter: blur(50px);
  animation: glowPulse 4s ease-in-out infinite;
}

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

.panther-logo {
  width: 400px;
  height: 360px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 0 40px rgba(147, 51, 234, 0.8)) brightness(1.1);
  opacity: 0;
  animation: fadeIn 1.5s ease forwards, floatPantherHero 6s ease-in-out infinite;
  animation-delay: 0.5s, 0s;
}

@keyframes floatPantherHero {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.panther-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  margin-left: -200px;
  margin-top: -200px;
  border: 1px solid rgba(147, 51, 234, 0.3);
  border-radius: 50%;
  animation: expandPulse 3s ease-out infinite;
}

@keyframes expandPulse {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 2s;
}

.scroll-indicator span {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: var(--border-color);
  position: relative;
  overflow: hidden;
}

.scroll-dot {
  position: absolute;
  top: 0;
  width: 3px;
  height: 10px;
  background: var(--purple-500);
  border-radius: 2px;
  left: -1px;
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { top: 0; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

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

/* ============================================
   Trusted By Section
   ============================================ */
/* Industries Marquee Section */
.industries {
  padding: 60px 0 50px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-secondary);
  overflow: hidden;
}

.industries-label {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.marquee:hover {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 0;
  padding-right: 0;
}

.marquee-item {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  padding: 0 24px;
  transition: color 0.3s ease;
}

.marquee-item:hover {
  color: var(--accent-primary);
}

.marquee-divider {
  color: var(--accent-primary);
  opacity: 0.4;
  font-size: 8px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ============================================
   Section Styles
   ============================================ */
.section-header {
  margin-bottom: 64px;
}

.section-header.centered {
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple-400);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

.section-header.centered .section-desc {
  margin: 0 auto;
}

/* ============================================
   Services Section
   ============================================ */
.services {
  padding: var(--section-padding) 0;
  background: var(--bg-primary);
  position: relative;
}

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

.service-card {
  position: relative;
  display: block;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  transition: all var(--transition-slow);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-glow);
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

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

.service-card.featured {
  border-color: var(--purple-600);
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.1), transparent);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(147, 51, 234, 0.1);
  border-radius: 12px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--purple-400);
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.service-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.service-card .service-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 12px;
  background: var(--gradient-purple);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 100px;
  z-index: 1;
}

/* ============================================
   Services Hub (pillar overview) page
   ============================================ */
.solutions-hero.solutions-hero-centered .container {
  grid-template-columns: 1fr;
}

.solutions-hero.solutions-hero-centered .solutions-hero-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.solutions-hero.solutions-hero-centered .solutions-hero-desc {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.solutions-hero.solutions-hero-centered .solutions-hero-actions {
  justify-content: center;
}

.services.services-category {
  padding: 72px 0;
}

.services.services-category:first-of-type {
  padding-top: 40px;
}

.services-category .section-header {
  text-align: center;
  margin-bottom: 44px;
}

.services-category .section-header .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.services-category .services-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.services-category .service-card {
  padding: 28px;
  border-radius: 14px;
}

.services-category .service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
}

.services-category .service-icon svg {
  width: 24px;
  height: 24px;
}

.services-category .service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.services-category .service-card p {
  font-size: 14px;
  line-height: 1.65;
}

.services-category .solutions-hero-actions {
  justify-content: center;
}

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

@media (max-width: 560px) {
  .services-category .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   About Section
   ============================================ */
.about {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-feature {
  display: flex;
  gap: 16px;
}

.feature-check {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-purple);
  border-radius: 8px;
  flex-shrink: 0;
}

.feature-check svg {
  width: 16px;
  height: 16px;
  stroke: white;
}

.about-feature h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}

.about-feature p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Terminal */
.terminal {
  background: #0c0c0c;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: #161616;
  border-bottom: 1px solid var(--border-color);
}

.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.terminal-dot.red { background: #ff5f57; }
.terminal-dot.yellow { background: #febc2e; }
.terminal-dot.green { background: #28c840; }

.terminal-title {
  margin-left: 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
}

.terminal-body {
  padding: 24px;
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 2;
}

.terminal-line {
  display: flex;
  gap: 8px;
}

.terminal-line.output {
  padding-left: 24px;
  color: var(--text-secondary);
}

.terminal-prompt {
  color: var(--purple-400);
}

.terminal-command {
  color: var(--text-primary);
}

.text-purple { color: var(--purple-400); }
.text-green { color: #4ade80; }

.terminal-cursor {
  display: inline-block;
  width: 8px;
  height: 18px;
  background: var(--purple-400);
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* ============================================
   Stats Section
   ============================================ */
.stats {
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

.stats-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-card {
  text-align: center;
  padding: 48px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  transition: all var(--transition-base);
}

.stat-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
}

.stat-value {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 12px;
}

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

.stat-unit {
  font-size: 32px;
  color: var(--text-muted);
}

.stat-desc {
  font-size: 15px;
  color: var(--text-secondary);
}

.stat-card .stat-source {
  margin-top: 8px;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 60px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  position: relative;
}

.quote-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 32px;
  color: var(--purple-500);
  opacity: 0.5;
}

.testimonial-card blockquote {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 40px;
}

.testimonial-author {
  display: flex;
  justify-content: center;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author-info strong {
  font-size: 16px;
  font-weight: 600;
}

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

/* ============================================
   Contact Page
   ============================================ */
.contact-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: var(--bg-primary);
  position: relative;
}

.contact-hero .section-header {
  max-width: 800px;
  margin: 0 auto;
}

.contact-hero .section-title {
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.contact-hero .section-desc {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.contact {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.contact-tabs {
  margin-bottom: 48px;
}

.contact-tab-nav {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0;
}

.contact-tab-btn {
  padding: 12px 24px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-base);
  font-family: var(--font-main);
  margin-bottom: -1px;
}

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

.contact-tab-btn.active {
  color: var(--purple-300);
  border-bottom-color: var(--purple-500);
}

.contact-tab-content {
  display: none;
}

.contact-tab-content.active {
  display: block;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(147, 51, 234, 0.1);
  border-radius: 12px;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--purple-400);
}

.contact-label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-item a,
.contact-item span:last-child {
  font-size: 16px;
  color: var(--text-primary);
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--purple-400);
}

/* Contact Form */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label,
.form-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-hint {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 12px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 16px 18px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  font-family: var(--font-main);
  font-size: 16px;
  color: var(--text-primary);
  transition: all var(--transition-base);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--purple-500);
  box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
  transition: all var(--transition-base);
}

.form-group select:not([multiple]):hover {
  border-color: var(--purple-500);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a855f7' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}

.form-group select[multiple] {
  background-image: none;
  padding-right: 18px;
  min-height: 120px;
}

.form-group select option {
  background: var(--bg-card);
  color: var(--text-primary);
  padding: 10px 16px;
  cursor: pointer;
}

.form-group select option:hover {
  background: rgba(147, 51, 234, 0.15);
}

.form-group select[multiple] option:checked {
  background: var(--purple-500);
  color: white;
}

.form-group select[multiple] option:checked:hover {
  background: var(--purple-600);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.service-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.service-interest {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  padding: 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 10px;
}

.service-interest-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-interest-heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple-400);
  margin-bottom: 2px;
}

.service-interest .checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  min-height: 44px;
  cursor: pointer;
  transition: color var(--transition-base);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.3;
}

.service-interest .checkbox-label:hover {
  color: var(--text-primary);
}

.service-interest .checkbox-label:hover input[type="checkbox"] {
  border-color: var(--purple-400);
}

.service-interest .checkbox-label input[type="checkbox"] {
  width: 22px;
  height: 22px;
  min-width: 22px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  border: 2px solid #a1a1aa;
  border-radius: 4px;
  background: transparent;
  position: relative;
  box-sizing: border-box;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.service-interest .checkbox-label input[type="checkbox"]:checked {
  background: #7c3aed;
  border-color: #7c3aed;
}

.service-interest .checkbox-label input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 44%;
  left: 50%;
  width: 6px;
  height: 12px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -50%) rotate(45deg);
  box-sizing: border-box;
}

.service-interest .checkbox-label:has(input[type="checkbox"]:checked) {
  color: var(--text-primary);
}

.service-interest .checkbox-label:has(input[type="checkbox"]:checked) span {
  color: var(--text-primary);
}

.btn-submit {
  grid-column: span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 32px;
  background: var(--gradient-purple);
  border: none;
  border-radius: 10px;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: 0 4px 20px rgba(147, 51, 234, 0.3);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(147, 51, 234, 0.4);
}

.form-note {
  grid-column: span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}

.form-note svg {
  stroke: var(--purple-400);
}

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

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

.footer-logo {
  text-decoration: none;
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo .logo-text {
  font-size: 28px;
}

.footer-tagline {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--purple-400);
}

a.footer-contact-item:hover {
  color: var(--purple-400);
}

.footer-links h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-links a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 14px;
  transition: color var(--transition-base);
}

.footer-links a:hover {
  color: var(--purple-400);
}

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

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

.footer-legal {
  display: flex;
  gap: 32px;
}

.footer-legal a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-base);
}

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

/* ============================================
   Modal
   ============================================ */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

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

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 48px;
  width: min(400px, calc(100vw - 32px));
  max-width: 400px;
  text-align: center;
  transform: translateY(20px);
  transition: transform var(--transition-base);
}

@media (max-width: 480px) {
  .modal-content {
    padding: 32px 24px;
  }
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 50%;
  margin: 0 auto 24px;
}

.modal-icon svg {
  width: 32px;
  height: 32px;
  stroke: #22c55e;
}

.modal-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.modal-content p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.btn-modal-close {
  padding: 14px 32px;
  background: var(--gradient-purple);
  border: none;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn-modal-close:hover {
  transform: translateY(-2px);
}

/* ============================================
   Animations & Utilities
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ============================================
   About Page
   ============================================ */
.about-hero {
  padding: 120px 0 40px;
  text-align: center;
}

.about-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-hero-visual {
  display: flex;
  justify-content: center;
  margin: 10px 0 30px;
}

.about-hero-visual .panther-glow {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.9) 0%, rgba(147, 51, 234, 0.5) 50%, transparent 80%);
  filter: blur(25px);
}

.about-hero-visual .panther-container {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-visual .panther-logo {
  position: relative;
  z-index: 1;
  width: 240px;
  height: 220px;
}

.about-hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin: 16px 0 0;
  color: var(--text-primary);
}

.about-hero-desc {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.about-mission {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mission-statement {
  font-size: 24px;
  color: var(--text-primary);
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 32px;
}

.mission-problem {
  padding: 24px;
  background: var(--bg-card);
  border-radius: 12px;
  border-left: 4px solid var(--accent-primary);
}

.mission-problem h3 {
  font-size: 18px;
  color: var(--accent-primary);
  margin-bottom: 12px;
}

.mission-problem p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.mission-icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mission-icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  transition: all var(--transition-base);
}

.mission-icon-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-4px);
}

.mission-icon-card svg {
  width: 48px;
  height: 48px;
  stroke: #a855f7;
  margin-bottom: 16px;
  stroke-width: 2;
}

.mission-icon-card span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Our Story Section */
.about-story {
  padding: var(--section-padding) 0;
  background: var(--bg-primary);
  position: relative;
}

.story-content {
  max-width: 900px;
  margin: 0 auto;
}

.story-text {
  position: relative;
}

.story-narrative {
  margin-top: 48px;
}

.story-intro {
  font-size: 20px;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 48px;
  font-weight: 400;
}

.story-highlights {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.story-highlight {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  transition: all var(--transition-base);
}

.story-highlight:hover {
  border-color: rgba(147, 51, 234, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(147, 51, 234, 0.1);
}

.story-highlight h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.story-highlight p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.story-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: sticky;
  top: 120px;
}

.story-stat-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.story-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple-500), var(--purple-400));
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.story-stat-card:hover::before {
  transform: scaleX(1);
}

.story-stat-card:hover {
  border-color: rgba(147, 51, 234, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(147, 51, 234, 0.2);
}

.story-stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--purple-300);
  line-height: 1;
  margin-bottom: 12px;
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.story-stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Story Section Responsive */
@media (max-width: 768px) {
  .story-intro {
    font-size: 18px;
    margin-bottom: 32px;
  }
  
  .story-highlights {
    gap: 24px;
  }
  
  .story-highlight {
    padding: 24px;
  }
  
  .story-highlight h3 {
    font-size: 20px;
  }
  
  .story-highlight p {
    font-size: 15px;
  }
}

.about-values {
  padding: var(--section-padding) 0;
}

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

.value-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  text-align: center;
  transition: all var(--transition-base);
}

.value-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-4px);
}

.value-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(147, 51, 234, 0.1);
  border-radius: 50%;
  margin: 0 auto 20px;
}

.value-icon svg {
  width: 32px;
  height: 32px;
  stroke: #a855f7;
  stroke-width: 2;
}

.value-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.value-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Results Section */
.about-results {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.result-stat {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  transition: all var(--transition-base);
}

.result-stat:hover {
  border-color: var(--accent-primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(147, 51, 234, 0.15);
}

.result-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(147, 51, 234, 0.1);
  border-radius: 50%;
  margin: 0 auto 24px;
}

.result-icon svg {
  width: 32px;
  height: 32px;
  stroke: #a855f7;
  stroke-width: 2;
}

.result-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1;
}

.result-number--name {
  font-size: 32px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--purple-300), var(--purple-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.result-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.result-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Testimonials Section */
.about-testimonials {
  padding: var(--section-padding) 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.testimonial-card {
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(147, 51, 234, 0.1);
}

.testimonial-quote {
  margin-bottom: 24px;
}

.testimonial-quote svg {
  width: 32px;
  height: 32px;
  stroke: var(--accent-primary);
  opacity: 0.6;
}

.testimonial-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  flex-grow: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.testimonial-author-info {
  flex: 1;
}

.testimonial-author-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.testimonial-author-role {
  font-size: 14px;
  color: var(--text-muted);
}

/* Commitment Section */
.about-commitment {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.commitment-card {
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  transition: all var(--transition-base);
}

.commitment-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(147, 51, 234, 0.1);
}

.commitment-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(147, 51, 234, 0.1);
  border-radius: 50%;
  margin-bottom: 24px;
}

.commitment-icon svg {
  width: 32px;
  height: 32px;
  stroke: #a855f7;
  stroke-width: 2;
}

.commitment-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.commitment-card p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.about-team {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

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

.team-card {
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  text-align: center;
}

.team-avatar {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-purple);
  border-radius: 50%;
  margin: 0 auto 24px;
}

.team-avatar svg {
  width: 50px;
  height: 50px;
  stroke: white;
}

.team-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.team-title {
  font-size: 14px;
  color: var(--accent-primary);
  margin-bottom: 16px;
}

.team-bio {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.team-certs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.team-certs span {
  padding: 6px 12px;
  background: rgba(147, 51, 234, 0.15);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-primary);
}

.about-approach {
  padding: var(--section-padding) 0;
}

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

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

.approach-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(147, 51, 234, 0.15);
  border-radius: 12px;
  margin-bottom: 20px;
}

.approach-icon svg {
  width: 30px;
  height: 30px;
  stroke: #a855f7;
}

.approach-number {
  font-size: 64px;
  font-weight: 800;
  color: var(--accent-primary);
  opacity: 0.2;
  position: absolute;
  top: 20px;
  right: 30px;
}

.approach-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.approach-card > p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}

.approach-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.approach-list li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 14px;
  color: var(--text-secondary);
}

.approach-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 50%;
}

.about-partners {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

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

.partner-category {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
}

.partner-category h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
  text-align: center;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.partner-item {
  padding: 10px 16px;
  background: var(--bg-secondary);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition-base);
}

.partner-item:hover {
  color: var(--accent-primary);
  background: rgba(147, 51, 234, 0.1);
}

.about-cta {
  padding: var(--section-padding) 0;
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* ============================================
   Insights Page - Premium Design
   ============================================ */
.insights-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.insights-hero::before {
  content: '';
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

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

.insights-hero-title {
  font-size: clamp(48px, 7vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  margin: 20px 0 28px;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.insights-hero-desc {
  font-size: 20px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

.insights-stats {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.insights-blog {
  padding: 100px 0;
}

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

.blog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

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

.blog-card.featured {
  grid-column: span 2;
  flex-direction: row;
}

.blog-image {
  position: relative;
  height: 220px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(88, 28, 135, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog-card:hover .blog-image {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.25) 0%, rgba(88, 28, 135, 0.15) 100%);
}

.blog-card.featured .blog-image {
  flex: 1;
  height: auto;
  min-height: 320px;
}

/* ============================================
   Advanced Blog Thumbnail Illustrations
   ============================================ */

/* Main illustration container */
.blog-illustration {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background layers */
.blog-illustration::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 20%, rgba(139, 92, 246, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(168, 85, 247, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(109, 40, 217, 0.15) 0%, transparent 70%);
}

.blog-illustration::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(139, 92, 246, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* Scene container for complex illustrations */
.blog-scene {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main illustration SVG */
.blog-scene svg.main-illustration {
  position: relative;
  z-index: 3;
  width: 180px;
  height: 140px;
  filter: drop-shadow(0 10px 30px rgba(139, 92, 246, 0.3));
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card.featured .blog-scene svg.main-illustration {
  width: 260px;
  height: 200px;
}

.blog-card:hover .blog-scene svg.main-illustration {
  transform: translateY(-5px) scale(1.02);
  filter: drop-shadow(0 15px 40px rgba(139, 92, 246, 0.4));
}

/* Decorative orbital rings */
.blog-scene .orbit {
  position: absolute;
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 50%;
  animation: orbitRotate 20s linear infinite;
}

.blog-scene .orbit-1 {
  width: 200px;
  height: 200px;
  animation-duration: 25s;
}

.blog-scene .orbit-2 {
  width: 280px;
  height: 280px;
  animation-duration: 35s;
  animation-direction: reverse;
}

.blog-card.featured .orbit-1 { width: 280px; height: 280px; }
.blog-card.featured .orbit-2 { width: 380px; height: 380px; }

@keyframes orbitRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Floating data particles */
.blog-scene .particle {
  position: absolute;
  background: rgba(168, 85, 247, 0.6);
  border-radius: 50%;
  animation: particleFloat 4s ease-in-out infinite;
}

.blog-scene .particle-1 {
  width: 6px;
  height: 6px;
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.blog-scene .particle-2 {
  width: 4px;
  height: 4px;
  top: 30%;
  right: 20%;
  animation-delay: 0.5s;
}

.blog-scene .particle-3 {
  width: 8px;
  height: 8px;
  bottom: 25%;
  left: 25%;
  animation-delay: 1s;
}

.blog-scene .particle-4 {
  width: 5px;
  height: 5px;
  bottom: 35%;
  right: 15%;
  animation-delay: 1.5s;
}

.blog-scene .particle-5 {
  width: 3px;
  height: 3px;
  top: 50%;
  left: 10%;
  animation-delay: 2s;
}

.blog-scene .particle-6 {
  width: 7px;
  height: 7px;
  top: 15%;
  right: 30%;
  animation-delay: 2.5s;
}

@keyframes particleFloat {
  0%, 100% { 
    transform: translateY(0) scale(1); 
    opacity: 0.6;
  }
  50% { 
    transform: translateY(-15px) scale(1.2); 
    opacity: 1;
  }
}

/* Glowing accents */
.blog-scene .glow-accent {
  position: absolute;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
  animation: glowPulse 3s ease-in-out infinite;
}

.blog-scene .glow-accent-1 {
  top: 10%;
  right: 20%;
  animation-delay: 0s;
}

.blog-scene .glow-accent-2 {
  bottom: 15%;
  left: 15%;
  animation-delay: 1.5s;
  width: 80px;
  height: 80px;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

/* Connection lines */
.blog-scene .connection-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.4), transparent);
  transform-origin: left center;
}

/* Data streams */
.blog-scene .data-stream {
  position: absolute;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.6), rgba(139, 92, 246, 0.8), transparent);
  animation: streamFlow 2s linear infinite;
}

@keyframes streamFlow {
  0% { transform: translateX(-100%); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateX(200%); opacity: 0; }
}

/* Hexagon grid background elements */
.blog-scene .hex-grid {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%238b5cf6' fill-opacity='0.4'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .blog-scene svg.main-illustration {
    width: 140px;
    height: 110px;
  }
  
  .blog-scene .orbit-1 { width: 160px; height: 160px; }
  .blog-scene .orbit-2 { width: 220px; height: 220px; }
}

/* Legacy support */
.blog-image-placeholder {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-image-placeholder {
  transform: scale(1.1);
}

.blog-image-placeholder svg {
  width: 64px;
  height: 64px;
  stroke: var(--accent-primary);
  opacity: 0.5;
}

.blog-category {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 16px;
  background: rgba(139, 92, 246, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card.featured .blog-content {
  flex: 1;
  justify-content: center;
  padding: 40px;
}

.blog-date {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
  display: block;
  font-weight: 500;
}

.blog-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.4;
}

.blog-card.featured h3 {
  font-size: 26px;
}

.blog-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--purple-300);
  transition: all 0.3s ease;
}

.blog-card:hover .blog-link {
  gap: 12px;
}

.insights-newsletter {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.newsletter-content {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.newsletter-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.newsletter-content p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 16px;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent-primary);
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

.newsletter-status {
  min-height: 20px;
  margin-top: 14px;
  font-size: 14px;
  color: var(--text-secondary);
}

.newsletter-status.is-success {
  color: #34d399;
}

.newsletter-status.is-error {
  color: #f87171;
}

/* ============================================
   Service Pages
   ============================================ */
.service-hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.service-hero .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.service-hero-content {
  max-width: 600px;
}

.service-hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin: 16px 0 24px;
  color: var(--text-primary);
}

.service-hero-desc {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.service-hero-icon {
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-purple);
  border-radius: 50%;
  opacity: 0.35;
  flex-shrink: 0;
}

.service-hero-icon svg {
  width: 150px;
  height: 150px;
  stroke: white;
}

.service-details {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}

.service-main h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.service-main > p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-feature {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all var(--transition-base);
}

.service-feature:hover {
  border-color: var(--purple-500);
  transform: translateX(8px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-purple);
  border-radius: 10px;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: white;
}

.service-feature h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.service-feature p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px;
}

.sidebar-card {
  padding: 32px;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

.sidebar-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
}

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

.sidebar-card.highlight {
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.15), rgba(109, 40, 217, 0.1));
  border-color: var(--purple-500);
}

.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-list li {
  position: relative;
  padding: 12px 0 12px 28px;
  font-size: 15px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
}

.sidebar-list li:last-child {
  border-bottom: none;
}

.sidebar-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 50%;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1200px) {
  .hero-visual {
    right: 2%;
  }
  
  .panther-container {
    width: 350px;
  }
  
  .panther-logo {
    width: 280px;
    height: 250px;
  }
}

@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    padding-top: 140px;
  }
  
  .hero-content {
    margin: 0;
    text-align: center;
    max-width: 100%;
    padding: 0 24px;
  }
  
  .hero-subtitle {
    margin: 0 auto 40px;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-visual {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin-top: 60px;
  }
  
  .scroll-indicator {
    display: none;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .about-visual {
    order: -1;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-brand {
    grid-column: span 2;
  }

  /* Step dense multi-column grids down to 2 columns on tablets so cards
     don't get cramped between the 1024px and 768px breakpoints. */
  .values-grid,
  .results-grid,
  .testimonials-grid,
  .blog-grid,
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-card.featured {
    grid-column: span 1;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-cta {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .hero-title {
    font-size: 40px;
  }
  
  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  
  .hero-stat-divider {
    width: 60px;
    height: 1px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    gap: 40px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
    padding: 14px 16px;
  }
  
  .form-group.full-width,
  .btn-submit,
  .form-note {
    grid-column: span 1;
  }

  .service-interest {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 12px;
  }

  .pillar-hero-actions .btn-primary,
  .pillar-hero-actions .btn-secondary,
  .solutions-cta .cta-actions .btn-primary,
  .solutions-cta .cta-actions .btn-secondary,
  .services-category .solutions-hero-actions .btn-primary,
  .solutions-hero-centered .solutions-hero-actions .btn-primary {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }
  
  .service-checkboxes {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .testimonial-card {
    padding: 40px 24px;
  }
  
  .testimonial-card blockquote {
    font-size: 18px;
  }
  
  .marquee-item {
    font-size: 14px;
    padding: 0 18px;
  }
  
  .service-hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .service-hero-title {
    font-size: 36px;
  }
  
  .service-hero-icon {
    width: 200px;
    height: 200px;
    order: -1;
  }
  
  .service-hero-icon svg {
    width: 100px;
    height: 100px;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
  }
  
  .service-sidebar {
    position: static;
  }
  
  .about-hero-title {
    font-size: 36px;
  }
  
  .about-hero-visual .panther-container {
    width: 200px;
    height: 200px;
  }
  
  .about-hero-visual .panther-logo {
    width: 160px;
    height: 140px;
  }
  
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .mission-statement {
    font-size: 20px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .result-number {
    font-size: 36px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .commitment-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .commitment-card {
    padding: 32px;
  }
  
  .commitment-card h3 {
    font-size: 20px;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .approach-grid {
    grid-template-columns: 1fr;
  }
  
  .partners-grid {
    grid-template-columns: 1fr;
  }
  
  .insights-hero {
    padding: 120px 0 60px;
  }
  
  .insights-hero-title {
    font-size: 36px;
  }
  
  .insights-hero-desc {
    font-size: 17px;
  }
  
  .insights-stats {
    padding: 60px 0;
  }
  
  .insights-blog {
    padding: 60px 0;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .blog-card.featured {
    grid-column: span 1;
    flex-direction: column;
  }
  
  .blog-card.featured .blog-image {
    min-height: 200px;
  }
  
  .blog-card.featured .blog-content {
    padding: 28px;
  }
  
  .blog-card.featured h3 {
    font-size: 22px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .insights-newsletter {
    padding: 60px 0;
  }
}

/* =====================================================
   BLOG POST PAGES
   ===================================================== */

.blog-post {
  min-height: 100vh;
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gradient-primary);
  z-index: 10001;
}

.blog-hero {
  padding: 120px 0 60px;
}

.blog-hero .container {
  max-width: 720px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--accent-primary);
}

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

.blog-post-header .blog-category {
  position: static;
  display: inline-block;
  color: var(--accent-primary);
  background: rgba(139, 92, 246, 0.15);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-post-header h1 {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin: 12px 0 20px;
}

.blog-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
}

.blog-post .blog-meta .blog-date,
.blog-post .blog-meta .blog-read-time {
  display: inline;
  margin: 0;
  font-size: 14px;
}

.blog-post .blog-meta .blog-meta-divider {
  width: 4px;
  height: 4px;
  background: var(--text-muted);
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
  margin: 0 4px;
}

/* Blog Post Body */
.blog-post-body {
  padding-bottom: 80px;
}

.blog-post-body .container {
  max-width: 720px;
}

/* Blog Post Content */
.blog-post-content p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.blog-post-content .lead {
  font-size: 20px;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-post-content h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 48px 0 20px;
}

.blog-post-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 32px 0 12px;
}

.blog-post-content ul,
.blog-post-content ol {
  margin: 0 0 24px 20px;
}

.blog-post-content li {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.blog-post-content a:not(.btn-primary):not(.btn-secondary) {
  color: var(--accent-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Blog Divider */
.blog-divider {
  width: 40px;
  height: 3px;
  background: var(--accent-primary);
  margin: 48px 0;
}

/* Blog CTA */
.blog-cta {
  margin-top: 64px;
  padding: 40px;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  text-align: center;
}

.blog-cta h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.blog-cta > p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.blog-cta .btn-primary {
  display: inline-flex;
}

/* Share Section */
.blog-share {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-share-label {
  font-size: 14px;
  color: var(--text-muted);
}

.blog-share-links {
  display: flex;
  gap: 8px;
}

.blog-share-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-muted);
  transition: all 0.2s;
}

.blog-share-link:hover {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.3);
  color: var(--accent-primary);
}

.blog-share-link svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .blog-hero {
    padding: 120px 0 40px;
  }
  
  .blog-post-header {
    padding-top: 20px;
  }
  
  .blog-post-header h1 {
    font-size: 28px;
  }
  
  .blog-post-content p,
  .blog-post-content li {
    font-size: 16px;
  }
  
  .blog-post-content .lead {
    font-size: 18px;
    margin-bottom: 36px;
    padding-bottom: 36px;
  }
  
  .blog-post-content h2 {
    font-size: 22px;
    margin: 36px 0 14px;
  }
  
  .blog-post-content h3 {
    font-size: 18px;
  }
  
  .blog-cta {
    padding: 28px 20px;
  }
  
  .blog-share {
    flex-direction: column;
    gap: 12px;
  }
}

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

  .contact-form {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .blog-hero {
    padding: 110px 0 30px;
  }
  
  .blog-post-header {
    padding-top: 10px;
  }
  
  .blog-post-header .blog-category {
    font-size: 11px;
    padding: 6px 12px;
  }
  
  .blog-post-header h1 {
    font-size: 24px;
    margin: 10px 0 16px;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .panther-container {
    width: 280px;
    height: 280px;
  }
  
  .panther-logo {
    width: 220px;
    height: 200px;
  }
  
  .marquee-item {
    font-size: 13px;
    padding: 0 14px;
  }
  
  .service-card {
    padding: 32px 24px;
  }
}

/* Extra small screens */
@media (max-width: 360px) {
  .blog-hero {
    padding: 100px 0 24px;
  }
  
  .blog-post-header .blog-category {
    font-size: 10px;
    padding: 5px 10px;
  }
  
  .blog-post-header h1 {
    font-size: 22px;
  }
  
  .back-link {
    font-size: 13px;
    margin-bottom: 16px;
  }
}

/* =====================================================
   BLOG VISUALS
   ===================================================== */

/* Blog Hero Image */
.blog-hero-image {
  margin-top: 40px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(88, 28, 135, 0.1) 100%);
  border: 1px solid rgba(139, 92, 246, 0.2);
  position: relative;
}

.blog-hero-image-inner {
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

.blog-hero-image-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.blog-hero-icon {
  position: relative;
  z-index: 1;
}

.blog-hero-icon svg {
  width: 140px;
  height: 140px;
  stroke: var(--purple-400);
  stroke-width: 1.5;
  filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.4));
}

/* Blog Info Cards */
.blog-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 40px 0;
}

.blog-info-card {
  padding: 24px;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.blog-info-card:hover {
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-2px);
}

.blog-info-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 92, 246, 0.15);
  border-radius: 12px;
}

.blog-info-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--purple-400);
}

.blog-info-card-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
  margin-bottom: 4px;
}

.blog-info-card-label {
  font-size: 13px;
  color: var(--text-muted);
}

/* Blog Highlight Box */
.blog-highlight {
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(88, 28, 135, 0.05) 100%);
  border-left: 4px solid var(--purple-500);
  border-radius: 0 12px 12px 0;
  margin: 32px 0;
}

.blog-highlight p {
  font-size: 16px;
  color: var(--text-primary);
  line-height: 1.7;
  margin: 0 !important;
}

.blog-highlight strong {
  color: var(--purple-300);
}

/* Blog Process Steps */
.blog-process {
  margin: 40px 0;
}

.blog-process-step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-process-step:last-child {
  border-bottom: none;
}

.blog-process-number {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-purple);
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.blog-process-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.blog-process-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 !important;
}

/* Blog Visual Callout */
.blog-visual-callout {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  margin: 40px 0;
}

.blog-visual-callout-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 92, 246, 0.15);
  border-radius: 16px;
  flex-shrink: 0;
}

.blog-visual-callout-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--purple-400);
}

.blog-visual-callout-content h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.blog-visual-callout-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 !important;
}

/* Blog Icon Grid */
.blog-icon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.blog-icon-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.blog-icon-item:hover {
  background: rgba(139, 92, 246, 0.05);
  border-color: rgba(139, 92, 246, 0.2);
}

.blog-icon-item-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 92, 246, 0.15);
  border-radius: 10px;
  flex-shrink: 0;
}

.blog-icon-item-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--purple-400);
}

.blog-icon-item h5 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.blog-icon-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0 !important;
}

/* Blog Warning Box */
.blog-warning {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 12px;
  margin: 32px 0;
}

.blog-warning-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(239, 68, 68, 0.15);
  border-radius: 10px;
  flex-shrink: 0;
}

.blog-warning-icon svg {
  width: 20px;
  height: 20px;
  stroke: #ef4444;
}

.blog-warning-content h5 {
  font-size: 16px;
  font-weight: 600;
  color: #fca5a5;
  margin-bottom: 6px;
}

.blog-warning-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 !important;
}

/* Blog Success Box */
.blog-success {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 12px;
  margin: 32px 0;
}

.blog-success-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.15);
  border-radius: 10px;
  flex-shrink: 0;
}

.blog-success-icon svg {
  width: 20px;
  height: 20px;
  stroke: #22c55e;
}

.blog-success-content h5 {
  font-size: 16px;
  font-weight: 600;
  color: #86efac;
  margin-bottom: 6px;
}

.blog-success-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 !important;
}

/* Responsive for Blog Visuals */
@media (max-width: 768px) {
  .blog-hero-image-inner {
    padding: 40px 24px;
    min-height: 200px;
  }
  
  .blog-hero-icon svg {
    width: 100px;
    height: 100px;
  }
  
  .blog-info-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .blog-info-card {
    padding: 20px;
  }
  
  .blog-visual-callout {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
  
  .blog-icon-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-process-step {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .blog-hero-image-inner {
    padding: 32px 20px;
    min-height: 160px;
  }
  
  .blog-hero-icon svg {
    width: 80px;
    height: 80px;
  }
  
  .blog-highlight {
    padding: 20px 24px;
  }
}

/* ============================================
   SOLUTIONS PAGE STYLES
   ============================================ */

/* Solutions Hero */
.solutions-hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.solutions-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 30% 20%, rgba(147, 51, 234, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(109, 40, 217, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.solutions-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.solutions-hero-content {
  position: relative;
  z-index: 2;
}

.solutions-hero-title {
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin: 16px 0 24px;
  background: linear-gradient(135deg, #fff 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solutions-hero-desc {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.solutions-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Solutions Hero Visual - Orbit Animation */
.solutions-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.solution-orbit {
  position: relative;
  width: 350px;
  height: 350px;
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.orbit-ring-1 {
  width: 200px;
  height: 200px;
  animation: orbit-pulse 4s ease-in-out infinite;
}

.orbit-ring-2 {
  width: 280px;
  height: 280px;
  border-color: rgba(139, 92, 246, 0.15);
  animation: orbit-pulse 4s ease-in-out infinite 0.5s;
}

.orbit-ring-3 {
  width: 350px;
  height: 350px;
  border-color: rgba(139, 92, 246, 0.1);
  animation: orbit-pulse 4s ease-in-out infinite 1s;
}

@keyframes orbit-pulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.02); }
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(109, 40, 217, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 0 40px rgba(139, 92, 246, 0.4),
    inset 0 0 20px rgba(139, 92, 246, 0.2);
}

.orbit-center svg {
  width: 50px;
  height: 50px;
  stroke: var(--purple-300);
}

.orbit-node {
  position: absolute;
  width: 50px;
  height: 50px;
  background: var(--bg-card);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: orbit-float 3s ease-in-out infinite;
}

.orbit-node svg {
  width: 24px;
  height: 24px;
  stroke: var(--purple-400);
}

.orbit-node-1 {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.orbit-node-2 {
  bottom: 20%;
  left: 5%;
  animation-delay: 0.5s;
}

.orbit-node-3 {
  bottom: 20%;
  right: 5%;
  animation-delay: 1s;
}

@keyframes orbit-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.orbit-node-1 {
  animation: orbit-float-1 3s ease-in-out infinite;
}

@keyframes orbit-float-1 {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* Solutions Approach - Enhanced from About */
.solutions-approach {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
  position: relative;
}

.solutions-approach::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
}

/* Solutions Tiers Comparison */
.solutions-tiers {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
  position: relative;
}

.tiers-comparison {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
  align-items: stretch;
}

.tier-card {
  position: relative;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

.tier-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.tier-card.tier-featured {
  border-color: var(--purple-500);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, var(--bg-card) 100%);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.2);
  transform: scale(1.05);
}

.tier-card.tier-featured:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

.tier-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: var(--gradient-purple);
  color: white;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.tier-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-color);
}

.tier-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--purple-300);
  margin-bottom: 16px;
}

.tier-featured .tier-badge {
  background: rgba(139, 92, 246, 0.2);
  border-color: var(--purple-500);
  color: var(--purple-200);
}

.tier-name {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.2;
}

.tier-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.tier-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.price-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-amount {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.tier-featured .price-amount {
  color: var(--purple-300);
}

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

.tier-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.tier-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.tier-feature-item svg {
  width: 20px;
  height: 20px;
  stroke: #22c55e;
  flex-shrink: 0;
  margin-top: 2px;
}

.tier-featured .tier-feature-item svg {
  stroke: var(--purple-400);
}

.tier-cta {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* "Everything in X, plus:" lead line */
.tier-feature-lead span {
  font-weight: 600;
  color: var(--text-primary);
}

/* Solutions Tier Sections (Legacy - keeping for reference) */
.solutions-tier {
  padding: var(--section-padding) 0;
  position: relative;
}

.solutions-tier-alt {
  background: var(--bg-secondary);
}

.tier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.tier-grid-reverse {
  direction: rtl;
}

.tier-grid-reverse > * {
  direction: ltr;
}

.tier-content {
  position: relative;
}

.tier-desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.tier-features {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
}

.tier-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-primary);
}

.tier-feature svg {
  width: 20px;
  height: 20px;
  stroke: #22c55e;
  flex-shrink: 0;
}

/* Enterprise Graphic */
.tier-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.enterprise-graphic {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
}

.eg-shield {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(109, 40, 217, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 0 60px rgba(139, 92, 246, 0.3),
    inset 0 0 30px rgba(139, 92, 246, 0.1);
  z-index: 2;
}

.eg-shield svg {
  width: 60px;
  height: 60px;
  stroke: var(--purple-300);
}

.eg-nodes {
  position: absolute;
  inset: 0;
}

.eg-node {
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--purple-500);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.eg-node::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 1px;
  background: linear-gradient(90deg, var(--purple-500), transparent);
  transform-origin: left center;
}

.eg-node-1 { top: 10%; left: 50%; transform: translateX(-50%); }
.eg-node-2 { top: 30%; right: 10%; }
.eg-node-3 { bottom: 30%; right: 10%; }
.eg-node-4 { bottom: 10%; left: 50%; transform: translateX(-50%); }
.eg-node-5 { bottom: 30%; left: 10%; }
.eg-node-6 { top: 30%; left: 10%; }

.eg-node-1::before { transform: rotate(90deg) translateX(-50%); }
.eg-node-2::before { transform: rotate(150deg); }
.eg-node-3::before { transform: rotate(-150deg); }
.eg-node-4::before { transform: rotate(-90deg) translateX(-50%); }
.eg-node-5::before { transform: rotate(-30deg); }
.eg-node-6::before { transform: rotate(30deg); }

/* SMB Graphic */
.smb-graphic {
  position: relative;
  width: 100%;
  max-width: 350px;
  padding: 40px;
}

.smb-layers {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.smb-layer {
  padding: 20px 30px;
  background: var(--bg-card);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.smb-layer::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--purple-500);
  transform: scaleY(0);
  transition: transform var(--transition-base);
}

.smb-layer:hover {
  border-color: var(--purple-500);
  background: var(--bg-card-hover);
}

.smb-layer:hover::before {
  transform: scaleY(1);
}

.smb-layer-1 { animation: layer-appear 0.5s ease-out; }
.smb-layer-2 { animation: layer-appear 0.5s ease-out 0.1s both; }
.smb-layer-3 { animation: layer-appear 0.5s ease-out 0.2s both; }
.smb-layer-4 { animation: layer-appear 0.5s ease-out 0.3s both; }

@keyframes layer-appear {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

.smb-shield-overlay {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(109, 40, 217, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.3);
}

.smb-shield-overlay svg {
  width: 40px;
  height: 40px;
  stroke: var(--purple-300);
}

/* Industry Solutions */
.solutions-industries {
  padding: var(--section-padding) 0;
  position: relative;
}

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

.industry-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-purple);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

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

.industry-card:hover::before {
  transform: scaleX(1);
}

.industry-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(109, 40, 217, 0.1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.industry-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--purple-400);
}

.industry-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

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

.industry-compliance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.industry-compliance li {
  padding: 4px 10px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  color: var(--purple-300);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Why Choose Section */
.solutions-why {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
  position: relative;
}

.solutions-why::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.why-desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.why-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-stat {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  text-align: center;
}

.why-stat-value {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple-300), var(--purple-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.why-stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

.why-stat-desc {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 8px;
  line-height: 1.5;
}

.why-differentiators {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.differentiator {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  transition: all var(--transition-base);
}

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

.diff-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(109, 40, 217, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.diff-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--purple-400);
}

.differentiator h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

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

/* Solutions CTA */
.solutions-cta {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.solutions-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.solutions-cta .cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.solutions-cta h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 16px;
}

.solutions-cta p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   THE PREDATOR METHOD - Premium Section
   ============================================ */

.predator-method {
  padding: 140px 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.predator-method::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.2), transparent);
}

.predator-method::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.15), transparent);
}

/* Predator Intro */
.predator-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}

.predator-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(135deg, #c084fc 0%, #a855f7 50%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.predator-subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.predator-subtitle strong {
  color: var(--text-primary);
}

.predator-promise {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(109, 40, 217, 0.05) 100%);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.promise-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.3);
}

.promise-icon svg {
  width: 24px;
  height: 24px;
  stroke: white;
}

.promise-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.promise-text strong {
  color: var(--purple-300);
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Panther Visual */
.predator-intro-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   ANIMATED HOLOGRAPHIC PANTHER DISPLAY
   For WebM/Lottie Animation
   ============================================ */

.holo-panther-display {
  position: relative;
  width: 480px;
  height: 400px;
}

/* Base Platform - Clean & Subtle */
.holo-base-platform {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 350px;
  height: 50px;
  perspective: 600px;
}

.base-outer-ring,
.base-inner-ring {
  display: none; /* Hide rings for cleaner look */
}

.base-glow-effect {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 30px;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.25) 0%, rgba(139, 92, 246, 0.1) 40%, transparent 70%);
  filter: blur(20px);
}

/* Animation Container */
.panther-animation-wrap {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%) translateZ(0);
  width: 440px;
  height: 320px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--panther-video-bg);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateX(-50%) translateZ(0);
}

/* Video/Lottie Animation */
.panther-video,
.panther-lottie {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  position: relative !important;
  z-index: 1 !important;
  filter: brightness(var(--panther-video-brightness)) contrast(var(--panther-video-contrast)) saturate(var(--panther-video-saturation)) !important;
  background: var(--panther-video-bg) !important;
  transform: scale(1.006) translateZ(0) !important;
  -webkit-transform: scale(1.006) translateZ(0) !important;
  transform-origin: center !important;
  mix-blend-mode: screen !important;
  -webkit-mix-blend-mode: screen !important;
  opacity: 0.96 !important;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  /* Hide default video controls and play button */
  pointer-events: none !important;
  -webkit-tap-highlight-color: transparent;
}

/* Hide video controls on all devices */
.panther-video::-webkit-media-controls {
  display: none !important;
}

.panther-video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

.panther-video::-webkit-media-controls-play-button {
  display: none !important;
  -webkit-appearance: none;
}

.panther-video::-webkit-media-controls-panel {
  display: none !important;
  -webkit-appearance: none;
}

.panther-video::--webkit-media-controls-overlay-play-button {
  display: none !important;
}

/* Fallback image - hidden by default, shown when video fails */
.panther-video-fallback {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: auto;
  object-fit: contain;
  filter: invert(1) hue-rotate(180deg) drop-shadow(0 0 30px rgba(147, 51, 234, 0.6));
  animation: floatPanther 4s ease-in-out infinite;
  z-index: 2;
}

.panther-video-fallback.show {
  display: block;
}

@keyframes floatPanther {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-10px); }
}

/* ============================================
   SAFARI-ONLY PANTHER TRANSPARENCY FIX
   --------------------------------------------
   Root cause: Panther-Loop.mp4 has an opaque (near-black) background. Chrome
   fakes transparency with `mix-blend-mode: screen`, which knocks the black
   out. Safari composites <video> on its own GPU layer and ALSO treats the
   transformed wrapper as an isolated blend group, so the blend has nothing
   to composite against and the black rectangle shows as a box. No blend- or
   filter-based trick works reliably on a composited <video> in Safari.

   Fix: serve Safari a real alpha-channel video instead. Panther-Loop-alpha.mp4
   is HEVC (hvc1) with a true alpha channel (generated with ffmpeg: the same
   brightness/contrast/saturate grade Chrome applies is baked in, and alpha is
   derived from luminance). It composites natively transparent, so no blend or
   filter is needed. The JS at the bottom of solutions.html swaps the <video>
   source to this file only in Safari, so Chrome never downloads it and keeps
   its original screen-blend pipeline untouched.

   `@supports (-webkit-hyphens: none)` matches Safari (desktop + iOS) and is
   false in Chrome/Firefox, so this never affects other browsers.
   ============================================ */
@supports (-webkit-hyphens: none) {
  .panther-animation-wrap {
    background: transparent !important;
  }

  .panther-video {
    mix-blend-mode: normal !important;
    -webkit-mix-blend-mode: normal !important;
    background: transparent !important;
    filter: none !important;
    -webkit-filter: none !important;
    opacity: 1 !important;
  }
}

/* Holographic Effects Layer - Clean & Minimal */
.holo-effects {
  display: none; /* Remove holographic overlays for clean presentation */
}

/* Soft vignette to merge video edges into page bg */
.panther-animation-wrap::before {
  content: none; /* Remove edge glow vignette */
}

/* Within the Predator Method section the gradient is lighter; retune video */
.predator-method {
  --panther-video-brightness: 0.58;
  --panther-video-contrast: 1.48;
  --panther-video-saturation: 0.95;
  --panther-video-vignette: rgba(5, 5, 7, 0.9);
  --panther-video-bg: var(--bg-primary);
}

/* Subtle purple tint - very light */
.effect-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(139, 92, 246, 0.05) 0%,
    transparent 30%,
    transparent 70%,
    rgba(139, 92, 246, 0.08) 100%
  );
  mix-blend-mode: screen;
}

/* Very subtle scanlines - barely visible */
.effect-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 3px,
    rgba(139, 92, 246, 0.02) 3px,
    rgba(139, 92, 246, 0.02) 4px
  );
  opacity: 0.5;
}

/* Hide grid for cleaner look */
.effect-grid {
  display: none;
}

/* Very subtle flicker */
.effect-flicker {
  position: absolute;
  inset: 0;
  background: transparent;
  animation: subtleFlicker 4s ease-in-out infinite;
}

@keyframes subtleFlicker {
  0%, 100% { opacity: 1; }
  92% { opacity: 1; }
  93% { opacity: 0.97; }
  94% { opacity: 1; }
  95% { opacity: 0.98; }
  96% { opacity: 1; }
}

/* Clean glitch - less frequent */
.panther-animation-wrap::after {
  content: none; /* Remove scan/glitch overlay */
}

@keyframes cleanGlitch {
  0%, 94%, 100% { opacity: 0; transform: translateX(-100%); }
  95% { opacity: 1; transform: translateX(-100%); }
  98% { opacity: 1; transform: translateX(200%); }
  99% { opacity: 0; transform: translateX(200%); }
}

/* Subtle edge glow - not overpowering */
.effect-edge-glow {
  display: none; /* Remove border glow */
}

/* Hide noise for cleaner look */
.effect-noise {
  display: none;
}

/* Remove frame and particles for a clean, frameless video */
.tech-frame,
.ambient-particles,
.holo-base-platform {
  display: none;
}

/* Status indicators - minimal & clean */
.holo-status {
  display: none; /* Hidden for cleaner look */
}

.status-line,
.status-dot,
.status-label,
.status-value {
  display: none;
}

/* Tech frame corners - subtle */
.tech-frame {
  position: absolute;
  inset: 5px;
  pointer-events: none;
}

.corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(139, 92, 246, 0.25);
}

.c-tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.c-tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.c-bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.c-br { bottom: 0; right: 0; border-left: none; border-top: none; }

/* Ambient particles - fewer and subtler */
.ambient-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.a-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(139, 92, 246, 0.6);
  border-radius: 50%;
  opacity: 0;
  animation: ambientFloat 6s ease-in-out infinite;
}

.ap1 { left: 20%; bottom: 25%; animation-delay: 0s; }
.ap2 { left: 40%; bottom: 20%; animation-delay: 1.5s; }
.ap3 { left: 60%; bottom: 30%; animation-delay: 3s; }
.ap4 { left: 80%; bottom: 22%; animation-delay: 4.5s; }
.ap5, .ap6 { display: none; } /* Fewer particles */

@keyframes ambientFloat {
  0% { 
    transform: translateY(0) scale(0);
    opacity: 0;
  }
  20% {
    opacity: 0.5;
    transform: translateY(-20px) scale(1);
  }
  80% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-120px) scale(0.5);
    opacity: 0;
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .holo-panther-display {
    width: 420px;
    height: 360px;
  }
  
  .panther-animation-wrap {
    width: 360px;
    height: 260px;
  }
}

@media (max-width: 1024px) {
  .holo-panther-display {
    width: 380px;
    height: 320px;
  }
  
  .panther-animation-wrap {
    width: 320px;
    height: 230px;
  }
  
  .holo-base-platform {
    width: 250px;
  }
  
  .base-outer-ring { width: 230px; height: 80px; }
  .base-inner-ring { width: 160px; height: 55px; }
}

@media (max-width: 768px) {
  .holo-panther-display {
    width: 320px;
    height: 280px;
  }
  
  .panther-animation-wrap {
    width: 280px;
    height: 200px;
    background: var(--panther-video-bg);
    border-radius: 12px;
    overflow: hidden;
  }
  
  /* Use exact same styles as desktop */
  .panther-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    position: relative;
    z-index: 1;
    filter: brightness(var(--panther-video-brightness)) contrast(var(--panther-video-contrast)) saturate(var(--panther-video-saturation));
    background: var(--panther-video-bg);
    transform: scale(1.006) translateZ(0);
    transform-origin: center;
    mix-blend-mode: screen;
    -webkit-mix-blend-mode: screen;
    opacity: 0.96;
  }
  
  .holo-status {
    display: none;
  }
}

@media (max-width: 480px) {
  .holo-panther-display {
    width: 280px;
    height: 250px;
  }

  .panther-animation-wrap {
    width: 250px;
    height: 180px;
    background: var(--panther-video-bg);
    border-radius: 12px;
    overflow: hidden;
  }
  
  /* Use exact same styles as desktop */
  .panther-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    position: relative;
    z-index: 1;
    filter: brightness(var(--panther-video-brightness)) contrast(var(--panther-video-contrast)) saturate(var(--panther-video-saturation));
    background: var(--panther-video-bg);
    transform: scale(1.006) translateZ(0);
    transform-origin: center;
    mix-blend-mode: screen;
    -webkit-mix-blend-mode: screen;
    opacity: 0.96;
  }

  .tech-frame {
    display: none;
  }
}

/* ============================================
   REALISTIC HOLOGRAPHIC PANTHER - Image Based (Legacy)
   ============================================ */

.panther-hologram {
  position: relative;
  width: 500px;
  height: 400px;
}

/* Platform base */
.holo-platform {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 80px;
  perspective: 800px;
}

.platform-ring {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) rotateX(80deg);
  border: 2px solid;
  border-radius: 50%;
  animation: platformSpin 10s linear infinite;
}

.p-ring-1 {
  width: 300px;
  height: 120px;
  border-color: rgba(34, 211, 238, 0.4);
}

.p-ring-2 {
  width: 220px;
  height: 90px;
  border-color: rgba(168, 85, 247, 0.5);
  animation-direction: reverse;
  animation-duration: 8s;
}

@keyframes platformSpin {
  from { transform: translateX(-50%) rotateX(80deg) rotateZ(0deg); }
  to { transform: translateX(-50%) rotateX(80deg) rotateZ(360deg); }
}

.platform-glow {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 350px;
  height: 60px;
  background: radial-gradient(ellipse at center, rgba(34, 211, 238, 0.4) 0%, rgba(168, 85, 247, 0.2) 40%, transparent 70%);
  filter: blur(15px);
}

.platform-reflection {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%) scaleY(-0.3);
  width: 200px;
  height: 100px;
  background: linear-gradient(to bottom, rgba(34, 211, 238, 0.1), transparent);
  filter: blur(10px);
  opacity: 0.5;
}

/* Panther image container */
.panther-image-container {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
  height: 280px;
  overflow: hidden;
  border-radius: 8px;
  animation: holoHover 4s ease-in-out infinite;
}

@keyframes holoHover {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* The actual panther image */
.panther-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: 
    grayscale(100%) 
    contrast(1.2) 
    brightness(0.8);
  mix-blend-mode: luminosity;
  opacity: 0.9;
}

/* Holographic overlay layers */
.holo-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.holo-cyan {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.3) 0%, transparent 50%, rgba(34, 211, 238, 0.2) 100%);
  mix-blend-mode: screen;
  animation: colorShift 3s ease-in-out infinite;
}

.holo-purple {
  background: linear-gradient(225deg, rgba(168, 85, 247, 0.3) 0%, transparent 50%, rgba(139, 92, 246, 0.2) 100%);
  mix-blend-mode: screen;
  animation: colorShift 3s ease-in-out infinite reverse;
}

.holo-gradient {
  background: linear-gradient(
    180deg,
    rgba(34, 211, 238, 0.1) 0%,
    transparent 20%,
    transparent 80%,
    rgba(168, 85, 247, 0.15) 100%
  );
  mix-blend-mode: overlay;
}

@keyframes colorShift {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

/* Scan lines */
.holo-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 2px,
    rgba(34, 211, 238, 0.07) 2px,
    rgba(34, 211, 238, 0.07) 4px
  );
  pointer-events: none;
  animation: scanMove 8s linear infinite;
}

@keyframes scanMove {
  from { background-position: 0 0; }
  to { background-position: 0 100px; }
}

/* Glitch slices */
.glitch-slice {
  position: absolute;
  left: 0;
  right: 0;
  height: 30px;
  background: inherit;
  opacity: 0;
  pointer-events: none;
}

.slice-1 { top: 20%; }
.slice-2 { top: 50%; }
.slice-3 { top: 75%; }

.panther-image-container:hover .glitch-slice {
  animation: glitchSlice 0.3s steps(2) infinite;
}

@keyframes glitchSlice {
  0% { opacity: 0; transform: translateX(0); }
  20% { opacity: 0.8; transform: translateX(-10px); filter: hue-rotate(90deg); }
  40% { opacity: 0; transform: translateX(10px); }
  60% { opacity: 0.6; transform: translateX(-5px); filter: hue-rotate(-90deg); }
  80% { opacity: 0; transform: translateX(5px); }
  100% { opacity: 0; transform: translateX(0); }
}

/* Edge glow */
.edge-glow {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-image: linear-gradient(135deg, #22d3ee, #a855f7, #22d3ee) 1;
  box-shadow: 
    inset 0 0 30px rgba(34, 211, 238, 0.3),
    0 0 30px rgba(34, 211, 238, 0.2),
    0 0 60px rgba(168, 85, 247, 0.15);
  animation: edgePulse 2s ease-in-out infinite;
}

@keyframes edgePulse {
  0%, 100% { 
    box-shadow: 
      inset 0 0 30px rgba(34, 211, 238, 0.3),
      0 0 30px rgba(34, 211, 238, 0.2),
      0 0 60px rgba(168, 85, 247, 0.15);
  }
  50% { 
    box-shadow: 
      inset 0 0 40px rgba(34, 211, 238, 0.4),
      0 0 40px rgba(34, 211, 238, 0.3),
      0 0 80px rgba(168, 85, 247, 0.25);
  }
}

/* Data streams */
.data-stream {
  position: absolute;
  width: 2px;
  height: 100%;
  top: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(34, 211, 238, 0.8) 50%,
    transparent 100%
  );
  animation: streamFlow 2s linear infinite;
  opacity: 0.6;
}

.stream-1 { left: 15%; animation-delay: 0s; }
.stream-2 { left: 50%; animation-delay: 0.7s; }
.stream-3 { left: 85%; animation-delay: 1.4s; }

@keyframes streamFlow {
  from { transform: translateY(-100%); }
  to { transform: translateY(100%); }
}

/* UI Elements */
.holo-ui {
  position: absolute;
  inset: 10px;
  pointer-events: none;
}

.ui-bracket {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(34, 211, 238, 0.6);
}

.bracket-tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.bracket-tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.bracket-bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.bracket-br { bottom: 0; right: 0; border-left: none; border-top: none; }

.ui-label {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(34, 211, 238, 0.9);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ui-top {
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
}

.ui-bottom {
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
}

.ui-dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: dotBlink 1s ease-in-out infinite;
}

@keyframes dotBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.blink {
  animation: cursorBlink 0.8s steps(2) infinite;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Phase badges */
.phase-badges {
  position: absolute;
  top: 50%;
  left: -10px;
  right: -10px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 40px;
  pointer-events: none;
}

.phase-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid;
  border-radius: 4px;
  backdrop-filter: blur(10px);
  animation: badgePulse 3s ease-in-out infinite;
  width: fit-content;
}

.badge-stalk {
  border-color: rgba(34, 211, 238, 0.5);
  align-self: flex-start;
  animation-delay: 0s;
}

.badge-strike {
  border-color: rgba(245, 158, 11, 0.5);
  align-self: flex-end;
  animation-delay: 1s;
}

.badge-guard {
  border-color: rgba(34, 197, 94, 0.5);
  align-self: flex-start;
  animation-delay: 2s;
}

@keyframes badgePulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}

.badge-icon {
  width: 18px;
  height: 18px;
}

.badge-icon svg {
  width: 100%;
  height: 100%;
}

.badge-stalk .badge-icon svg { stroke: #22d3ee; }
.badge-strike .badge-icon svg { stroke: #f59e0b; }
.badge-guard .badge-icon svg { stroke: #22c55e; }

.badge-text {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.badge-stalk .badge-text { color: #22d3ee; }
.badge-strike .badge-text { color: #f59e0b; }
.badge-guard .badge-text { color: #22c55e; }

/* Hologram particles */
.holo-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.h-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #22d3ee;
  border-radius: 50%;
  opacity: 0;
  animation: hParticleRise 4s ease-out infinite;
}

.hp-1 { left: 10%; bottom: 20%; animation-delay: 0s; }
.hp-2 { left: 25%; bottom: 15%; animation-delay: 0.5s; background: #a855f7; }
.hp-3 { left: 40%; bottom: 25%; animation-delay: 1s; }
.hp-4 { left: 55%; bottom: 10%; animation-delay: 1.5s; background: #a855f7; }
.hp-5 { left: 70%; bottom: 20%; animation-delay: 2s; }
.hp-6 { left: 85%; bottom: 15%; animation-delay: 2.5s; background: #a855f7; }
.hp-7 { left: 30%; bottom: 30%; animation-delay: 3s; }
.hp-8 { left: 60%; bottom: 25%; animation-delay: 3.5s; background: #a855f7; }

@keyframes hParticleRise {
  0% { 
    transform: translateY(0) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: translateY(-20px) scale(1);
  }
  90% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-150px) scale(0.5);
    opacity: 0;
  }
}

/* Realistic hologram responsive */
@media (max-width: 1100px) {
  .panther-hologram {
    width: 450px;
    height: 360px;
  }
  
  .panther-image-container {
    width: 380px;
    height: 250px;
  }
  
  .holo-platform {
    width: 280px;
  }
}

@media (max-width: 1024px) {
  .panther-hologram {
    width: 400px;
    height: 320px;
  }
  
  .panther-image-container {
    width: 340px;
    height: 220px;
  }
  
  .phase-badges {
    display: none;
  }
}

@media (max-width: 768px) {
  .panther-hologram {
    width: 340px;
    height: 280px;
  }
  
  .panther-image-container {
    width: 300px;
    height: 190px;
  }
  
  .holo-platform {
    width: 220px;
  }
  
  .p-ring-1 { width: 200px; height: 80px; }
  .p-ring-2 { width: 150px; height: 60px; }
}

@media (max-width: 480px) {
  .panther-hologram {
    width: 300px;
    height: 250px;
  }
  
  .panther-image-container {
    width: 260px;
    height: 170px;
  }
  
  .holo-ui {
    display: none;
  }
}

/* ============================================
   HOLOGRAPHIC PANTHER DISPLAY - SVG (Legacy)
   ============================================ */

.holo-display {
  position: relative;
  width: 520px;
  height: 420px;
}

/* Hologram Base Platform */
.holo-base {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 20px;
  perspective: 500px;
}

.base-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotateX(75deg);
  border: 2px solid;
  border-radius: 50%;
  animation: baseRotate 8s linear infinite;
}

.ring-1 {
  width: 280px;
  height: 280px;
  border-color: rgba(34, 211, 238, 0.4);
}

.ring-2 {
  width: 220px;
  height: 220px;
  border-color: rgba(168, 85, 247, 0.5);
  animation-direction: reverse;
  animation-duration: 6s;
}

.ring-3 {
  width: 160px;
  height: 160px;
  border-color: rgba(34, 211, 238, 0.3);
  animation-duration: 10s;
}

@keyframes baseRotate {
  from { transform: translate(-50%, -50%) rotateX(75deg) rotateZ(0deg); }
  to { transform: translate(-50%, -50%) rotateX(75deg) rotateZ(360deg); }
}

.base-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 100px;
  background: radial-gradient(ellipse, rgba(34, 211, 238, 0.3) 0%, transparent 70%);
  filter: blur(20px);
}

/* Hologram Container */
.holo-container {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  height: 320px;
  overflow: hidden;
}

/* Scan lines overlay */
.holo-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 2px,
    rgba(34, 211, 238, 0.03) 2px,
    rgba(34, 211, 238, 0.03) 4px
  );
  pointer-events: none;
  z-index: 10;
}

/* Glitch effect */
.holo-glitch {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(34, 211, 238, 0.1) 45%,
    rgba(168, 85, 247, 0.1) 55%,
    transparent 100%
  );
  opacity: 0;
  animation: glitchFlash 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 5;
}

@keyframes glitchFlash {
  0%, 90%, 100% { opacity: 0; transform: translateX(0); }
  92% { opacity: 1; transform: translateX(-5px); }
  94% { opacity: 0.5; transform: translateX(5px); }
  96% { opacity: 1; transform: translateX(-2px); }
  98% { opacity: 0; transform: translateX(0); }
}

/* The Holographic Panther SVG */
.holo-panther {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(34, 211, 238, 0.5));
  animation: holoFloat 4s ease-in-out infinite;
}

@keyframes holoFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-8px); }
}

.panther-holo-body {
  animation: holoFlicker 0.1s ease-in-out infinite;
}

@keyframes holoFlicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.97; }
}

.panther-eyes {
  animation: eyePulse 2s ease-in-out infinite;
}

@keyframes eyePulse {
  0%, 100% { filter: url(#eyeHoloGlow) brightness(1); }
  50% { filter: url(#eyeHoloGlow) brightness(1.5); }
}

.wireframe-overlay {
  animation: wireframePulse 3s ease-in-out infinite;
}

@keyframes wireframePulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.4; }
}

/* Hologram noise/static */
.holo-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 15;
}

/* Vertical scan beam */
.holo-scan-beam {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100px;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(34, 211, 238, 0.1) 40%,
    rgba(34, 211, 238, 0.3) 50%,
    rgba(34, 211, 238, 0.1) 60%,
    transparent 100%
  );
  animation: scanBeam 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes scanBeam {
  0% { left: -100px; }
  100% { left: calc(100% + 100px); }
}

/* Phase Labels */
.holo-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.holo-label {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid;
  border-radius: 4px;
  backdrop-filter: blur(5px);
  animation: labelFloat 3s ease-in-out infinite;
}

.label-stalk {
  top: 15%;
  left: 5%;
  border-color: rgba(34, 211, 238, 0.5);
  animation-delay: 0s;
}

.label-strike {
  top: 25%;
  right: 0%;
  border-color: rgba(245, 158, 11, 0.5);
  animation-delay: 1s;
}

.label-guard {
  bottom: 25%;
  left: 8%;
  border-color: rgba(34, 197, 94, 0.5);
  animation-delay: 2s;
}

@keyframes labelFloat {
  0%, 100% { transform: translateY(0); opacity: 0.8; }
  50% { transform: translateY(-3px); opacity: 1; }
}

.label-num {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
}

.label-stalk .label-num { color: #22d3ee; }
.label-strike .label-num { color: #f59e0b; }
.label-guard .label-num { color: #22c55e; }

.label-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--text-primary);
}

/* Tech decorations */
.holo-tech {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
}

.tech-text {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1px;
  color: rgba(34, 211, 238, 0.6);
  animation: techBlink 2s ease-in-out infinite;
}

.tech-text:nth-child(2) {
  animation-delay: 1s;
}

@keyframes techBlink {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

/* Hologram Display Responsive */
@media (max-width: 1200px) {
  .holo-display {
    width: 460px;
    height: 380px;
  }
  
  .holo-container {
    width: 420px;
    height: 280px;
  }
}

@media (max-width: 1024px) {
  .holo-display {
    width: 400px;
    height: 340px;
  }
  
  .holo-container {
    width: 380px;
    height: 260px;
  }
  
  .base-ring.ring-1 { width: 240px; height: 240px; }
  .base-ring.ring-2 { width: 180px; height: 180px; }
  .base-ring.ring-3 { width: 120px; height: 120px; }
  
  .holo-labels {
    display: none;
  }
}

@media (max-width: 768px) {
  .holo-display {
    width: 340px;
    height: 300px;
  }
  
  .holo-container {
    width: 320px;
    height: 220px;
  }
  
  .holo-base {
    width: 200px;
  }
  
  .base-ring.ring-1 { width: 180px; height: 180px; }
  .base-ring.ring-2 { width: 140px; height: 140px; }
  .base-ring.ring-3 { width: 100px; height: 100px; }
  
  .holo-tech {
    display: none;
  }
}

@media (max-width: 480px) {
  .holo-display {
    width: 300px;
    height: 260px;
  }
  
  .holo-container {
    width: 280px;
    height: 190px;
  }
}

/* ============================================
   HUNTING PANTHER SCENE - Legacy
   ============================================ */

.hunting-panther-scene {
  position: relative;
  width: 500px;
  height: 350px;
  overflow: visible;
}

/* Atmospheric background */
.scene-atmosphere {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 20px;
}

.atmo-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(109, 40, 217, 0.1) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 80%, rgba(168, 85, 247, 0.08) 0%, transparent 50%);
}

.atmo-mist {
  position: absolute;
  width: 200%;
  height: 100px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(139, 92, 246, 0.05) 20%, 
    rgba(139, 92, 246, 0.1) 50%, 
    rgba(139, 92, 246, 0.05) 80%, 
    transparent 100%
  );
  animation: mistDrift 15s ease-in-out infinite;
}

.mist-1 { bottom: 20%; left: -50%; animation-delay: 0s; }
.mist-2 { bottom: 35%; left: -80%; animation-delay: -5s; opacity: 0.7; }
.mist-3 { bottom: 10%; left: -30%; animation-delay: -10s; opacity: 0.5; }

@keyframes mistDrift {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(25%); }
}

/* Ground effect */
.scene-ground {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
}

.ground-line {
  position: absolute;
  bottom: 30px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(139, 92, 246, 0.3) 20%, 
    rgba(139, 92, 246, 0.5) 50%, 
    rgba(139, 92, 246, 0.3) 80%, 
    transparent 100%
  );
}

.ground-glow {
  position: absolute;
  bottom: 20px;
  left: 5%;
  right: 5%;
  height: 40px;
  background: radial-gradient(ellipse at 50% 100%, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
  filter: blur(10px);
}

/* Panther SVG */
.panther-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  max-width: 480px;
  filter: drop-shadow(0 0 40px rgba(139, 92, 246, 0.3));
}

.panther-body {
  animation: pantherBreathe 4s ease-in-out infinite;
}

@keyframes pantherBreathe {
  0%, 100% { transform: translateY(0) scaleY(1); }
  50% { transform: translateY(-2px) scaleY(1.01); }
}

.panther-eyes-group {
  animation: eyeIntensity 3s ease-in-out infinite;
}

@keyframes eyeIntensity {
  0%, 100% { filter: url(#eyeGlowFilter) brightness(1); }
  50% { filter: url(#eyeGlowFilter) brightness(1.3); }
}

/* Hunt phase indicators */
.hunt-phases {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hunt-phase {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  animation: phaseFloat 3s ease-in-out infinite;
}

.phase-stalk-indicator {
  top: 15%;
  left: 8%;
  animation-delay: 0s;
}

.phase-strike-indicator {
  top: 25%;
  right: 5%;
  animation-delay: 1s;
}

.phase-guard-indicator {
  bottom: 20%;
  left: 15%;
  animation-delay: 2s;
}

@keyframes phaseFloat {
  0%, 100% { transform: translateY(0); opacity: 0.8; }
  50% { transform: translateY(-5px); opacity: 1; }
}

.phase-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: relative;
}

.phase-dot::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid;
  animation: dotPulse 2s ease-out infinite;
}

.phase-stalk-indicator .phase-dot { 
  background: #22d3ee; 
  box-shadow: 0 0 15px #22d3ee;
}
.phase-stalk-indicator .phase-dot::before { border-color: #22d3ee; }

.phase-strike-indicator .phase-dot { 
  background: #f59e0b; 
  box-shadow: 0 0 15px #f59e0b;
}
.phase-strike-indicator .phase-dot::before { border-color: #f59e0b; }

.phase-guard-indicator .phase-dot { 
  background: #22c55e; 
  box-shadow: 0 0 15px #22c55e;
}
.phase-guard-indicator .phase-dot::before { border-color: #22c55e; }

@keyframes dotPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

.phase-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
}

.phase-stalk-indicator .phase-text { color: #22d3ee; }
.phase-strike-indicator .phase-text { color: #f59e0b; }
.phase-guard-indicator .phase-text { color: #22c55e; }

.phase-desc {
  font-size: 9px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Scanning effect */
.hunt-scanner {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.scanner-line {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%,
    transparent 40%,
    rgba(139, 92, 246, 0.1) 45%,
    rgba(139, 92, 246, 0.3) 50%,
    rgba(139, 92, 246, 0.1) 55%,
    transparent 60%,
    transparent 100%
  );
  animation: scannerMove 4s ease-in-out infinite;
}

@keyframes scannerMove {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Dust particles */
.dust-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.dust {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(139, 92, 246, 0.6);
  border-radius: 50%;
  animation: dustFloat 6s ease-in-out infinite;
}

.d1 { bottom: 25%; left: 20%; animation-delay: 0s; }
.d2 { bottom: 30%; left: 35%; animation-delay: 1s; }
.d3 { bottom: 22%; left: 50%; animation-delay: 2s; }
.d4 { bottom: 28%; left: 65%; animation-delay: 3s; }
.d5 { bottom: 20%; left: 75%; animation-delay: 4s; }
.d6 { bottom: 35%; left: 85%; animation-delay: 5s; }

@keyframes dustFloat {
  0%, 100% { 
    transform: translateY(0) translateX(0); 
    opacity: 0;
  }
  10% { opacity: 0.8; }
  50% { 
    transform: translateY(-30px) translateX(10px); 
    opacity: 0.6;
  }
  90% { opacity: 0.2; }
  100% { 
    transform: translateY(-50px) translateX(20px); 
    opacity: 0;
  }
}

/* Hunting panther responsive */
@media (max-width: 1200px) {
  .hunting-panther-scene {
    width: 450px;
    height: 320px;
  }
}

@media (max-width: 1024px) {
  .hunting-panther-scene {
    width: 380px;
    height: 280px;
  }
  
  .hunt-phase {
    display: none;
  }
}

@media (max-width: 768px) {
  .hunting-panther-scene {
    width: 320px;
    height: 240px;
  }
  
  .panther-svg {
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .hunting-panther-scene {
    width: 280px;
    height: 200px;
  }
  
  .panther-svg {
    max-width: 260px;
  }
  
  .scene-ground {
    display: none;
  }
}

/* ============================================
   PREDATOR DIAGRAM - Premium Visual (Legacy)
   ============================================ */

.predator-diagram {
  position: relative;
  width: 400px;
  height: 400px;
}

/* Scanning ring effect */
.diagram-scanner {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-top-color: rgba(139, 92, 246, 0.6);
  border-radius: 50%;
  animation: scanRotate 4s linear infinite;
}

.diagram-scanner::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #a855f7;
  border-radius: 50%;
  box-shadow: 0 0 20px #a855f7, 0 0 40px #a855f7;
}

@keyframes scanRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Orbit rings */
.diagram-orbit {
  position: absolute;
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 50%;
}

.orbit-1 {
  inset: 30px;
  border-color: rgba(34, 211, 238, 0.2);
  animation: orbitPulse 3s ease-in-out infinite;
}

.orbit-2 {
  inset: 60px;
  border-color: rgba(245, 158, 11, 0.2);
  animation: orbitPulse 3s ease-in-out infinite 1s;
}

.orbit-3 {
  inset: 90px;
  border-color: rgba(34, 197, 94, 0.2);
  animation: orbitPulse 3s ease-in-out infinite 2s;
}

@keyframes orbitPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.02); }
}

/* Connection lines SVG */
.diagram-connections {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.connection-path {
  stroke-dasharray: 150;
  stroke-dashoffset: 150;
  animation: drawPath 3s ease-in-out infinite;
}

.path-1 { animation-delay: 0s; }
.path-2 { animation-delay: 0.75s; }
.path-3 { animation-delay: 1.5s; }
.path-4 { animation-delay: 2.25s; }

@keyframes drawPath {
  0%, 100% { stroke-dashoffset: 150; opacity: 0; }
  10% { opacity: 1; }
  50% { stroke-dashoffset: 0; opacity: 1; }
  90% { opacity: 1; }
  100% { stroke-dashoffset: -150; opacity: 0; }
}

/* Phase nodes */
.phase-node {
  position: absolute;
  width: 70px;
  height: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.phase-node:hover {
  transform: scale(1.15);
}

.node-stalk {
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.node-strike {
  bottom: 60px;
  right: 20px;
}

.node-guard {
  bottom: 60px;
  left: 20px;
}

.node-glow {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  opacity: 0.5;
  animation: nodeGlow 2s ease-in-out infinite;
}

.node-stalk .node-glow { background: radial-gradient(circle, rgba(34, 211, 238, 0.4) 0%, transparent 70%); }
.node-strike .node-glow { background: radial-gradient(circle, rgba(245, 158, 11, 0.4) 0%, transparent 70%); }
.node-guard .node-glow { background: radial-gradient(circle, rgba(34, 197, 94, 0.4) 0%, transparent 70%); }

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

.node-ring {
  position: absolute;
  inset: 0;
  border: 2px solid;
  border-radius: 50%;
  animation: ringPulse 2s ease-out infinite;
}

.node-stalk .node-ring { border-color: #22d3ee; }
.node-strike .node-ring { border-color: #f59e0b; }
.node-guard .node-ring { border-color: #22c55e; }

@keyframes ringPulse {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.node-icon {
  position: relative;
  z-index: 2;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.node-stalk .node-icon { background: linear-gradient(135deg, rgba(34, 211, 238, 0.2), rgba(6, 182, 212, 0.1)); border: 1px solid rgba(34, 211, 238, 0.3); }
.node-strike .node-icon { background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.1)); border: 1px solid rgba(245, 158, 11, 0.3); }
.node-guard .node-icon { background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(22, 163, 74, 0.1)); border: 1px solid rgba(34, 197, 94, 0.3); }

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

.node-stalk .node-icon svg { stroke: #22d3ee; }
.node-strike .node-icon svg { stroke: #f59e0b; }
.node-guard .node-icon svg { stroke: #22c55e; }

.node-label {
  position: absolute;
  bottom: -20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  white-space: nowrap;
}

.node-stalk .node-label { color: #22d3ee; }
.node-strike .node-label { color: #f59e0b; }
.node-guard .node-label { color: #22c55e; }

/* Center shield with panther eyes */
.diagram-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 140px;
}

.center-shield {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.5));
}

.center-shield svg {
  width: 100%;
  height: 100%;
}

.center-pulse {
  position: absolute;
  inset: -20px;
  border: 2px solid rgba(139, 92, 246, 0.3);
  border-radius: 50%;
  animation: centerPulse 2s ease-out infinite;
}

.center-pulse.pulse-2 {
  animation-delay: 1s;
}

@keyframes centerPulse {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* Floating particles */
.diagram-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #a855f7;
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 4s ease-in-out infinite;
}

.p1 { top: 20%; left: 15%; animation-delay: 0s; }
.p2 { top: 30%; right: 20%; animation-delay: 0.5s; }
.p3 { bottom: 25%; left: 25%; animation-delay: 1s; }
.p4 { bottom: 35%; right: 15%; animation-delay: 1.5s; }
.p5 { top: 45%; left: 10%; animation-delay: 2s; }
.p6 { top: 55%; right: 10%; animation-delay: 2.5s; }
.p7 { bottom: 20%; left: 45%; animation-delay: 3s; }
.p8 { top: 15%; right: 35%; animation-delay: 3.5s; }

@keyframes particleFloat {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0.5); }
  20% { opacity: 1; }
  50% { opacity: 1; transform: translateY(-20px) scale(1); }
  80% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-40px) scale(0.5); }
}

/* Data flow indicators */
.data-flow {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #a855f7;
  border-radius: 50%;
  box-shadow: 0 0 10px #a855f7;
}

.flow-1 {
  animation: flowPath1 3s linear infinite;
}

.flow-2 {
  animation: flowPath2 3s linear infinite 1s;
}

.flow-3 {
  animation: flowPath3 3s linear infinite 2s;
}

@keyframes flowPath1 {
  0% { top: 10%; left: 50%; opacity: 0; }
  10% { opacity: 1; }
  50% { top: 50%; left: 75%; }
  90% { opacity: 1; }
  100% { top: 75%; left: 70%; opacity: 0; }
}

@keyframes flowPath2 {
  0% { top: 75%; left: 70%; opacity: 0; }
  10% { opacity: 1; }
  50% { top: 80%; left: 50%; }
  90% { opacity: 1; }
  100% { top: 75%; left: 30%; opacity: 0; }
}

@keyframes flowPath3 {
  0% { top: 75%; left: 30%; opacity: 0; }
  10% { opacity: 1; }
  50% { top: 50%; left: 25%; }
  90% { opacity: 1; }
  100% { top: 10%; left: 50%; opacity: 0; }
}

/* Responsive adjustments for diagram */
@media (max-width: 1024px) {
  .predator-diagram {
    width: 320px;
    height: 320px;
  }
  
  .phase-node {
    width: 60px;
    height: 60px;
  }
  
  .node-icon {
    width: 44px;
    height: 44px;
  }
  
  .node-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .diagram-center {
    width: 100px;
    height: 120px;
  }
}

@media (max-width: 768px) {
  .predator-diagram {
    width: 280px;
    height: 280px;
  }
  
  .node-label {
    font-size: 8px;
  }
  
  .diagram-center {
    width: 80px;
    height: 100px;
  }
  
  .orbit-1 { inset: 20px; }
  .orbit-2 { inset: 45px; }
  .orbit-3 { inset: 70px; }
}

/* Keep old class for compatibility */
.panther-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  animation: pantherPulse 4s ease-in-out infinite;
}

@keyframes pantherPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

/* Method Timeline */
.method-timeline {
  position: relative;
  padding-left: 60px;
}

.timeline-line {
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, 
    rgba(139, 92, 246, 0.3) 0%, 
    rgba(139, 92, 246, 0.5) 50%,
    rgba(139, 92, 246, 0.3) 100%
  );
}

.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--purple-500), var(--purple-400));
  border-radius: 2px;
  transition: height 1s ease;
}

/* Method Phase */
.method-phase {
  position: relative;
  margin-bottom: 80px;
}

.method-phase:last-of-type {
  margin-bottom: 100px;
}

.phase-marker {
  position: absolute;
  left: -60px;
  top: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phase-number {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: white;
  box-shadow: 
    0 0 30px rgba(139, 92, 246, 0.4),
    inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.phase-pulse {
  position: absolute;
  inset: -8px;
  border: 2px solid var(--purple-500);
  border-radius: 50%;
  opacity: 0;
  animation: phasePulse 2s ease-out infinite;
}

@keyframes phasePulse {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

.phase-stalk .phase-number { background: linear-gradient(135deg, #22d3ee, #06b6d4); box-shadow: 0 0 30px rgba(34, 211, 238, 0.4); }
.phase-stalk .phase-pulse { border-color: #22d3ee; }
.phase-strike .phase-number { background: linear-gradient(135deg, #f59e0b, #d97706); box-shadow: 0 0 30px rgba(245, 158, 11, 0.4); }
.phase-strike .phase-pulse { border-color: #f59e0b; }
.phase-guard .phase-number { background: linear-gradient(135deg, #22c55e, #16a34a); box-shadow: 0 0 30px rgba(34, 197, 94, 0.4); }
.phase-guard .phase-pulse { border-color: #22c55e; }

/* Phase Content */
.phase-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  transition: all var(--transition-base);
}

.phase-content:hover {
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.phase-stalk .phase-content:hover { border-color: rgba(34, 211, 238, 0.3); }
.phase-strike .phase-content:hover { border-color: rgba(245, 158, 11, 0.3); }
.phase-guard .phase-content:hover { border-color: rgba(34, 197, 94, 0.3); }

.phase-header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 40px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, transparent 100%);
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.phase-stalk .phase-header { background: linear-gradient(135deg, rgba(34, 211, 238, 0.05) 0%, transparent 100%); }
.phase-strike .phase-header { background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, transparent 100%); }
.phase-guard .phase-header { background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, transparent 100%); }

.phase-icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.phase-icon-wrap svg {
  width: 36px;
  height: 36px;
  stroke: #f5f5ff;
  stroke-width: 1.75;
  opacity: 0.95;
}

.phase-stalk .phase-icon-wrap { background: linear-gradient(135deg, rgba(34, 211, 238, 0.18), rgba(6, 182, 212, 0.12)); }
.phase-stalk .phase-icon-wrap svg { stroke: #8af0ff; }
.phase-strike .phase-icon-wrap { background: linear-gradient(135deg, rgba(245, 158, 11, 0.18), rgba(217, 119, 6, 0.12)); }
.phase-strike .phase-icon-wrap svg { stroke: #ffd68a; }
.phase-guard .phase-icon-wrap { background: linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(22, 163, 74, 0.12)); }
.phase-guard .phase-icon-wrap svg { stroke: #7cf5a5; }

.phase-titles {
  flex: 1;
}

.phase-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--purple-400);
  margin-bottom: 4px;
}

.phase-stalk .phase-label { color: #22d3ee; }
.phase-strike .phase-label { color: #f59e0b; }
.phase-guard .phase-label { color: #22c55e; }

.phase-name {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 4px;
}

.phase-tagline {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0;
  font-style: italic;
}

.phase-body {
  padding: 40px;
}

.phase-description {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.phase-description strong {
  color: var(--text-primary);
}

.phase-details {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
  align-items: start;
}

.phase-details .detail-block {
  min-width: 0;
}

.detail-block h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.detail-list li svg {
  width: 20px;
  height: 20px;
  stroke: #22c55e;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  column-gap: 12px;
  row-gap: 12px;
  width: 100%;
  align-items: flex-start;
  justify-content: flex-start;
}

.service-tag {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7px 14px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--purple-300);
  text-decoration: none;
  transition: all var(--transition-fast);
  line-height: 1.35;
  white-space: nowrap;
  flex: 0 0 auto;
  max-width: 100%;
}

.service-tag:hover {
  background: rgba(139, 92, 246, 0.2);
  border-color: var(--purple-500);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.phase-stalk .service-tag { background: rgba(34, 211, 238, 0.1); border-color: rgba(34, 211, 238, 0.2); color: #22d3ee; }
.phase-stalk .service-tag:hover { background: rgba(34, 211, 238, 0.2); border-color: #22d3ee; }
.phase-strike .service-tag { background: rgba(245, 158, 11, 0.1); border-color: rgba(245, 158, 11, 0.2); color: #f59e0b; }
.phase-strike .service-tag:hover { background: rgba(245, 158, 11, 0.2); border-color: #f59e0b; }
.phase-guard .service-tag { background: rgba(34, 197, 94, 0.1); border-color: rgba(34, 197, 94, 0.2); color: #22c55e; }
.phase-guard .service-tag:hover { background: rgba(34, 197, 94, 0.2); border-color: #22c55e; }

.phase-outcome {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 12px;
}

.outcome-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(34, 197, 94, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.outcome-icon svg {
  width: 20px;
  height: 20px;
  stroke: #22c55e;
}

.outcome-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.outcome-text strong {
  color: #22c55e;
}

/* Phase Stats */
.phase-stats {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

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

.mini-stat-value {
  display: block;
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 4px;
}

.mini-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Trust Banner */
.trust-banner {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(109, 40, 217, 0.04) 100%);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 24px;
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.trust-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
  animation: trustGlow 10s ease-in-out infinite;
}

@keyframes trustGlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10%, 10%); }
}

.trust-content {
  position: relative;
  z-index: 1;
}

.trust-content h3 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.trust-content > p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 40px;
}

.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

.trust-badge svg {
  width: 20px;
  height: 20px;
  stroke: var(--purple-400);
}

.trust-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.3);
}

.trust-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(139, 92, 246, 0.4);
}

.trust-cta svg {
  transition: transform var(--transition-fast);
}

.trust-cta:hover svg {
  transform: translateX(4px);
}

/* Predator Method Responsive */
@media (max-width: 1024px) {
  .predator-intro {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .predator-intro-visual {
    order: -1;
  }
  
  .predator-diagram {
    width: 280px;
    height: 280px;
  }
  
  .hunting-panther-scene {
    width: 100%;
    max-width: 380px;
    height: 280px;
  }
  
  .holo-display {
    width: 100%;
    max-width: 400px;
    height: 340px;
  }
  
  .panther-hologram {
    width: 100%;
    max-width: 400px;
    height: 320px;
  }
  
  .panther-image-container {
    width: 340px;
    height: 220px;
  }
  
  .holo-panther-display {
    width: 100%;
    max-width: 380px;
    height: 320px;
  }
  
  .panther-animation-wrap {
    width: 320px;
    height: 230px;
    background: var(--panther-video-bg);
    border-radius: 12px;
    overflow: hidden;
  }
  
  /* Use exact same styles as desktop */
  .panther-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    position: relative;
    z-index: 1;
    filter: brightness(var(--panther-video-brightness)) contrast(var(--panther-video-contrast)) saturate(var(--panther-video-saturation));
    background: var(--panther-video-bg);
    transform: scale(1.006) translateZ(0);
    transform-origin: center;
    mix-blend-mode: screen;
    -webkit-mix-blend-mode: screen;
    opacity: 0.96;
  }
  
  .predator-promise {
    text-align: left;
  }
  
  .method-timeline {
    padding-left: 50px;
  }
  
  .timeline-line {
    left: 20px;
  }
  
  .phase-marker {
    left: -50px;
  }
  
  .phase-number {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }
  
  .phase-header {
    padding: 24px 30px;
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .phase-icon-wrap {
    width: 52px;
    height: 52px;
  }
  
  .phase-icon-wrap svg {
    width: 26px;
    height: 26px;
  }
  
  .phase-name {
    font-size: 24px;
  }
  
  .phase-body {
    padding: 30px;
  }
  
  .phase-details {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .phase-stats {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .trust-banner {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .predator-method {
    padding: 100px 0;
  }
  
  .predator-intro {
    margin-bottom: 80px;
  }
  
  .predator-title {
    font-size: 32px;
  }
  
  .method-timeline {
    padding-left: 0;
  }
  
  .timeline-line {
    display: none;
  }
  
  .phase-marker {
    position: relative;
    left: 0;
    margin-bottom: 16px;
  }
  
  .method-phase {
    margin-bottom: 40px;
  }
  
  .phase-header {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  
  .trust-badges {
    gap: 12px;
  }
  
  .trust-badge {
    padding: 10px 16px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .predator-title {
    font-size: 28px;
  }
  
  .predator-promise {
    flex-direction: column;
    text-align: center;
  }
  
  .phase-header {
    padding: 20px;
  }
  
  .phase-body {
    padding: 20px;
  }
  
  .phase-name {
    font-size: 22px;
  }
  
  .service-tags {
    justify-content: center;
  }
  
  .phase-outcome {
    flex-direction: column;
    text-align: center;
  }
  
  .phase-stats {
    flex-direction: column;
    gap: 20px;
  }
}

/* Solutions Page Responsive */
@media (max-width: 1024px) {
  .solutions-hero .container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .solutions-hero-actions {
    justify-content: center;
  }
  
  .solutions-hero-visual {
    min-height: 300px;
  }
  
  .solution-orbit {
    width: 280px;
    height: 280px;
  }
  
  .orbit-ring-3 {
    width: 280px;
    height: 280px;
  }
  
  .tiers-comparison {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .tier-card.tier-featured {
    grid-column: span 2;
    transform: scale(1);
  }
  
  .tier-card.tier-featured:hover {
    transform: translateY(-8px);
  }
  
  .tier-card {
    padding: 32px;
  }
  
  .tier-name {
    font-size: 24px;
  }
  
  .price-amount {
    font-size: 32px;
  }
  
  .tiers-comparison {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .tier-card.tier-featured {
    grid-column: span 1;
  }
  
  .tier-card {
    padding: 28px;
  }
  
  .tier-name {
    font-size: 22px;
  }
  
  .price-amount {
    font-size: 28px;
  }
  
  .tier-grid,
  .tier-grid-reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .tier-grid-reverse {
    direction: ltr;
  }
  
  .tier-visual {
    order: -1;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .why-differentiators {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .solutions-hero {
    padding: 120px 0 60px;
  }
  
  .industries-grid {
    grid-template-columns: 1fr;
  }
  
  .why-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .smb-graphic {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .solutions-hero-title {
    font-size: 32px;
  }
  
  .why-stats {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Chatbot
   ============================================ */
.chatbot-container {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  left: auto !important;
  top: auto !important;
  z-index: 99999 !important;
  font-family: var(--font-main);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
}

.chatbot-toggle {
  pointer-events: auto;
}

.chatbot-toggle {
  width: 72px;
  height: 72px;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  position: relative;
}

@keyframes chatbotPulse {
  0%, 100% {
    box-shadow: 0 12px 40px rgba(147, 51, 234, 0.5), 0 0 0 0 rgba(147, 51, 234, 0.6), 0 0 60px rgba(147, 51, 234, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 16px 48px rgba(147, 51, 234, 0.7), 0 0 0 12px rgba(147, 51, 234, 0.2), 0 0 80px rgba(147, 51, 234, 0.5);
    transform: scale(1.05);
  }
}

.chatbot-toggle:hover {
  transform: scale(1.15);
}

.chatbot-toggle svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.chatbot-toggle .chatbot-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: invert(1) hue-rotate(180deg) drop-shadow(0 4px 12px rgba(147, 51, 234, 0.6));
  transition: all var(--transition-base);
}

.chatbot-toggle:hover .chatbot-logo {
  filter: invert(1) hue-rotate(180deg) drop-shadow(0 6px 20px rgba(147, 51, 234, 0.8));
}

.chatbot-badge {
  position: absolute;
  top: 8px;
  right: 2px;
  width: 14px;
  height: 14px;
  background: #9333ea;
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
  box-shadow: 0 0 12px rgba(147, 51, 234, 0.8);
  animation: chatbotBadgePulse 2s ease-in-out infinite;
}

@keyframes chatbotBadgePulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 12px rgba(147, 51, 234, 0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(147, 51, 234, 1);
  }
}

.chatbot-container.chatbot-open .chatbot-toggle {
  display: none;
}

.chatbot-window {
  width: 420px;
  height: 600px;
  max-height: calc(100vh - 48px);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(147, 51, 234, 0.1);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: all var(--transition-base);
  overflow: hidden;
  pointer-events: none;
  visibility: hidden;
}

.chatbot-window-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  visibility: visible;
}

.chatbot-header {
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-header-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot-icon-small {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gradient-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.chatbot-icon-small svg {
  width: 20px;
  height: 20px;
}

.chatbot-icon-small .header-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: invert(1) hue-rotate(180deg);
}

.chatbot-header-text h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 4px 0;
}

.chatbot-status {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

.chatbot-close {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.chatbot-close:hover {
  background: var(--bg-card-hover);
  border-color: var(--purple-400);
  color: var(--purple-400);
}

.chatbot-close svg {
  width: 18px;
  height: 18px;
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scroll-behavior: smooth;
}

.chatbot-messages::-webkit-scrollbar {
  width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
  background: transparent;
}

.chatbot-messages::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 3px;
}

.chatbot-messages::-webkit-scrollbar-thumb:hover {
  background: var(--purple-400);
}

.chatbot-message {
  display: flex;
  gap: 12px;
  animation: messageSlideIn 0.3s ease-out;
}

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

.chatbot-message-user {
  justify-content: flex-end;
}

.chatbot-message-user .message-content {
  background: var(--gradient-purple);
  color: white;
  max-width: 75%;
}

.chatbot-message-bot .message-content {
  background: var(--bg-card-hover);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  max-width: 85%;
}

.message-avatar {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--gradient-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.message-avatar svg {
  width: 18px;
  height: 18px;
}

.message-avatar .avatar-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: invert(1) hue-rotate(180deg);
}

.message-content {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.message-content p {
  margin: 0;
}

.message-content a {
  color: var(--purple-400);
  text-decoration: underline;
  transition: color var(--transition-base);
}

.message-content a:hover {
  color: var(--purple-300);
}

.chatbot-typing .message-content {
  padding: 16px;
}

.typing-indicator {
  display: flex;
  gap: 6px;
  align-items: center;
}

.typing-indicator span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple-400);
  animation: typingBounce 1.4s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingBounce {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  30% {
    transform: translateY(-10px);
    opacity: 1;
  }
}

.chatbot-input-container {
  padding: 20px;
  border-top: 1px solid var(--border-color);
  background: var(--bg-secondary);
}

.chatbot-form {
  display: flex;
  gap: 12px;
  align-items: center;
}

.chatbot-input {
  flex: 1;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 14px;
  font-family: var(--font-main);
  outline: none;
  transition: all var(--transition-base);
}

.chatbot-input:focus {
  border-color: var(--purple-400);
  box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
}

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

.chatbot-send {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gradient-purple);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.chatbot-send:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(147, 51, 234, 0.4);
}

.chatbot-send:active {
  transform: scale(0.95);
}

.chatbot-send svg {
  width: 20px;
  height: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .chatbot-container {
    bottom: 0;
    right: 0;
    padding: 16px;
  }

  .chatbot-toggle {
    width: 56px;
    height: 56px;
  }

  .chatbot-toggle svg {
    width: 24px;
    height: 24px;
  }

  .chatbot-toggle .chatbot-logo {
    width: 48px;
    height: 48px;
  }

  .chatbot-window {
    width: calc(100vw - 32px);
    max-width: 420px;
    height: calc(100vh - 80px);
    max-height: calc(100vh - 80px);
  }

  .chatbot-message-user .message-content,
  .chatbot-message-bot .message-content {
    max-width: 85%;
  }
}

@media (max-width: 480px) {
  .chatbot-window {
    width: calc(100vw - 16px);
    border-radius: 16px;
  }

  .chatbot-header {
    padding: 16px;
  }

  .chatbot-messages {
    padding: 16px;
  }

  .chatbot-input-container {
    padding: 16px;
  }
}

/* ============================================
   Pillar Pages (Secure / Monitor / Respond / Advise)
   ============================================ */
.pillar-hero {
  padding: 170px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.pillar-hero .container {
  max-width: 880px;
}

.pillar-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  margin-bottom: 26px;
}

.pillar-hero-badge .pillar-emoji {
  font-size: 18px;
  line-height: 1;
}

.pillar-hero h1 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 22px;
  color: var(--text-primary);
}

.pillar-hero p {
  font-size: 19px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 auto 34px;
  max-width: 700px;
}

.pillar-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.pillar-hero-actions .btn-primary,
.pillar-hero-actions .btn-secondary,
.solutions-cta .cta-actions .btn-primary,
.solutions-cta .cta-actions .btn-secondary,
.services-category .solutions-hero-actions .btn-primary,
.solutions-hero-centered .solutions-hero-actions .btn-primary {
  justify-content: center;
  text-align: center;
}

/* Intro */
.pillar-intro {
  padding: 30px 0 10px;
}

.pillar-intro .container {
  max-width: 940px;
  text-align: center;
}

.pillar-intro h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--text-primary);
}

.pillar-intro p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.pillar-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 36px;
}

.pillar-jump a {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: all var(--transition-base);
}

.pillar-jump a:hover {
  color: var(--text-primary);
  border-color: var(--purple-500);
  transform: translateY(-2px);
}

/* Alternating service sections */
.pillar-services {
  padding: 30px 0 40px;
}

.pillar-service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 84px 0;
  scroll-margin-top: 90px;
}

.pillar-service + .pillar-service {
  border-top: 1px solid var(--border-color);
}

.pillar-service.reverse .pillar-service-media {
  order: 2;
}

.pillar-service.reverse .pillar-service-body {
  order: 1;
}

.pillar-service-body .section-tag {
  display: inline-block;
  margin-bottom: 14px;
}

.pillar-service-body h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--text-primary);
}

.pillar-service-overview {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 30px;
}

.pillar-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.pillar-block h4,
.pillar-why h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--purple-400);
  margin-bottom: 14px;
  font-weight: 600;
}

.pillar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pillar-list li {
  display: flex;
  gap: 10px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pillar-list li svg {
  width: 18px;
  height: 18px;
  stroke: var(--purple-400);
  flex-shrink: 0;
  margin-top: 2px;
}

.pillar-why {
  margin-bottom: 28px;
  padding: 20px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
}

.pillar-why p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.pillar-service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--purple-300);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: gap var(--transition-base);
}

.pillar-service-cta:hover {
  gap: 14px;
}

.pillar-service-cta svg {
  width: 18px;
  height: 18px;
}

/* Media panel / illustration */
.pillar-service-media {
  display: flex;
  justify-content: center;
}

.pillar-media-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 0.8;
  border-radius: 24px;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pillar-media-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.3;
}

.pillar-media-glow {
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: var(--gradient-purple);
  filter: blur(64px);
  opacity: 0.4;
}

.pillar-media-icon {
  position: relative;
  width: 128px;
  height: 128px;
  stroke: #fff;
  z-index: 1;
}

.pillar-media-index {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-muted);
  z-index: 1;
}

@media (max-width: 900px) {
  .pillar-hero h1 {
    font-size: 42px;
  }

  .pillar-service {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 56px 0;
  }

  .pillar-service.reverse .pillar-service-media,
  .pillar-service.reverse .pillar-service-body {
    order: 0;
  }

  .pillar-cols {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .pillar-media-card {
    max-width: 380px;
  }
}