/* =========================================
   NeuraX AI Template - Custom Styles
   =========================================
   All custom styles that complement Tailwind
   ========================================= */

/* CSS Variables */
:root {
  --primary-gradient: linear-gradient(135deg, #0c8ee6 0%, #d946ef 50%, #06b6d4 100%);
  --secondary-gradient: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  --dark-gradient: linear-gradient(135deg, #0d0e10 0%, #1a1b1e 50%, #0d0e10 100%);
  --neon-blue: #00d4ff;
  --neon-purple: #a855f7;
  --neon-pink: #ec4899;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
}

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

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: #0d0e10;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

/* =========================================
   Header & Navigation
   ========================================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 1rem 0;
}

.header.scrolled {
  background: rgba(13, 14, 16, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.75rem 0;
}

.header.scrolled .logo {
  transform: scale(0.9);
}

/* Logo Animation */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: var(--primary-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.logo-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  filter: blur(10px);
  opacity: 0.5;
}

.logo-icon svg {
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 1;
}

/* Navigation Styles */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  color: #9fa2a9;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.nav-item > a:hover,
.nav-item > a.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.nav-item > a svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.nav-item:hover > a svg {
  transform: rotate(180deg);
}

/* Dropdown Menu Styles */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  padding: 1rem 0;
  background: rgba(26, 27, 30, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.nav-item:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  color: #9fa2a9;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dropdown-menu a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  padding-left: 2rem;
}

.dropdown-menu a svg {
  width: 20px;
  height: 20px;
  color: var(--neon-blue);
}

.dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0.5rem 1rem;
}

/* Mega Menu */
.mega-menu {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: 90%;
  max-width: 1200px;
  padding: 2rem;
  background: rgba(26, 27, 30, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
}

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

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.mega-menu-column {
  padding: 0 1rem;
}

.mega-menu-column h4 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--neon-blue);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mega-menu-column a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  color: #9fa2a9;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mega-menu-column a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.mega-menu-column a span {
  font-size: 0.75rem;
  color: var(--neon-purple);
  background: rgba(168, 85, 247, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 0.25rem;
}

.mega-menu-featured {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mega-menu-featured h4 {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0.5rem;
}

.mega-menu-featured p {
  font-size: 0.875rem;
  color: #7a7e87;
  margin-bottom: 1rem;
}

.mega-menu-featured .featured-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--primary-gradient);
  color: white;
  font-weight: 600;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mega-menu-featured .featured-link:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(12, 142, 230, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(13, 14, 16, 0.99);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-close {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-nav-close:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.mobile-nav-menu {
  padding: 1.5rem;
  list-style: none;
}

.mobile-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-nav-item > a:hover {
  color: var(--neon-blue);
}

.mobile-nav-item > a svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.mobile-nav-item.active > a svg {
  transform: rotate(180deg);
}

.mobile-submenu {
  display: none;
  padding: 0.5rem 0 1rem 1rem;
  list-style: none;
}

.mobile-nav-item.active .mobile-submenu {
  display: block;
}

.mobile-submenu a {
  display: block;
  padding: 0.75rem 0;
  color: #9fa2a9;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-submenu a:hover {
  color: var(--neon-blue);
  padding-left: 0.5rem;
}

.mobile-nav-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 8rem 0 4rem;
}

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

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(12, 142, 230, 0.15), transparent),
              radial-gradient(ellipse 60% 40% at 80% 20%, rgba(217, 70, 239, 0.1), transparent),
              radial-gradient(ellipse 50% 30% at 20% 80%, rgba(6, 182, 212, 0.1), transparent);
}

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

.hero-orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 6s ease-in-out infinite;
}

.hero-orb:nth-child(1) {
  width: 400px;
  height: 400px;
  background: rgba(12, 142, 230, 0.3);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.hero-orb:nth-child(2) {
  width: 300px;
  height: 300px;
  background: rgba(217, 70, 239, 0.2);
  bottom: -50px;
  left: -50px;
  animation-delay: 2s;
}

.hero-orb:nth-child(3) {
  width: 200px;
  height: 200px;
  background: rgba(6, 182, 212, 0.2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  font-size: 0.875rem;
  color: #9fa2a9;
  margin-bottom: 2rem;
  animation: slideUp 0.8s ease-out;
}

.hero-badge-icon {
  width: 28px;
  height: 28px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-badge span {
  color: var(--neon-blue);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: slideUp 0.8s ease-out 0.1s both;
}

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

.hero-description {
  font-size: 1.25rem;
  color: #9fa2a9;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  animation: slideUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: slideUp 0.8s ease-out 0.3s both;
}

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

/* Primary Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--primary-gradient);
  color: white;
  font-weight: 600;
  border-radius: 0.875rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(12, 142, 230, 0.4);
}

.btn-primary svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(5px);
}

/* Secondary Button */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-weight: 600;
  border-radius: 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.btn-secondary svg {
  width: 20px;
  height: 20px;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  animation: slideUp 0.8s ease-out 0.4s both;
}

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

.hero-stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: #7a7e87;
  margin-top: 0.25rem;
}

/* Hero Image */
.hero-image {
  position: relative;
  margin-top: 4rem;
  animation: slideUp 0.8s ease-out 0.5s both;
}

.hero-image-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 100px rgba(0, 0, 0, 0.5);
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(13, 14, 16, 0.9) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-image-wrapper img {
  width: 100%;
  display: block;
}

/* Hero Floating Elements */
.hero-float {
  position: absolute;
  background: rgba(26, 27, 30, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 4s ease-in-out infinite;
  z-index: 2;
}

.hero-float:nth-child(2) {
  animation-delay: 1s;
}

.hero-float:nth-child(3) {
  animation-delay: 2s;
}

.hero-float-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-gradient);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-float-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.hero-float-content h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.hero-float-content p {
  font-size: 0.75rem;
  color: #7a7e87;
}

/* =========================================
   Section Styles
   ========================================= */

.section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(12, 142, 230, 0.1);
  border: 1px solid rgba(12, 142, 230, 0.2);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--neon-blue);
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: #9fa2a9;
}

/* =========================================
   Feature Cards
   ========================================= */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.feature-card {
  position: relative;
  padding: 2rem;
  background: rgba(26, 27, 30, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1.5rem;
  transition: all 0.5s ease;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12, 142, 230, 0.1), rgba(217, 70, 239, 0.05));
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(12, 142, 230, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-gradient);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  transition: transform 0.5s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  color: white;
}

.feature-card h3 {
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.feature-card p {
  color: #9fa2a9;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.feature-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: var(--neon-blue);
  font-weight: 600;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: gap 0.3s ease;
}

.feature-card-link:hover {
  gap: 0.75rem;
}

/* =========================================
   Services Section
   ========================================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  position: relative;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(26, 27, 30, 0.8), rgba(26, 27, 30, 0.4));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1.5rem;
  transition: all 0.5s ease;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

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

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.service-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(12, 142, 230, 0.1);
  border: 1px solid rgba(12, 142, 230, 0.2);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.5s ease;
}

.service-card:hover .service-icon {
  background: var(--primary-gradient);
  border-color: transparent;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--neon-blue);
  transition: color 0.5s ease;
}

.service-card:hover .service-icon svg {
  color: white;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: #9fa2a9;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-tag {
  padding: 0.375rem 0.875rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2rem;
  font-size: 0.75rem;
  color: #7a7e87;
}

/* =========================================
   Stats Section
   ========================================= */

.stats-section {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(12, 142, 230, 0.1), rgba(217, 70, 239, 0.05));
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
}

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

.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: #9fa2a9;
  margin-top: 0.5rem;
}

/* =========================================
   Team Section
   ========================================= */

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.team-card {
  position: relative;
  background: rgba(26, 27, 30, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1.5rem;
  overflow: hidden;
  transition: all 0.5s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  border-color: rgba(12, 142, 230, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.team-image {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13, 14, 16, 0.95) 100%);
}

.team-social {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.team-card:hover .team-social {
  opacity: 1;
  transform: translateY(0);
}

.team-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: var(--primary-gradient);
  border-color: transparent;
  transform: translateY(-3px);
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.team-info p {
  color: var(--neon-blue);
  font-size: 0.875rem;
}

/* =========================================
   Testimonials
   ========================================= */

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  position: relative;
  padding: 2.5rem;
  background: rgba(26, 27, 30, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1.5rem;
  margin: 1rem;
}

.testimonial-quote {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 4rem;
  font-family: serif;
  color: rgba(12, 142, 230, 0.2);
  line-height: 1;
}

.testimonial-content {
  font-size: 1.125rem;
  color: #e2e3e5;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(12, 142, 230, 0.3);
}

.testimonial-author-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.testimonial-author-info p {
  font-size: 0.875rem;
  color: #7a7e87;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-left: auto;
}

.testimonial-rating svg {
  width: 18px;
  height: 18px;
  color: #facc15;
}

/* =========================================
   Pricing Section
   ========================================= */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  padding: 2.5rem;
  background: rgba(26, 27, 30, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1.5rem;
  transition: all 0.5s ease;
}

.pricing-card.featured {
  background: linear-gradient(135deg, rgba(12, 142, 230, 0.1), rgba(217, 70, 239, 0.05));
  border-color: rgba(12, 142, 230, 0.3);
  transform: scale(1.05);
  overflow: unset;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: rgba(12, 142, 230, 0.3);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 1.5rem;
  background: var(--primary-gradient);
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pricing-header p {
  font-size: 0.875rem;
  color: #7a7e87;
  margin-bottom: 1.5rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.pricing-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: #9fa2a9;
}

.pricing-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}

.pricing-period {
  font-size: 1rem;
  color: #7a7e87;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: #c4c6ca;
}

.pricing-features li svg {
  width: 20px;
  height: 20px;
  color: var(--neon-blue);
  flex-shrink: 0;
}

.pricing-features li.disabled {
  color: #5f636c;
}

.pricing-features li.disabled svg {
  color: #5f636c;
}

.pricing-cta {
  display: block;
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.875rem;
  color: white;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pricing-cta:hover {
  background: rgba(255, 255, 255, 0.1);
}

.pricing-card.featured .pricing-cta {
  background: var(--primary-gradient);
  border-color: transparent;
}

.pricing-card.featured .pricing-cta:hover {
  box-shadow: 0 10px 30px rgba(12, 142, 230, 0.3);
}

/* =========================================
   Blog Section
   ========================================= */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.blog-card {
  position: relative;
  background: rgba(26, 27, 30, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1.5rem;
  overflow: hidden;
  transition: all 0.5s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card:hover {
  transform: translateY(-10px);
  border-color: rgba(12, 142, 230, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.blog-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.375rem 1rem;
  background: var(--primary-gradient);
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
}

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #7a7e87;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-content h3 {
  color: var(--neon-blue);
}

.blog-content p {
  color: #9fa2a9;
  line-height: 1.7;
}

/* =========================================
   CTA Section
   ========================================= */

.cta-section {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(12, 142, 230, 0.15), rgba(217, 70, 239, 0.1));
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}

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

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.125rem;
  color: #9fa2a9;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.footer {
  position: relative;
  padding: 5rem 0 2rem;
  background: linear-gradient(180deg, rgba(26, 27, 30, 0.5), rgba(13, 14, 16, 1));
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: #9fa2a9;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9fa2a9;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary-gradient);
  border-color: transparent;
  color: white;
  transform: translateY(-3px);
}

.footer-column h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #9fa2a9;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  padding-left: 0.5rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: #7a7e87;
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: #7a7e87;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: white;
}

/* =========================================
   Page Header
   ========================================= */

.page-header {
  position: relative;
  padding: 10rem 0 5rem;
  background: linear-gradient(135deg, rgba(12, 142, 230, 0.1), rgba(217, 70, 239, 0.05));
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, black, transparent);
  -webkit-mask-image: linear-gradient(180deg, black, transparent);
}

.page-header-content {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: #7a7e87;
}

.page-breadcrumb a {
  color: #9fa2a9;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-breadcrumb a:hover {
  color: var(--neon-blue);
}

.page-breadcrumb svg {
  width: 16px;
  height: 16px;
}

.page-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-description {
  font-size: 1.125rem;
  color: #9fa2a9;
}

/* =========================================
   Responsive Design
   ========================================= */

@media (max-width: 1200px) {
  .mega-menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }

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

  .mobile-nav {
    display: block;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .hero-stat {
    flex: 1 1 150px;
  }

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

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }

  .hero {
    padding: 7rem 0 3rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .features-grid,
  .services-grid,
  .team-grid,
  .blog-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-social {
    justify-content: center;
  }

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

  .footer-bottom-links {
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-stat-value {
    font-size: 2rem;
  }

  .stat-value {
    font-size: 2.5rem;
  }

  .pricing-amount {
    font-size: 3rem;
  }

  .page-header {
    padding: 8rem 0 3rem;
  }
}

/* =========================================
   Utilities
   ========================================= */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

/* Scroll to top button */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  border: none;
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(12, 142, 230, 0.4);
}

.scroll-top svg {
  width: 24px;
  height: 24px;
  color: white;
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  background: #0d0e10;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-spinner {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--neon-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Marquee */
.marquee-section {
  padding: 2rem 0;
  background: rgba(26, 27, 30, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.marquee-wrapper {
  display: flex;
  animation: marquee 30s linear infinite;
}

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

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.15);
}

.marquee-item svg {
  width: 24px;
  height: 24px;
}

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

/* Particles Background (if using) */
.particles-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(12, 142, 230, 0.5);
  border-radius: 50%;
  animation: float-particle 20s infinite linear;
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-10vh) scale(1);
    opacity: 0;
  }
}

/* =========================================
   New Footer Styles - Large & Attractive
   ========================================= */

.footer-new {
  position: relative;
  background: linear-gradient(180deg, #0a0b0d 0%, #0d0e10 50%, #080909 100%);
  overflow: hidden;
}

/* Footer Background Elements */
.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

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

.footer-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(12, 142, 230, 0.3) 0%, transparent 70%);
  top: -200px;
  left: -200px;
  animation: footer-orb-float 20s ease-in-out infinite;
}

.footer-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.25) 0%, transparent 70%);
  bottom: -150px;
  right: -150px;
  animation: footer-orb-float 25s ease-in-out infinite reverse;
}

@keyframes footer-orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -20px) scale(1.05); }
  50% { transform: translate(-20px, 30px) scale(0.95); }
  75% { transform: translate(20px, 20px) scale(1.02); }
}

.footer-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.5) 20%, rgba(0,0,0,0.5) 80%, transparent 100%);
}

/* Footer CTA Section */
.footer-cta {
  position: relative;
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-cta-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.footer-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(12, 142, 230, 0.1);
  border: 1px solid rgba(12, 142, 230, 0.3);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: #0c8ee6;
  margin-bottom: 20px;
}

.footer-cta-badge svg {
  color: #10b981;
}

.footer-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #fff;
}

.footer-cta-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-input-group {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 4px;
  transition: all 0.3s ease;
}

.footer-input-group:focus-within {
  border-color: rgba(12, 142, 230, 0.5);
  box-shadow: 0 0 0 4px rgba(12, 142, 230, 0.1);
}

.footer-input-group svg {
  position: absolute;
  left: 20px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-input-group input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 16px 20px 16px 50px;
  font-size: 16px;
  color: #fff;
  outline: none;
}

.footer-input-group input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer-subscribe-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 32px;
  background: linear-gradient(135deg, #0c8ee6 0%, #0070cc 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(12, 142, 230, 0.3);
}

.footer-subscribe-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(12, 142, 230, 0.4);
}

.footer-subscribe-btn svg {
  transition: transform 0.3s ease;
}

.footer-subscribe-btn:hover svg {
  transform: translateX(4px);
}

.footer-form-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-form-note svg {
  color: #10b981;
}

/* Footer Main Section */
.footer-main {
  position: relative;
  padding: 80px 0 60px;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
}

/* Footer Brand Column */
.footer-brand-column {
  max-width: 400px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 20px;
}

.footer-logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #0c8ee6 0%, #0070cc 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(12, 142, 230, 0.3);
}

.footer-logo-icon svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

.footer-logo span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
}

.footer-brand-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Footer Contact Info */
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

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

.footer-contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(12, 142, 230, 0.1);
  border: 1px solid rgba(12, 142, 230, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-contact-icon svg {
  color: #0c8ee6;
}

.footer-contact-item div span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}

.footer-contact-item div p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Footer Social Links */
.footer-social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-social-links > span {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-social-icons {
  display: flex;
  gap: 10px;
}

.footer-social-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-icon:hover {
  background: linear-gradient(135deg, #0c8ee6 0%, #0070cc 100%);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(12, 142, 230, 0.3);
}

/* Footer Links Wrapper */
.footer-links-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-links-column h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-links-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #0c8ee6, transparent);
  border-radius: 2px;
}

.footer-links-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-column ul li {
  margin-bottom: 14px;
}

.footer-links-column ul li:last-child {
  margin-bottom: 0;
}

.footer-links-column ul li a {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links-column ul li a span {
  position: relative;
}

.footer-links-column ul li a span::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #0c8ee6;
  transition: width 0.3s ease;
}

.footer-links-column ul li a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-links-column ul li a:hover span::after {
  width: 100%;
}

/* Footer Awards Section */
.footer-awards {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-awards-title {
  text-align: center;
  margin-bottom: 30px;
}

.footer-awards-title span {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-awards-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.footer-award-item {
  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.06);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.footer-award-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(12, 142, 230, 0.3);
  transform: translateY(-2px);
}

.footer-award-item svg {
  color: #0c8ee6;
}

.footer-award-item span {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

/* Footer Bottom Section */
.footer-bottom-new {
  position: relative;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copyright-new p {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-copyright-new .heart-icon {
  color: #ef4444;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.footer-bottom-links-new {
  display: flex;
  align-items: center;
  gap: 30px;
}

.footer-bottom-links-new a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links-new a:hover {
  color: #0c8ee6;
}

.locale-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.3s ease;
}

.locale-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* Footer Responsive Styles */
@media (max-width: 1200px) {
  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .footer-brand-column {
    max-width: 100%;
  }

  .footer-links-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .footer-cta-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-cta-title {
    font-size: 2rem;
  }

  .footer-links-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-awards-logos {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .footer-cta {
    padding: 60px 0;
  }

  .footer-cta-title {
    font-size: 1.75rem;
  }

  .footer-main {
    padding: 60px 0 40px;
  }

  .footer-contact-info {
    flex-direction: column;
    gap: 16px;
  }

  .footer-awards-logos {
    flex-direction: column;
    gap: 12px;
  }

  .footer-award-item {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer-bottom-links-new {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

@media (max-width: 576px) {
  .footer-cta {
    padding: 40px 0;
  }

  .footer-cta-title {
    font-size: 1.5rem;
  }

  .footer-cta-badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .footer-links-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-social-icons {
    justify-content: center;
  }

  .footer-main {
    padding: 40px 0 30px;
  }
}

/* =========================================
   Neural Network Page - Unique Sections
   ========================================= */

/* Section 1: Neural Network Visualization */
.neural-viz-section {
  position: relative;
}

.neural-network-demo {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.nn-visualization {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  min-height: 400px;
}

.nn-layer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.nn-layer-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
}

.nn-nodes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nn-node {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7877c6, #a855f7);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: nn-node-pulse 2s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.nn-node.nn-hidden {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #a855f7, #ec4899);
}

.nn-node.nn-output {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #ec4899, #f472b6);
}

.nn-node-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  animation: nn-pulse-ring 2s ease-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes nn-node-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes nn-pulse-ring {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.8); opacity: 0; }
}

.nn-connections {
  width: 60px;
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nn-data-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a855f7;
  box-shadow: 0 0 15px #a855f7;
  animation: nn-particle-flow 2s ease-in-out infinite;
}

@keyframes nn-particle-flow {
  0% { left: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

.nn-info-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nn-info-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.nn-info-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(120, 119, 198, 0.3);
  transform: translateX(5px);
}

.nn-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nn-info-icon svg {
  color: #fff;
}

.nn-info-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.nn-info-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* Section 2: Process Timeline */
.process-timeline {
  position: relative;
  margin-top: 60px;
  padding: 0 20px;
}

.process-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #7877c6, #a855f7, #ec4899, #06b6d4, #10b981);
  transform: translateX(-50%);
}

.process-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 60px;
  position: relative;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.process-step:nth-child(even) .process-card {
  text-align: right;
}

.process-step:nth-child(even) .process-card .process-tags {
  justify-content: flex-end;
}

.process-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.process-number {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}

.process-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7877c6, #a855f7);
  border: 4px solid #0d0e12;
}

.process-card {
  width: calc(50% - 60px);
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.process-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent);
  transform: translateY(-5px);
}

.process-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.process-icon svg {
  color: var(--accent);
}

.process-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.process-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 16px;
}

.process-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.process-tags span {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

/* Section 3: Hexagon Grid */
.neural-types-section {
  overflow: hidden;
}

.neural-types-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.hex-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='70' viewBox='0 0 60 70' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 17.5v35L30 70 0 52.5v-35L30 0z' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 70px;
  opacity: 0.5;
}

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

.hex-card {
  position: relative;
  aspect-ratio: 1;
  cursor: pointer;
}

.hex-card.hex-large {
  grid-column: span 2;
  grid-row: span 2;
}

.hex-inner {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.4s ease;
  overflow: hidden;
}

.hex-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--hex-color);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hex-card:hover .hex-inner {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--hex-color);
  transform: translateY(-8px);
}

.hex-card:hover .hex-inner::before {
  opacity: 1;
}

.hex-icon {
  margin-bottom: 20px;
  color: var(--hex-color);
}

.hex-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.hex-card.hex-large h3 {
  font-size: 32px;
}

.hex-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
}

.hex-tag {
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--hex-color);
}

.hex-stats {
  display: flex;
  gap: 30px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hex-stats div {
  text-align: center;
}

.hex-stats strong {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--hex-color);
}

.hex-stats span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* Section 4: Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 24px;
  margin-top: 60px;
}

.bento-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s ease;
}

.bento-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
}

.bento-card.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-card.bento-tall {
  grid-row: span 2;
}

.bento-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bento-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  transition: all 0.4s ease;
}

.bento-card:hover .bento-bg img {
  opacity: 0.4;
  transform: scale(1.05);
}

.bento-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
}

.bento-content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bento-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--card-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.bento-icon svg {
  color: #fff;
}

.bento-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.bento-card.bento-large h3 {
  font-size: 28px;
}

.bento-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.bento-stats {
  display: flex;
  gap: 20px;
  margin-top: 16px;
}

.bento-stats span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.bento-stats strong {
  color: #fff;
}

.bento-list {
  list-style: none;
  margin-top: 16px;
}

.bento-list li {
  padding: 8px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.bento-list li::before {
  content: '→';
  color: #ec4899;
}

/* Section 5: Pipeline Flow */
.neural-pipeline-section {
  position: relative;
}

.pipeline-bg-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.pipeline-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(16, 185, 129, 0.1);
}

.pipeline-circle-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -200px;
}

.pipeline-circle-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
}

.pipeline-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(16, 185, 129, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
}

.pipeline-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  padding: 40px 20px;
  position: relative;
}

.pipeline-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
}

.pipeline-stage-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--stage-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.pipeline-stage:hover .pipeline-stage-icon {
  background: var(--stage-color);
  transform: scale(1.1);
}

.pipeline-stage-icon svg {
  color: var(--stage-color);
  transition: color 0.3s ease;
}

.pipeline-stage:hover .pipeline-stage-icon svg {
  color: #fff;
}

.pipeline-stage-content h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pipeline-stage-content p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 140px;
}

.pipeline-connector {
  position: absolute;
  right: -20px;
  top: 40px;
  width: 40px;
  height: 20px;
  z-index: 1;
}

.pipeline-connector svg {
  width: 100%;
  height: 100%;
}

.pipeline-stage-final .pipeline-stage-icon {
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.3);
}

/* Section 6: Performance Dashboard */
.perf-dashboard {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  margin-top: 60px;
}

.perf-main-stat {
  display: flex;
  align-items: center;
  justify-content: center;
}

.perf-ring {
  position: relative;
  width: 240px;
  height: 240px;
}

.perf-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.perf-ring-progress {
  transition: stroke-dashoffset 1.5s ease-out;
}

.perf-ring-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.perf-ring-value {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, #7877c6, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.perf-ring-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
}

.perf-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.perf-metric-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.perf-metric-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-3px);
}

.perf-metric-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.perf-metric-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.perf-metric-name {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.perf-metric-value {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}

.perf-metric-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 12px;
}

.perf-metric-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 1s ease-out;
}

.perf-metric-compare {
  font-size: 12px;
  color: #10b981;
}

.perf-comparison {
  grid-column: span 2;
  margin-top: 20px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
}

.perf-comparison h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
}

.perf-comparison-bars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.comparison-label {
  width: 140px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
}

.comparison-bar-wrapper {
  flex: 1;
  height: 32px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.comparison-bar {
  height: 100%;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 12px;
  font-size: 14px;
  font-weight: 700;
  transition: width 1s ease-out;
}

.comparison-bar-muted {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

/* Section 7: Research Grid */
.research-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.research-particles .particle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  background: #8b5cf6;
  border-radius: 50%;
  animation: float-particle var(--duration) ease-in-out infinite;
}

.research-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-top: 60px;
}

.research-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.research-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-5px);
}

.research-card.research-featured {
  grid-row: span 3;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.05));
  border-color: rgba(139, 92, 246, 0.2);
}

.research-card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 14px;
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

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

.research-icon {
  width: 60px;
  height: 60px;
  background: rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b5cf6;
}

.research-icon.small {
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.research-date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.research-card h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 16px;
}

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

.research-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.research-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.research-authors {
  display: flex;
  align-items: center;
}

.research-authors img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #0d0e12;
  margin-left: -8px;
}

.research-authors img:first-child {
  margin-left: 0;
}

.research-authors span {
  margin-left: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.research-stats {
  display: flex;
  gap: 16px;
}

.research-stats span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.research-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #8b5cf6;
  text-decoration: none;
  transition: all 0.3s ease;
}

.research-link:hover {
  color: #a855f7;
  gap: 12px;
}

/* Research Featured Card Extended Styles */
.research-highlights {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.research-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(139, 92, 246, 0.08);
  border-radius: 10px;
  border-left: 3px solid #8b5cf6;
  transition: all 0.3s ease;
}

.research-highlight-item:hover {
  background: rgba(139, 92, 246, 0.12);
  transform: translateX(4px);
}

.research-highlight-item .highlight-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.research-highlight-item span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.research-metrics {
  display: flex;
  gap: 20px;
  margin: 24px 0;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 14px;
  border: 1px solid rgba(139, 92, 246, 0.15);
}

.research-metric {
  flex: 1;
  text-align: center;
  padding: 16px 12px;
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.1) 0%, rgba(168, 85, 247, 0.05) 100%);
  border-radius: 12px;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.research-metric .metric-value {
  display: block;
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.research-metric .metric-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.research-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.research-tag {
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  transition: all 0.3s ease;
}

.research-tag:hover {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.3);
  color: #a855f7;
}

.research-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.research-link.primary {
  padding: 12px 24px;
  background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
  border-radius: 10px;
  color: #fff;
  margin-top: 0;
}

.research-link.primary:hover {
  background: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

.research-link.secondary {
  padding: 12px 24px;
  background: transparent;
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-radius: 10px;
  color: #a855f7;
  margin-top: 0;
}

.research-link.secondary:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: #a855f7;
}

.research-featured .research-meta {
  flex-wrap: wrap;
  gap: 16px;
}

.research-featured .research-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .research-metrics {
    flex-direction: column;
    gap: 12px;
  }

  .research-actions {
    flex-direction: column;
  }

  .research-link.primary,
  .research-link.secondary {
    justify-content: center;
  }
}

/* Section 8: Success Stories */
.success-showcase {
  margin-top: 60px;
}

.success-card {
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  transition: all 0.3s ease;
  position: relative;
}

.success-card:hover {
  background: rgba(255, 255, 255, 0.05);
}

.success-card.success-highlight {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.1), rgba(6, 182, 212, 0.05));
  border-color: rgba(34, 211, 238, 0.2);
  margin-bottom: 24px;
}

.success-quote-icon {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #22d3ee;
}

.success-content {
  max-width: 700px;
}

.success-quote {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 30px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
}

.success-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.success-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid rgba(34, 211, 238, 0.3);
}

.success-author h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.success-author span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.success-metrics {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.success-metric {
  text-align: center;
}

.success-metric-value {
  display: block;
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #22d3ee, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.success-metric-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

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

.success-grid .success-card {
  padding: 30px;
}

.success-grid .success-quote {
  font-size: 15px;
  margin-bottom: 20px;
}

.success-grid .success-author img {
  width: 44px;
  height: 44px;
}

.success-logo {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.5);
}

.success-cta {
  text-align: center;
  margin-top: 60px;
  padding: 60px;
  background: linear-gradient(135deg, rgba(120, 119, 198, 0.1), rgba(168, 85, 247, 0.05));
  border: 1px solid rgba(120, 119, 198, 0.2);
  border-radius: 24px;
}

.success-cta h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.success-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 30px;
}

/* Responsive Styles for Neural Sections */
@media (max-width: 1200px) {
  .neural-network-demo {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hex-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .perf-dashboard {
    grid-template-columns: 1fr;
  }

  .perf-main-stat {
    margin-bottom: 20px;
  }

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

  .research-card.research-featured {
    grid-row: auto;
  }
}

@media (max-width: 992px) {
  .process-line {
    left: 30px;
  }

  .process-step,
  .process-step:nth-child(even) {
    flex-direction: column;
    padding-left: 80px;
  }

  .process-marker {
    left: 30px;
  }

  .process-card,
  .process-step:nth-child(even) .process-card {
    width: 100%;
    text-align: left;
  }

  .process-step:nth-child(even) .process-card .process-tags {
    justify-content: flex-start;
  }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .bento-card.bento-large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .pipeline-flow {
    flex-wrap: wrap;
    gap: 30px;
  }

  .pipeline-stage {
    flex: 0 0 calc(33.333% - 20px);
  }

  .pipeline-connector {
    display: none;
  }

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

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

  .success-metrics {
    flex-wrap: wrap;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .nn-visualization {
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px;
  }

  .nn-layer {
    flex: 0 0 auto;
  }

  .nn-connections {
    display: none;
  }

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

  .hex-card.hex-large {
    grid-column: auto;
    grid-row: auto;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .bento-card.bento-large,
  .bento-card.bento-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .bento-content {
    padding: 24px;
  }

  .pipeline-stage {
    flex: 0 0 calc(50% - 15px);
  }

  .perf-metrics-grid {
    grid-template-columns: 1fr;
  }

  .perf-comparison {
    grid-column: auto;
  }

  .comparison-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .comparison-label {
    width: 100%;
  }

  .success-cta {
    padding: 40px 24px;
  }

  .success-cta h3 {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .pipeline-stage {
    flex: 0 0 100%;
  }

  .success-highlight .success-quote {
    font-size: 18px;
  }

  .success-metrics {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================================
   Enhanced Benchmark Comparison Styles
   ============================================ */

.perf-comparison-enhanced {
  background: linear-gradient(145deg, rgba(30, 32, 42, 0.95) 0%, rgba(20, 22, 32, 0.98) 100%);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(120, 119, 198, 0.2);
  position: relative;
  overflow: hidden;
}

.perf-comparison-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #7877c6, #a855f7, #ec4899);
}

.perf-comparison-fullwidth {
  width: 100%;
  margin-top: 50px;
  padding: 40px;
  border-radius: 24px;
}

.perf-comparison-fullwidth .comparison-items-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.perf-comparison-fullwidth .comparison-item-new {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px;
}

.perf-comparison-fullwidth .comparison-rank {
  margin-bottom: 16px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.perf-comparison-fullwidth .comparison-info {
  width: 100%;
}

.perf-comparison-fullwidth .comparison-info-top {
  flex-direction: column;
  gap: 8px;
}

.perf-comparison-fullwidth .comparison-model-name {
  font-size: 18px;
}

.perf-comparison-fullwidth .comparison-bar-new {
  flex-direction: column;
  gap: 10px;
}

.perf-comparison-fullwidth .comparison-bar-track {
  height: 14px;
  border-radius: 7px;
}

.perf-comparison-fullwidth .comparison-score {
  font-size: 28px;
  text-align: center;
}

.perf-comparison-fullwidth .comparison-meta {
  justify-content: center;
  margin-top: 12px;
}

.perf-comparison-fullwidth .comparison-footer {
  margin-top: 10px;
}

@media (max-width: 992px) {
  .perf-comparison-fullwidth .comparison-items-new {
    grid-template-columns: 1fr;
  }
}

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

.comparison-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.comparison-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(120, 119, 198, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a855f7;
}

.comparison-title-group h4 {
  margin: 0 0 4px 0;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.comparison-title-group p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.comparison-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.15) 0%, rgba(251, 191, 36, 0.1) 100%);
  border: 1px solid rgba(250, 204, 21, 0.3);
  padding: 8px 14px;
  border-radius: 20px;
  color: #fbbf24;
  font-size: 13px;
  font-weight: 600;
}

.comparison-badge svg {
  width: 14px;
  height: 14px;
}

.comparison-items-new {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.comparison-item-new {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.comparison-item-new:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.comparison-item-new.comparison-winner {
  background: linear-gradient(135deg, rgba(120, 119, 198, 0.1) 0%, rgba(168, 85, 247, 0.08) 100%);
  border-color: rgba(120, 119, 198, 0.3);
}

.comparison-rank {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #7877c6 0%, #a855f7 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.comparison-rank.rank-number {
  font-size: 18px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

.comparison-info {
  flex: 1;
}

.comparison-info-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.comparison-model-name {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.comparison-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-tag.tag-best {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(6, 182, 212, 0.15) 100%);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.comparison-tag.tag-open {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.comparison-tag.tag-avg {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-bar-new {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.comparison-bar-track {
  flex: 1;
  height: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  overflow: hidden;
}

.comparison-bar-fill {
  height: 100%;
  width: var(--width);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.15) 100%);
  border-radius: 5px;
  position: relative;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.comparison-bar-fill.winner-bar {
  background: linear-gradient(90deg, #7877c6 0%, #a855f7 50%, #ec4899 100%);
}

.bar-shimmer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  animation: shimmer 2s infinite;
}

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

.comparison-score {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  min-width: 60px;
  text-align: right;
}

.comparison-winner .comparison-score {
  background: linear-gradient(90deg, #7877c6, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.comparison-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.comparison-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.comparison-meta i {
  font-size: 10px;
  color: rgba(120, 119, 198, 0.6);
}

.comparison-footer {
  display: flex;
  justify-content: space-around;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.comparison-stat .stat-value {
  display: block;
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(90deg, #7877c6, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.comparison-stat .stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive adjustments for benchmark comparison */
@media (max-width: 576px) {
  .perf-comparison-enhanced {
    padding: 20px;
  }

  .comparison-header {
    flex-direction: column;
    gap: 14px;
  }

  .comparison-item-new {
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
  }

  .comparison-rank {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
  }

  .comparison-footer {
    flex-wrap: wrap;
    gap: 16px;
  }

  .comparison-stat {
    flex: 1 1 30%;
  }
}

/* ============================================
   Agency Page Sections Styles
   ============================================ */

/* Section 1: Agency Showcase */
.agency-showcase-section {
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0a0b0d 0%, #0d0e12 100%);
}

.showcase-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.showcase-gradient {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
}

.showcase-marquee {
  overflow: hidden;
  padding: 20px 0;
  margin: 0 -20px;
}

.showcase-marquee-reverse .showcase-track {
  animation-direction: reverse;
}

.showcase-track {
  display: flex;
  gap: 24px;
  animation: marquee 40s linear infinite;
  width: max-content;
}

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

.showcase-item {
  position: relative;
  width: 350px;
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.showcase-item:hover img {
  transform: scale(1.1);
}

.showcase-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.showcase-item:hover .showcase-overlay {
  transform: translateY(0);
  opacity: 1;
}

.showcase-category {
  font-size: 12px;
  color: #ec4899;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.showcase-overlay h4 {
  font-size: 18px;
  color: #fff;
  margin-top: 6px;
}

/* Section 2: Agency Process Timeline */
.agency-process-section {
  padding: 100px 0;
}

.agency-timeline {
  position: relative;
  max-width: 1000px;
  margin: 60px auto 0;
  padding: 20px 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(249, 115, 22, 0.5), rgba(236, 72, 153, 0.5), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 60px;
  box-sizing: border-box;
}

.timeline-item.timeline-left {
  left: 0;
  text-align: right;
  padding-right: 80px;
}

.timeline-item.timeline-right {
  left: 50%;
  text-align: left;
  padding-left: 80px;
}

.timeline-content {
  position: relative;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
}

.timeline-content:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(249, 115, 22, 0.3);
  transform: translateY(-5px);
}

.timeline-icon {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.timeline-left .timeline-icon {
  right: -108px;
  top: 30px;
}

.timeline-right .timeline-icon {
  left: -108px;
  top: 30px;
}

.timeline-number {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(236, 72, 153, 0.1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.timeline-content h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 12px;
}

.timeline-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 16px;
}

.timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: inherit;
}

.timeline-tags span {
  padding: 6px 12px;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 20px;
  font-size: 12px;
  color: #f97316;
}

/* Section 3: Team Creative */
.agency-team-section {
  padding: 100px 0;
}

.team-creative-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.team-card-creative {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
}

.team-card-creative:hover {
  transform: translateY(-10px);
  border-color: rgba(236, 72, 153, 0.3);
}

.team-card-creative.team-card-featured {
  grid-row: span 2;
}

.team-card-image {
  position: relative;
  overflow: hidden;
}

.team-card-creative .team-card-image {
  height: 280px;
}

.team-card-featured .team-card-image {
  height: 100%;
  min-height: 400px;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card-creative:hover .team-card-image img {
  transform: scale(1.1);
}

.team-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-card-creative:hover .team-card-overlay {
  opacity: 1;
}

.team-social {
  display: flex;
  gap: 12px;
}

.team-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: linear-gradient(135deg, #ec4899, #f97316);
  transform: translateY(-3px);
}

.team-card-info {
  padding: 24px;
}

.team-badge {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, #ec4899, #f97316);
  border-radius: 12px;
  font-size: 11px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.team-card-info h4 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 4px;
}

.team-card-info > span {
  font-size: 14px;
  color: #ec4899;
  display: block;
  margin-bottom: 10px;
}

.team-card-info p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.team-cta {
  text-align: center;
  margin-top: 50px;
}

.btn-outline-gradient {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 2px solid transparent;
  background: linear-gradient(#08090a, #08090a) padding-box, linear-gradient(135deg, #ec4899, #f97316) border-box;
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline-gradient:hover {
  background: linear-gradient(135deg, #ec4899, #f97316);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
}

/* Section 4: Clients */
.agency-clients-section {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

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

.clients-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.clients-glow-1 {
  width: 400px;
  height: 400px;
  background: rgba(236, 72, 153, 0.15);
  top: -100px;
  left: -100px;
}

.clients-glow-2 {
  width: 300px;
  height: 300px;
  background: rgba(249, 115, 22, 0.1);
  bottom: -50px;
  right: -50px;
}

.clients-header-new {
  position: relative;
  margin-bottom: 60px;
}

.clients-header-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.clients-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(236, 72, 153, 0.1);
  border: 1px solid rgba(236, 72, 153, 0.2);
  border-radius: 30px;
  margin-bottom: 24px;
}

.clients-badge-dot {
  width: 8px;
  height: 8px;
  background: #ec4899;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.clients-badge span {
  font-size: 13px;
  font-weight: 600;
  color: #ec4899;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.clients-title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.clients-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

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

.client-stat-card {
  position: relative;
  padding: 28px 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
  overflow: hidden;
}

.client-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ec4899, #f97316);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.client-stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(236, 72, 153, 0.3);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.client-stat-card:hover::before {
  opacity: 1;
}

.stat-card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(236, 72, 153, 0.05));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #ec4899;
}

.stat-card-content {
  margin-bottom: 16px;
}

.stat-card-number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.stat-card-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.stat-card-badge {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(236, 72, 153, 0.15);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: #ec4899;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Old styles kept for compatibility */
.clients-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 30px;
}

.clients-label {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
}

.clients-stats {
  display: flex;
  gap: 40px;
}

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

.client-stat .stat-number {
  display: block;
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, #ec4899, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.client-stat .stat-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.clients-marquee {
  overflow: hidden;
  padding: 30px 0;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.clients-track {
  display: flex;
  gap: 80px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.client-logo {
  height: 30px;
  opacity: 0.4;
  transition: opacity 0.3s ease;
  color: #fff;
}

.client-logo:hover {
  opacity: 1;
}

.client-logo-text {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  opacity: 0.5;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.client-logo-text:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(236, 72, 153, 0.3);
}

.client-logo-text svg {
  width: 24px;
  height: 24px;
  color: #fff;
  flex-shrink: 0;
}

.client-logo-text span {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

/* Section 5: Case Studies */
.agency-cases-section {
  padding: 100px 0;
}

.cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
}

.case-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
}

.case-card:hover {
  transform: translateY(-8px);
  border-color: rgba(249, 115, 22, 0.3);
}

.case-card-large {
  grid-column: 1;
  grid-row: span 2;
}

.case-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.case-card-large .case-image {
  height: 300px;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-card:hover .case-image img {
  transform: scale(1.08);
}

.case-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 9, 10, 0.95) 0%, transparent 60%);
}

.case-content {
  padding: 28px;
}

.case-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.case-industry {
  padding: 5px 12px;
  background: rgba(249, 115, 22, 0.15);
  border-radius: 20px;
  font-size: 12px;
  color: #f97316;
  font-weight: 600;
}

.case-year {
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.case-content h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 12px;
}

.case-card:not(.case-card-large) .case-content h3 {
  font-size: 18px;
}

.case-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 20px;
}

.case-results {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
}

.case-result {
  text-align: left;
}

.result-value {
  display: block;
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, #ec4899, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.result-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.case-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #f97316;
  text-decoration: none;
  transition: all 0.3s ease;
}

.case-link:hover {
  gap: 12px;
  color: #ec4899;
}

/* Case Card Extended Styles */
.case-badge-featured {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: linear-gradient(135deg, #ec4899, #f97316);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  z-index: 2;
}

.case-duration {
  padding: 5px 12px;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 20px;
  font-size: 12px;
  color: #10b981;
}

.case-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.case-highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.case-highlight-item svg {
  color: #10b981;
  flex-shrink: 0;
}

.case-card-large .case-results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 20px 0;
  padding: 20px;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.08), rgba(249, 115, 22, 0.05));
  border-radius: 14px;
  border: 1px solid rgba(236, 72, 153, 0.15);
}

.case-card-large .case-result {
  text-align: center;
  padding: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.case-card-large .case-result:last-child {
  border-right: none;
}

.case-tech-stack {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.tech-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.case-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-tech-tags span {
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.case-tech-tags span:hover {
  background: rgba(236, 72, 153, 0.1);
  border-color: rgba(236, 72, 153, 0.3);
  color: #ec4899;
}

.case-testimonial {
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  border-left: 3px solid #f97316;
  margin-bottom: 20px;
}

.case-testimonial p {
  font-size: 15px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author .author-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.testimonial-author .author-role {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .case-card-large .case-results {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-card-large .case-result {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .case-card-large .case-result:nth-child(3),
  .case-card-large .case-result:nth-child(4) {
    border-bottom: none;
  }
}

/* Section 6: Agency Stats */
.agency-stats-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.stats-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.stats-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(236, 72, 153, 0.1);
}

.stats-circle-1 {
  width: 500px;
  height: 500px;
  top: -200px;
  right: -100px;
}

.stats-circle-2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: -50px;
}

.stats-content {
  position: relative;
}

.stats-intro {
  max-width: 500px;
  margin-bottom: 50px;
}

.stats-intro h2 {
  font-size: 42px;
  color: #fff;
  margin: 16px 0;
}

.stats-intro p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

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

.stat-card-agency {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
}

.stat-card-agency:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(236, 72, 153, 0.3);
  transform: translateY(-5px);
}

.stat-ring {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
}

.stat-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.stat-ring-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 6;
}

.stat-ring-progress {
  fill: none;
  stroke: url(#agencyGradient);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: calc(283 - (283 * var(--progress)) / 100);
  transition: stroke-dashoffset 1.5s ease;
}

.stat-ring-value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.stat-info h4 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 8px;
}

.stat-info p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* Section 7: Projects Stack */
.agency-projects-section {
  padding: 100px 0;
}

.projects-stack {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 50px;
}

.project-stack-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
  align-items: center;
}

.project-stack-card:nth-child(even) {
  direction: rtl;
}

.project-stack-card:nth-child(even) > * {
  direction: ltr;
}

.project-stack-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(236, 72, 153, 0.3);
  transform: translateX(10px);
}

.project-stack-image {
  border-radius: 16px;
  overflow: hidden;
  height: 320px;
}

.project-stack-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-stack-card:hover .project-stack-image img {
  transform: scale(1.05);
}

.project-stack-number {
  font-size: 72px;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(249, 115, 22, 0.1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}

.project-stack-category {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(236, 72, 153, 0.1);
  border-radius: 20px;
  font-size: 12px;
  color: #ec4899;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.project-stack-content h3 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 16px;
}

.project-stack-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 20px;
}

.project-stack-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.project-stack-tech span {
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.project-stack-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #ec4899;
  text-decoration: none;
  transition: all 0.3s ease;
}

.project-stack-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.project-stack-link:hover::after {
  transform: translateX(5px);
}

.projects-cta {
  text-align: center;
  margin-top: 50px;
}

/* Section 8: Why Choose Us */
.agency-why-section {
  padding: 100px 0;
}

.why-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: start;
}

.why-intro h2 {
  font-size: 38px;
  color: #fff;
  margin: 16px 0 20px;
  line-height: 1.2;
}

.why-intro p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 30px;
}

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

.why-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(236, 72, 153, 0.2);
  transform: translateY(-5px);
}

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-card h4 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

/* Agency Responsive Styles */
@media (max-width: 1200px) {
  .why-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .timeline-line {
    left: 30px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 80px !important;
    padding-right: 20px !important;
    text-align: left !important;
  }

  .timeline-item.timeline-left,
  .timeline-item.timeline-right {
    left: 0;
  }

  .timeline-icon {
    left: 0 !important;
    right: auto !important;
  }

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

  .team-card-featured {
    grid-row: auto;
  }

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

  .case-card-large {
    grid-column: 1;
    grid-row: auto;
  }

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

  .project-stack-card {
    grid-template-columns: 1fr;
  }

  .project-stack-card:nth-child(even) {
    direction: ltr;
  }

  .project-stack-image {
    height: 250px;
  }

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

@media (max-width: 992px) {
  .clients-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .clients-header {
    flex-direction: column;
    text-align: center;
  }

  .clients-stats {
    justify-content: center;
  }

  .clients-title {
    font-size: 32px;
  }

  .clients-stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .client-stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
  }

  .stat-card-icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .stat-card-content {
    margin-bottom: 0;
    flex: 1;
  }

  .stat-card-number {
    font-size: 28px;
  }

  .stats-intro h2 {
    font-size: 32px;
  }

  .project-stack-content h3 {
    font-size: 22px;
  }

  .project-stack-number {
    font-size: 48px;
  }
}

@media (max-width: 576px) {
  .showcase-item {
    width: 280px;
    height: 180px;
  }

  .team-creative-grid {
    grid-template-columns: 1fr;
  }

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

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

  .timeline-tags {
    justify-content: flex-start;
  }
}

/* ==========================================
   CHATBOT SECTIONS STYLES
   ========================================== */

/* Section 1: Live Chat Demo */
.chatbot-demo-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.chatbot-demo-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.chatbot-demo-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.chatbot-demo-content p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 32px;
}

.demo-features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.demo-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.demo-feature-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(20, 184, 166, 0.2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.demo-feature-icon svg {
  color: #22c55e;
}

.demo-feature h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.demo-feature p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.chatbot-demo-window {
  position: relative;
}

.chat-window {
  background: linear-gradient(145deg, rgba(30, 30, 30, 0.95) 0%, rgba(20, 20, 20, 0.98) 100%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #22c55e 0%, #14b8a6 100%);
}

.chat-header-avatar {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-header-avatar svg {
  color: #fff;
}

.chat-header-info {
  flex: 1;
}

.chat-header-info h4 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.chat-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: statusPulse 2s ease-in-out infinite;
}

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

.chat-header-actions button {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 8px;
  padding: 8px;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s;
}

.chat-header-actions button:hover {
  background: rgba(255, 255, 255, 0.3);
}

.chat-messages {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 320px;
  max-height: 320px;
  overflow-y: auto;
}

.chat-message {
  display: flex;
  gap: 10px;
  max-width: 85%;
  animation: messageSlide 0.4s ease-out;
}

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

.chat-message.bot {
  align-self: flex-start;
}

.chat-message.user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.chat-message.user .message-avatar {
  display: none;
}

.message-avatar {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #22c55e 0%, #14b8a6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.message-avatar svg {
  width: 16px;
  height: 16px;
  color: #fff;
}

.message-content {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 12px 16px;
}

.chat-message.bot .message-content {
  border-bottom-left-radius: 4px;
}

.chat-message.user .message-content {
  background: linear-gradient(135deg, #22c55e 0%, #14b8a6 100%);
  border-bottom-right-radius: 4px;
}

.message-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin-bottom: 8px;
}

.message-content p:last-child {
  margin-bottom: 0;
}

.message-time {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

.message-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.message-option {
  padding: 8px 14px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 20px;
  color: #22c55e;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
}

.message-option:hover {
  background: rgba(34, 197, 94, 0.25);
}

.chat-message.typing .message-content {
  background: rgba(255, 255, 255, 0.06);
}

.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 4px 0;
}

.typing-indicator span {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  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); }
  30% { transform: translateY(-6px); }
}

.chat-input {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-input input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 16px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: all 0.3s;
}

.chat-input input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.chat-input input:focus {
  border-color: rgba(34, 197, 94, 0.5);
  background: rgba(34, 197, 94, 0.05);
}

.chat-send {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #22c55e 0%, #14b8a6 100%);
  border: none;
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.chat-send:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.4);
}

/* Section 2: Conversation Flow */
.chatbot-flow-section {
  padding: 100px 0;
}

.conversation-flow {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  margin-top: 60px;
}

.conversation-flow::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 80px;
  right: 80px;
  height: 3px;
  background: linear-gradient(90deg, #22c55e, #14b8a6, #22c55e);
  z-index: 0;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  flex: 1;
}

.flow-step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #22c55e 0%, #14b8a6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.4);
  position: relative;
}

.flow-step-number::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px solid rgba(34, 197, 94, 0.3);
  border-radius: 50%;
}

.flow-step-icon {
  width: 56px;
  height: 56px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.flow-step-icon svg {
  color: #22c55e;
}

.flow-step h3 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.flow-step p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  max-width: 160px;
}

.flow-connector {
  display: none;
}

/* Section 3: AI Capabilities */
.chatbot-capabilities-section {
  padding: 100px 0;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  margin-top: 60px;
}

.capability-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.4s ease;
}

.capability-card:hover {
  border-color: rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.03);
  transform: translateY(-4px);
}

.capability-large {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
}

.capability-visual {
  position: relative;
  margin-bottom: 24px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.capability-bubbles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.cap-bubble {
  position: absolute;
  padding: 10px 16px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  animation: bubbleFloat 3s ease-in-out infinite;
}

.cap-bubble-1 { top: 10%; left: 5%; animation-delay: 0s; }
.cap-bubble-2 { top: 30%; right: 5%; animation-delay: 1s; }
.cap-bubble-3 { bottom: 15%; left: 15%; animation-delay: 2s; }

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

.capability-brain {
  position: relative;
  z-index: 1;
}

.capability-brain svg {
  opacity: 0.8;
}

.capability-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.capability-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 20px;
}

.capability-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.capability-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.capability-list li svg {
  color: #22c55e;
  flex-shrink: 0;
}

.capability-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.capability-card > h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.capability-card > p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* Section 4: Integration Platforms */
.chatbot-integrations-section {
  padding: 100px 0;
}

.integrations-showcase {
  margin-top: 60px;
}

.integration-category {
  margin-bottom: 48px;
}

.integration-category:last-of-type {
  margin-bottom: 32px;
}

.integration-category h4 {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.integration-icons {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.integration-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.integration-icon:hover {
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.3);
  transform: translateY(-4px);
}

.icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.integration-icon span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.integration-cta {
  text-align: center;
  padding-top: 16px;
}

.integration-cta p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
}

.integration-cta a {
  color: #22c55e;
  text-decoration: none;
  font-weight: 500;
}

.integration-cta a:hover {
  text-decoration: underline;
}

/* Section 5: Use Cases */
.chatbot-usecases-section {
  padding: 100px 0;
}

.usecases-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 48px 0;
  flex-wrap: wrap;
}

.usecase-tab {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.usecase-tab:hover,
.usecase-tab.active {
  background: linear-gradient(135deg, #22c55e 0%, #14b8a6 100%);
  border-color: transparent;
  color: #fff;
}

.usecases-content {
  position: relative;
}

.usecase-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.usecase-panel.active {
  display: grid;
  animation: fadeIn 0.4s ease-out;
}

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

.usecase-chat-demo {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
}

.usecase-chat-message {
  margin-bottom: 16px;
}

.usecase-chat-message:last-child {
  margin-bottom: 0;
}

.chat-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  padding: 4px 8px;
  border-radius: 4px;
}

.usecase-chat-message.bot .chat-label {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.usecase-chat-message.user .chat-label {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
}

.usecase-chat-message p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.usecase-chat-message.user p {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(20, 184, 166, 0.15));
}

.usecase-benefits {
  padding: 24px;
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: 16px;
}

.usecase-benefits h4 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.usecase-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.usecase-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.usecase-benefits li:last-child {
  border-bottom: none;
}

.usecase-benefits li svg {
  color: #22c55e;
  flex-shrink: 0;
}

.usecase-stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(34, 197, 94, 0.2);
}

.usecase-stat .stat-value {
  font-size: 36px;
  font-weight: 700;
  color: #22c55e;
}

.usecase-stat .stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* Section 6: Analytics Dashboard */
.chatbot-analytics-section {
  padding: 100px 0;
}

.analytics-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.analytics-content h2 {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.analytics-content > p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 32px;
}

.analytics-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.analytics-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: all 0.3s;
}

.analytics-feature:hover {
  background: rgba(34, 197, 94, 0.05);
  border-color: rgba(34, 197, 94, 0.2);
}

.analytics-feature span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.analytics-dashboard {
  background: linear-gradient(145deg, rgba(30, 30, 30, 0.95) 0%, rgba(20, 20, 20, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.dashboard-card {
  padding: 24px;
}

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

.dashboard-header h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.dashboard-period {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.dash-stat {
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  text-align: center;
}

.dash-stat-value {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.dash-stat-label {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.dash-stat-change {
  display: inline-block;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 12px;
}

.dash-stat-change.positive {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
}

.dashboard-chart {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  padding: 20px;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 120px;
  gap: 12px;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(180deg, #22c55e 0%, #14b8a6 100%);
  border-radius: 4px 4px 0 0;
  height: var(--height, 50%);
  position: relative;
  transition: height 0.4s ease;
}

.chart-bar span {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

/* Section 7: Testimonials */
.chatbot-testimonials-section {
  padding: 100px 0;
}

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

.testimonial-chat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.testimonial-chat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(34, 197, 94, 0.3);
  box-shadow: 0 20px 60px rgba(34, 197, 94, 0.1);
}

.testimonial-chat-card.featured {
  background: linear-gradient(145deg, rgba(34, 197, 94, 0.08) 0%, rgba(20, 184, 166, 0.04) 100%);
  border-color: rgba(34, 197, 94, 0.3);
}

.testimonial-chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonial-chat-header img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-chat-header > div:first-of-type {
  flex: 1;
}

.testimonial-chat-header h4 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.testimonial-chat-header span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.testimonial-rating {
  display: flex;
  gap: 2px;
}

.testimonial-rating svg {
  width: 14px;
  height: 14px;
}

.testimonial-chat-bubble {
  padding: 20px;
}

.testimonial-chat-bubble p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-style: italic;
}

.testimonial-metrics {
  display: flex;
  gap: 16px;
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.2);
}

.metric {
  flex: 1;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.metric span {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #22c55e;
  margin-bottom: 2px;
}

/* Section 8: Chatbot Pricing */
.chatbot-pricing-section {
  padding: 100px 0;
}

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

.pricing-card-chat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 36px;
  position: relative;
  transition: all 0.4s ease;
}

.pricing-card-chat:hover {
  transform: translateY(-8px);
  border-color: rgba(34, 197, 94, 0.3);
}

.pricing-card-chat.featured {
  background: linear-gradient(145deg, rgba(34, 197, 94, 0.1) 0%, rgba(20, 184, 166, 0.05) 100%);
  border-color: rgba(34, 197, 94, 0.4);
  transform: scale(1.02);
}

.pricing-card-chat.featured:hover {
  transform: scale(1.02) translateY(-8px);
}

.pricing-badge-chat {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 18px;
  background: linear-gradient(135deg, #22c55e 0%, #14b8a6 100%);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-header-chat {
  text-align: center;
  margin-bottom: 24px;
}

.pricing-header-chat h3 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.pricing-header-chat p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.pricing-price-chat {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-amount {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}

.price-period {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
}

.pricing-features-chat {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.pricing-features-chat li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features-chat li:last-child {
  border-bottom: none;
}

.pricing-features-chat li svg {
  color: #22c55e;
  flex-shrink: 0;
}

.pricing-btn-chat {
  display: block;
  width: 100%;
  padding: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pricing-btn-chat:hover {
  background: rgba(255, 255, 255, 0.1);
}

.pricing-btn-chat.primary {
  background: linear-gradient(135deg, #22c55e 0%, #14b8a6 100%);
  border: none;
}

.pricing-btn-chat.primary:hover {
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.4);
}

/* Chatbot Sections Responsive */
@media (max-width: 1200px) {
  .chatbot-demo-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .analytics-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .integration-icons {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .conversation-flow {
    flex-direction: column;
    gap: 32px;
  }

  .conversation-flow::before {
    display: none;
  }

  .flow-step {
    flex-direction: row;
    text-align: left;
    gap: 20px;
    width: 100%;
    max-width: 400px;
  }

  .flow-step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    font-size: 22px;
    margin-bottom: 0;
  }

  .flow-step p {
    max-width: none;
  }

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

  .capability-large {
    grid-row: auto;
  }

  .usecase-panel.active {
    grid-template-columns: 1fr;
  }

  .testimonials-chat-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid-chatbot {
    grid-template-columns: 1fr;
  }

  .pricing-card-chat.featured {
    transform: none;
    order: -1;
  }

  .pricing-card-chat.featured:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 768px) {
  .chatbot-demo-content h2,
  .analytics-content h2 {
    font-size: 32px;
  }

  .integration-icons {
    grid-template-columns: repeat(3, 1fr);
  }

  .dashboard-stats {
    grid-template-columns: 1fr;
  }

  .price-amount {
    font-size: 40px;
  }
}

@media (max-width: 576px) {
  .integration-icons {
    grid-template-columns: repeat(2, 1fr);
  }

  .chat-messages {
    min-height: 280px;
    max-height: 280px;
  }

  .pricing-card-chat {
    padding: 28px;
  }

  .flow-step {
    flex-direction: column;
    text-align: center;
  }

  .flow-step-number {
    margin-bottom: 16px;
  }
}

/* ===== HOME STARTUP SECTIONS ===== */

/* Section 1: Startup Journey Timeline */
.startup-journey-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
}

.journey-timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;
  margin: 50px auto 0;
  padding: 40px 0;
}

.journey-line {
  position: absolute;
  top: 68px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: linear-gradient(90deg, #fb923c, #f59e0b, #eab308);
  border-radius: 4px;
  z-index: 0;
}

.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 0 10px;
}

.journey-marker {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 20px;
  box-shadow: 0 0 30px rgba(251, 146, 60, 0.4);
  transition: all 0.3s ease;
  border: 4px solid #0a0a0a;
  position: relative;
  z-index: 2;
}

.journey-step:hover .journey-marker {
  transform: scale(1.15);
  box-shadow: 0 0 40px rgba(251, 146, 60, 0.6);
}

.journey-content {
  background: rgba(251, 146, 60, 0.05);
  border: 1px solid rgba(251, 146, 60, 0.2);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.4s ease;
  min-height: 140px;
}

.journey-step:hover .journey-content {
  background: rgba(251, 146, 60, 0.1);
  border-color: rgba(251, 146, 60, 0.4);
  transform: translateY(-5px);
}

.journey-icon {
  margin-bottom: 12px;
}

.journey-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.journey-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* Section 2: Pitch Deck Showcase */
.startup-pitch-section {
  background: #08090a;
}

/* Section 2: Pitch Perfect - Redesigned */
.startup-pitch-section {
  background: linear-gradient(180deg, #08090a 0%, #0d0e10 100%);
  position: relative;
  overflow: hidden;
}

.pitch-bg-glow {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(251, 146, 60, 0.15) 0%, transparent 70%);
  transform: translateY(-50%);
  pointer-events: none;
}

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

.pitch-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin: 16px 0 20px;
  line-height: 1.2;
}

.pitch-content h2 .gradient-text {
  background: linear-gradient(135deg, #fb923c, #f59e0b, #eab308);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pitch-content > p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 32px;
}

.pitch-features {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: grid;
  gap: 16px;
}

.pitch-features li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(251, 146, 60, 0.04);
  border: 1px solid rgba(251, 146, 60, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.pitch-features li:hover {
  background: rgba(251, 146, 60, 0.08);
  border-color: rgba(251, 146, 60, 0.25);
  transform: translateX(8px);
}

.pitch-features .feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.2), rgba(234, 179, 8, 0.1));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fb923c;
  flex-shrink: 0;
}

.pitch-features li span:last-child {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.pitch-features li span:last-child strong {
  display: block;
  margin-bottom: 2px;
}

.pitch-features li span:last-child small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.pitch-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-pitch-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #fb923c, #f59e0b);
  color: #0a0a0a;
  font-weight: 600;
  font-size: 15px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(251, 146, 60, 0.3);
}

.btn-pitch-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(251, 146, 60, 0.4);
}

.btn-pitch-primary svg {
  transition: transform 0.3s ease;
}

.btn-pitch-primary:hover svg {
  transform: translateX(4px);
}

.pitch-stats {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.pitch-stats strong {
  color: #fb923c;
  font-size: 18px;
}

/* Pitch Device Mockup */
.pitch-preview {
  position: relative;
}

.pitch-device {
  background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
  border-radius: 20px;
  padding: 12px;
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.device-top {
  display: flex;
  justify-content: center;
  padding: 8px 0 12px;
}

.device-camera {
  width: 8px;
  height: 8px;
  background: #2a2a2a;
  border-radius: 50%;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
}

.device-screen {
  background: #0a0a0a;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.screen-header {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.screen-dots {
  display: flex;
  gap: 6px;
}

.screen-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.screen-dots span:nth-child(1) { background: #ff5f57; }
.screen-dots span:nth-child(2) { background: #ffbd2e; }
.screen-dots span:nth-child(3) { background: #28c840; }

.screen-title {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-family: monospace;
}

/* Pitch Slides */
.pitch-slides-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 16px;
}

.pitch-slide {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px;
  position: relative;
  transition: all 0.4s ease;
  cursor: pointer;
  min-height: 140px;
}

.pitch-slide:hover {
  background: linear-gradient(145deg, rgba(251, 146, 60, 0.1), rgba(251, 146, 60, 0.05));
  border-color: rgba(251, 146, 60, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(251, 146, 60, 0.15);
}

.pitch-slide.active {
  background: linear-gradient(145deg, rgba(251, 146, 60, 0.12), rgba(251, 146, 60, 0.06));
  border-color: rgba(251, 146, 60, 0.4);
  box-shadow: 0 0 20px rgba(251, 146, 60, 0.2);
}

.slide-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 10px;
  font-weight: 700;
  color: rgba(251, 146, 60, 0.6);
  font-family: monospace;
}

.slide-content {
  display: flex;
  flex-direction: column;
}

.slide-icon-wrap {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.2), rgba(251, 146, 60, 0.1));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fb923c;
  margin-bottom: 12px;
}

.slide-icon-wrap.solution {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
  color: #10b981;
}

.slide-icon-wrap.market {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
  color: #3b82f6;
}

.slide-icon-wrap.traction {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(168, 85, 247, 0.1));
  color: #a855f7;
}

.slide-content h4 {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 4px;
}

.slide-content p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 12px;
}

.slide-visual {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.visual-bar {
  height: 6px;
  background: linear-gradient(90deg, #fb923c, #eab308);
  border-radius: 3px;
  opacity: 0.7;
}

.slide-metrics {
  display: flex;
  gap: 12px;
}

.slide-metrics .metric {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(16, 185, 129, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
}

.slide-metrics .metric strong {
  color: #10b981;
}

.slide-market {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-top: 8px;
}

.slide-number {
  font-size: 26px;
  font-weight: 700;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.slide-number span {
  font-size: 14px;
  font-weight: 600;
}

.slide-market-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
  white-space: nowrap;
}

.slide-growth {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.growth-value {
  font-size: 22px;
  font-weight: 700;
  color: #a855f7;
}

.growth-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

/* Slide Navigation */
.slide-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-dot:hover {
  background: rgba(251, 146, 60, 0.5);
}

.nav-dot.active {
  background: #fb923c;
  width: 24px;
  border-radius: 4px;
}

/* Floating Cards */
.pitch-floating {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  background: rgba(15, 15, 15, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  animation: floatCard 4s ease-in-out infinite;
}

.floating-card.card-1 {
  top: 20%;
  left: -20px;
  animation-delay: 0s;
}

.floating-card.card-1 span {
  font-size: 13px;
  font-weight: 500;
  color: #10b981;
}

.floating-card.card-2 {
  bottom: 15%;
  right: -30px;
  flex-direction: column;
  text-align: center;
  padding: 16px 24px;
  animation-delay: 1s;
}

.floating-card .score {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, #fb923c, #eab308);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.floating-card .score-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

/* Section 3: Funding Rounds */
.startup-funding-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
}

.funding-stages {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 50px auto 0;
}

.funding-stage {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(251, 146, 60, 0.15);
  border-radius: 16px;
  padding: 24px 28px;
  transition: all 0.4s ease;
}

.funding-stage:hover {
  border-color: rgba(251, 146, 60, 0.4);
  background: rgba(251, 146, 60, 0.05);
  transform: translateX(5px);
}

.funding-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.funding-label {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.funding-amount {
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, #fb923c, #eab308);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.funding-bar {
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 12px;
}

.funding-progress {
  height: 100%;
  border-radius: 5px;
  transition: width 1s ease;
}

.funding-stats {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* Section 4: Startup Metrics */
.startup-metrics-section {
  background: #08090a;
}

.metrics-header {
  text-align: center;
  margin-bottom: 40px;
}

.metrics-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.metrics-header p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}

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

.metric-card {
  background: rgba(251, 146, 60, 0.03);
  border: 1px solid rgba(251, 146, 60, 0.15);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s ease;
}

.metric-card:hover {
  border-color: rgba(251, 146, 60, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(251, 146, 60, 0.1);
}

.metric-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.metric-value {
  font-size: 40px;
  font-weight: 800;
  background: linear-gradient(135deg, #fb923c, #eab308);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  line-height: 1;
}

.metric-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin-bottom: 8px;
}

.metric-change {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 12px;
  display: inline-block;
}

.metric-change.positive {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

/* Section 5: Mentor Network */
.startup-mentors-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
}

.mentors-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.mentor-card {
  background: rgba(251, 146, 60, 0.03);
  border: 1px solid rgba(251, 146, 60, 0.15);
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.4s ease;
}

.mentor-card:hover {
  border-color: rgba(251, 146, 60, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(251, 146, 60, 0.1);
}

.mentor-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: #0a0a0a;
  margin: 0 auto 16px;
}

.mentor-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.mentor-title {
  display: block;
  font-size: 13px;
  color: #fb923c;
  margin-bottom: 4px;
}

.mentor-company {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* Section 6: Market Opportunities */
.startup-market-section {
  background: #08090a;
}

.market-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}

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

.market-circle {
  position: relative;
  width: 350px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.market-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(251, 146, 60, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.market-ring:hover {
  border-color: rgba(251, 146, 60, 0.6);
}

.market-ring span {
  position: absolute;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  background: #08090a;
  padding: 4px 8px;
}

.market-ring.ring-1 {
  width: 100%;
  height: 100%;
}

.market-ring.ring-2 {
  width: 70%;
  height: 70%;
}

.market-ring.ring-3 {
  width: 45%;
  height: 45%;
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.1), rgba(234, 179, 8, 0.1));
}

.market-center {
  position: relative;
  z-index: 2;
  text-align: center;
  background: radial-gradient(circle, #08090a 60%, transparent 100%);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.market-total {
  display: block;
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, #fb923c, #f59e0b, #eab308);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -1px;
  text-shadow: 0 0 40px rgba(251, 146, 60, 0.3);
}

.market-center .market-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 8px;
  white-space: nowrap;
}

.market-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 16px 0;
  line-height: 1.3;
}

.market-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 24px;
}

.market-sectors {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sector-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: rgba(251, 146, 60, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(251, 146, 60, 0.15);
  transition: all 0.3s ease;
}

.sector-item:hover {
  background: rgba(251, 146, 60, 0.1);
  border-color: rgba(251, 146, 60, 0.3);
  transform: translateX(5px);
}

.sector-name {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
}

.sector-growth {
  font-size: 14px;
  font-weight: 700;
}

/* Section 7: Success Stories */
.startup-stories-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
}

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

.story-card {
  background: rgba(251, 146, 60, 0.03);
  border: 1px solid rgba(251, 146, 60, 0.15);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.4s ease;
  position: relative;
}

.story-card.featured {
  grid-row: span 2;
  background: rgba(251, 146, 60, 0.06);
  border-color: rgba(251, 146, 60, 0.3);
}

.story-card:hover {
  border-color: rgba(251, 146, 60, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(251, 146, 60, 0.1);
}

.story-badge {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, #fb923c, #eab308);
  color: #0a0a0a;
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.story-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.story-logo {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #0a0a0a;
}

.story-header h4 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2px;
}

.story-header > div:last-child span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.story-quote {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.story-founder {
  font-size: 13px;
  color: #fb923c;
  margin-bottom: 16px;
}

.story-stats {
  display: flex;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(251, 146, 60, 0.15);
  flex-wrap: wrap;
}

.story-stats > div {
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.story-stats > div span {
  display: block;
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(135deg, #fb923c, #eab308);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2px;
}

/* Section 8: Accelerator Programs */
.startup-programs-section {
  background: #08090a;
}

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

.program-card {
  background: rgba(251, 146, 60, 0.03);
  border: 1px solid rgba(251, 146, 60, 0.15);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}

.program-card.featured {
  border-color: rgba(251, 146, 60, 0.4);
  background: rgba(251, 146, 60, 0.06);
  transform: scale(1.03);
}

.program-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #fb923c, #eab308);
  color: #0a0a0a;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.program-card:hover {
  border-color: rgba(251, 146, 60, 0.5);
  transform: translateY(-8px);
}

.program-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.program-tier {
  font-size: 14px;
  font-weight: 600;
  color: #fb923c;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.program-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.program-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
  line-height: 1.5;
}

.program-price {
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.program-price .price {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #fb923c, #eab308);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.program-price .equity {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.program-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
}

.program-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.program-btn {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid rgba(251, 146, 60, 0.4);
  color: #fb923c;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.program-btn:hover {
  background: rgba(251, 146, 60, 0.1);
  border-color: #fb923c;
}

.program-btn.primary {
  border: none;
  color: #0a0a0a;
}

.program-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(251, 146, 60, 0.3);
}

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

  .mentors-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .pitch-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .pitch-content h2 {
    font-size: 36px;
  }

  .pitch-preview {
    max-width: 500px;
    margin: 0 auto;
  }

  .floating-card.card-1 {
    left: 10px;
    top: 10%;
  }

  .floating-card.card-2 {
    right: 10px;
    bottom: 10%;
  }

  .market-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .journey-timeline {
    flex-wrap: wrap;
    justify-content: center;
  }

  .journey-line {
    display: none;
  }

  .journey-step {
    width: 33.33%;
    margin-bottom: 30px;
  }

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

  .story-card.featured {
    grid-row: span 1;
  }

  .programs-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .program-card.featured {
    transform: none;
  }

  .program-card.featured:hover {
    transform: translateY(-8px);
  }

  .market-circle {
    width: 280px;
    height: 280px;
  }

  .market-total {
    font-size: 42px;
  }

  .market-center {
    padding: 25px;
  }

  .market-center .market-label {
    font-size: 10px;
  }
}

@media (max-width: 768px) {
  .journey-step {
    width: 50%;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .mentors-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

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

  .funding-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .pitch-content h2 {
    font-size: 32px;
  }

  .pitch-features {
    gap: 12px;
  }

  .pitch-slides-container {
    gap: 10px;
    padding: 12px;
  }

  .slide-content h4 {
    font-size: 13px;
  }

  .slide-number {
    font-size: 22px;
  }

  .slide-number span {
    font-size: 12px;
  }

  .slide-market-label {
    font-size: 9px;
  }

  .growth-value {
    font-size: 18px;
  }

  .market-circle {
    width: 250px;
    height: 250px;
  }

  .market-total {
    font-size: 36px;
  }

  .market-center {
    padding: 20px;
  }

  .market-center .market-label {
    font-size: 9px;
    letter-spacing: 1px;
  }
}

@media (max-width: 576px) {
  .journey-step {
    width: 100%;
  }

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

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

  .pitch-slides-container {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pitch-slide {
    min-height: 120px;
  }

  .pitch-features li {
    padding: 12px 14px;
  }

  .pitch-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .floating-card {
    display: none;
  }

  .pitch-content h2 {
    font-size: 28px;
  }

  .pitch-bg-glow {
    width: 300px;
    height: 300px;
  }
}
