/**
 * Nodeflix Technologies - Premium Global Stylesheet & Design System
 */

/* ==========================================================================
   1. DESIGN SYSTEM VARIABLES & TOKENS
   ========================================================================== */
:root {
  /* Colors - Sleek Enterprise Dark Theme */
  --color-bg: #030712;
  --color-surface: #0b0f19;
  --color-surface-hover: #111827;
  --color-card: #0f172a;
  --color-card-border: rgba(255, 255, 255, 0.06);
  --color-border: rgba(255, 255, 255, 0.08);
  
  --color-primary: #6366f1;         /* Indigo */
  --color-primary-rgb: 99, 102, 241;
  --color-secondary: #a855f7;       /* Purple */
  --color-secondary-rgb: 168, 85, 247;
  --color-accent: #06b6d4;          /* Cyan */
  --color-accent-rgb: 6, 182, 212;

  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;

  --color-text: #f3f4f6;            /* Gray 100 */
  --color-text-muted: #9ca3af;      /* Gray 400 */
  --color-text-dark: #1f2937;       /* Gray 800 */

  /* Typography Fonts */
  --font-primary: "Manrope", sans-serif;
  --font-secondary: "Inter", sans-serif;

  /* Border Radii */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.7), 0 2px 4px -2px rgba(0, 0, 0, 0.7);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.8), 0 4px 6px -4px rgba(0, 0, 0, 0.8);
  --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.15);

  /* Spacing Scale (Fluid Basis) */
  --space-xxs: 0.25rem;  /* 4px */
  --space-xs: 0.5rem;    /* 8px */
  --space-sm: 1rem;      /* 16px */
  --space-md: 1.5rem;    /* 24px */
  --space-lg: 2rem;      /* 32px */
  --space-xl: 3rem;      /* 48px */
  --space-xxl: 5rem;     /* 80px */

  /* Max Widths */
  --container-width: 1320px;
  --header-height: 80px;
}

/* ==========================================================================
   2. RESET & BASE LAYOUT
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-secondary);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  background-color: var(--color-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Responsive Containers */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.grid {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ==========================================================================
   3. TYPOGRAPHY SYSTEM
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

p {
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.subheading {
  font-family: var(--font-secondary);
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Glow gradient text */
.text-gradient {
  background: linear-gradient(135deg, var(--color-text) 30%, var(--color-primary) 70%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==========================================================================
   4. DESIGN SYSTEM ELEMENTS & COMPONENTS
   ========================================================================== */

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xxs);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(99, 102, 241, 0.1);
  color: var(--color-primary);
  border: 1px solid rgba(99, 102, 241, 0.2);
  width: fit-content;
}

.badge-cyan {
  background: rgba(6, 182, 212, 0.1);
  color: var(--color-accent);
  border: 1px solid rgba(6, 182, 212, 0.2);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 4px 14px 0 rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
  background: #4f46e5;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(99, 102, 241, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Glassmorphism Cards */
.card {
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
}

/* Dynamic Radial Hover Glow (requires JavaScript coordinates) */
.card-glow::before {
  content: "";
  position: absolute;
  top: var(--mouse-y, 0px);
  left: var(--mouse-x, 0px);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.5s ease;
  opacity: 0;
}

.card-glow:hover::before {
  opacity: 1;
}

/* Accordions */
.accordion {
  border-bottom: 1px solid var(--color-border);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  background: transparent;
  border: none;
  color: var(--color-text);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.1rem;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}

.accordion-trigger:hover {
  color: var(--color-primary);
}

.accordion-trigger .icon-chevron {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  fill: currentColor;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-content p {
  padding-bottom: var(--space-sm);
  margin-bottom: 0;
}

.accordion.active .accordion-content {
  max-height: 500px;
}

.accordion.active .accordion-trigger .icon-chevron {
  transform: rotate(180deg);
}

/* ==========================================================================
   5. HEADER & NAVIGATION STYLES WITH MEGA MENU
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  background: transparent;
}

.site-header.scrolled {
  background: rgba(3, 7, 18, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
  height: 70px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.site-logo a {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ffffff 50%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Main Navigation */
.main-navigation ul {
  display: flex;
  list-style: none;
  gap: var(--space-md);
  margin: 0;
  padding: 0;
}

.main-navigation li {
  position: relative;
}

.main-navigation > ul > li {
  padding: 20px 0;
}

.main-navigation a {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-navigation a:hover {
  color: var(--color-text);
}

/* Mega Menu Container */
.mega-menu-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 900px;
  background: rgba(11, 15, 25, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  padding: var(--space-lg);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
}

.main-navigation > ul > li:hover .mega-menu-panel,
.main-navigation > ul > li.focus .mega-menu-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.mega-menu-item {
  display: flex;
  gap: var(--space-xs);
  padding: var(--space-xs);
  border-radius: var(--radius-md);
  transition: background 0.2s ease;
}

.mega-menu-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.mega-menu-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(99, 102, 241, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.mega-menu-info h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.mega-menu-info p {
  font-size: 0.8rem;
  margin-bottom: 0;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.mega-menu-featured {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mega-menu-featured h4 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.mega-menu-featured p {
  font-size: 0.85rem;
  margin-bottom: var(--space-md);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Burger Toggle */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--color-text);
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}

@media (max-width: 1024px) {
  .main-navigation {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .header-actions .btn {
    display: none !important;
  }
}

/* ==========================================================================
   6. FULLSCREEN MOBILE OVERLAY MENU
   ========================================================================== */
.fullscreen-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #030712;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  padding: 0 var(--space-lg) var(--space-lg);
  overflow-y: auto;
}

.fullscreen-mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-overlay-grid {
  display: grid;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .mobile-overlay-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.mobile-nav-item > a {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.mobile-nav-item-header > a {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.mobile-nav-item-header .mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--color-text);
  cursor: pointer;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.mobile-nav-item-header .mobile-menu-toggle svg {
  transition: transform 0.3s ease;
}

.mobile-nav-item.active .mobile-menu-toggle svg {
  transform: rotate(180deg);
}

.mobile-sub-menu {
  list-style: none;
  padding-left: var(--space-sm);
  display: none;
  flex-direction: column;
  gap: var(--space-xs);
  margin-top: var(--space-xs);
  border-left: 2px solid var(--color-border);
}

.mobile-sub-menu a {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  padding: 6px 0;
}

.mobile-nav-item.active .mobile-sub-menu {
  display: flex;
}

.mobile-nav-item.active > a svg {
  transform: rotate(180deg);
}

.mobile-nav-item > a svg {
  transition: transform 0.3s ease;
}

.mobile-contact-panel {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-lg);
}

@media (min-width: 768px) {
  .mobile-contact-panel {
    border-top: none;
    padding-top: 0;
    border-left: 1px solid var(--color-border);
    padding-left: var(--space-lg);
  }
}

.mobile-socials {
  display: flex;
  gap: var(--space-sm);
}

/* ==========================================================================
   7. PREMIUM HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 820px;
  max-height: 860px;
  height: 840px;
  display: flex;
  align-items: center;
  padding-top: 100px; /* Reduced from 120px to improve spacing and vertical balance */
  padding-bottom: 60px;
  background-color: var(--color-bg);
  z-index: 10;
  overflow-x: clip;
  overflow-y: visible;
}

/* Grid & Noise Overlay */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-size: 50px 50px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  pointer-events: none;
  z-index: -2;
  transform: translateY(var(--parallax-y, 0px));
  transition: transform 0.1s ease-out;
}

.hero-bg-glow {
  position: absolute;
  width: 900px;
  height: 900px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translate(var(--parallax-x, 0px), var(--parallax-y, 0px));
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, rgba(168, 85, 247, 0.04) 50%, transparent 100%);
  pointer-events: none;
  z-index: -3;
  transition: transform 0.2s ease-out;
}

.hero-bg-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.02'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: -1;
}

/* Layout Grid */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: var(--space-xl);
  height: 100%;
}

@media (min-width: 1024px) {
  .hero-layout {
    grid-template-columns: 46% 54%;
  }
}

/* Left Content Column */
.hero-content {
  opacity: 0;
  transform: translateY(20px); /* Reduced movement for smoother entry */
  animation: heroReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-heading {
  margin-top: var(--space-xs);
  margin-bottom: var(--space-md);
  font-size: clamp(2.3rem, 4.2vw, 3.5rem); /* Slightly optimized typography scale */
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hero-heading-gradient {
  background: linear-gradient(to right, var(--color-accent), var(--color-primary), var(--color-secondary));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 5s linear infinite;
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-description {
  margin-bottom: var(--space-lg);
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 560px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg); /* Reduced margin */
}

.hero-trust-indicators {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xs) var(--space-sm);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text);
  font-size: 0.85rem;
  font-weight: 500;
}

.hero-trust-item svg {
  color: var(--color-success);
  flex-shrink: 0;
}

/* Right Premium Visual Container Column */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 520px;
  width: 100%;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Subtle overlay blend */
.hero-visual-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 30%, rgba(3, 7, 18, 0.4) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Particle Canvas behind media */
.particles-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Premium Placeholder Aesthetic */
.hero-media-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.15) 0%, rgba(11, 15, 25, 0.95) 70%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.placeholder-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, rgba(168, 85, 247, 0.06) 50%, transparent 100%);
  filter: blur(40px);
  animation: floatGlow 10s ease-in-out infinite alternate;
}

@keyframes floatGlow {
  0% { transform: translate(-10%, -10%) scale(1); }
  100% { transform: translate(10%, 10%) scale(1.2); }
}

.placeholder-mesh {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-size: 20px 20px;
  background-image: 
    radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
}

.placeholder-shapes {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.placeholder-shape {
  position: absolute;
  border-radius: var(--radius-full);
  filter: blur(60px);
  opacity: 0.5;
}

.shape-indigo {
  width: 250px;
  height: 250px;
  background: var(--color-primary);
  top: 15%;
  left: 20%;
  animation: floatShape1 12s ease-in-out infinite;
}

.shape-purple {
  width: 220px;
  height: 220px;
  background: var(--color-secondary);
  bottom: 15%;
  right: 15%;
  animation: floatShape2 14s ease-in-out infinite;
}

.shape-cyan {
  width: 180px;
  height: 180px;
  background: var(--color-accent);
  top: 40%;
  right: 35%;
  animation: floatShape1 8s ease-in-out infinite alternate;
}

@keyframes floatShape1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 30px) scale(1.1); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes floatShape2 {
  0% { transform: translate(0, 0) scale(1.1); }
  50% { transform: translate(30px, -20px) scale(0.9); }
  100% { transform: translate(0, 0) scale(1.1); }
}

.placeholder-brand {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  text-align: center;
}

.placeholder-brand-logo {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 2.2rem;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.placeholder-brand-name {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.25rem;
  color: #ffffff;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

/* ==========================================================================
   8. TRUSTED TECHNOLOGY STRIP (FLOATING GLASS STRIP)
   ========================================================================== */
.partner-strip-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: translateY(50%);
  z-index: 100;
}

.partner-strip-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 
    0 10px 40px -10px rgba(0, 0, 0, 0.5),
    0 1px 1px rgba(255, 255, 255, 0.15) inset;
  padding: 18px var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  overflow: hidden;
}

.partner-strip-heading {
  font-family: var(--font-secondary);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  font-weight: 600;
  margin: 0;
}

.partner-strip-logos {
  display: flex;
  overflow: hidden;
  user-select: none;
  position: relative;
  width: 100%;
}

.partner-logos-track {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3.5rem;
  width: max-content;
}

.partner-logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  filter: grayscale(1) brightness(0) invert(1) opacity(0.5);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.partner-logo-item img {
  height: 100%;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

/* Animation Options */

/* 1. Infinite Marquee */
.animation-marquee .partner-logos-track {
  animation: marqueeScroll 25s linear infinite;
}

.animation-marquee .partner-logos-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 2. Slow Horizontal Movement */
.animation-slow-slide .partner-logos-track {
  animation: slowSlideScroll 12s ease-in-out infinite alternate;
  justify-content: flex-start;
}

@keyframes slowSlideScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-30%); }
}

/* 3. Hover Grayscale to Color */
.partner-logo-item:hover {
  filter: grayscale(0) brightness(1) invert(0) opacity(1);
}

.animation-grayscale-to-color .partner-logo-item {
  /* Grayscale filter is standard, hover changes to color */
  filter: grayscale(1) opacity(0.5);
}

.animation-grayscale-to-color .partner-logo-item:hover {
  filter: grayscale(0) opacity(1);
}

/* Responsive Adaptive Layouts */
@media (max-width: 1023px) {
  .hero-section {
    min-height: auto;
    max-height: none;
    height: auto;
    padding-top: 100px;
    padding-bottom: 80px;
  }
  .hero-visual {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding-top: 90px;
    padding-bottom: 100px;
  }
  
  .hero-visual {
    height: 320px;
  }

  .partner-strip-container {
    position: relative;
    transform: translateY(20px);
    margin-top: 30px;
  }

  .partner-strip-card {
    padding: 16px var(--space-sm);
    border-radius: 18px;
  }

  /* Slider Swipeable on Mobile */
  .partner-strip-logos {
    overflow: hidden !important;
  }
  .partner-logos-track {
    flex-wrap: nowrap !important;
  }

  .partner-logo-item {
    scroll-snap-align: center;
    flex: 0 0 110px;
    height: 24px;
    filter: grayscale(1) brightness(0) invert(1) opacity(0.5); /* Easier to see logos on mobile */
  }
}

/* ==========================================================================
   9. SERVICES SECTION (Premium White Background Contrast)
   ========================================================================== */
.services-section {
  background-color: var(--color-bg);
  color: var(--color-text);
  padding: var(--space-xxl) 0;
  position: relative;
  z-index: 5;
}

.services-section h2,
.services-section h3,
.services-section h4 {
  color: var(--color-text);
}

.services-section p {
  color: var(--color-text-muted);
}

.services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

.services-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Premium Service Cards with Lift & Gradient Glow */
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 102, 241, 0.2);
  box-shadow: var(--shadow-lg);
  background: var(--color-surface-hover);
}

.service-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(99, 102, 241, 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover .service-card-glow {
  opacity: 1;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(99, 102, 241, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.service-title {
  font-size: 1.3rem;
  margin-bottom: var(--space-xs);
  position: relative;
  z-index: 1;
}

.service-desc {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

/* Bullet Points */
.service-bullets {
  list-style: none;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.service-bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xxs);
}

.service-bullets li svg {
  color: var(--color-success);
  flex-shrink: 0;
}

.service-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
  transition: gap 0.2s ease;
}

.service-card:hover .service-action {
  gap: 10px;
}

/* ==========================================================================
   10. INDUSTRIES SECTION (Soft Dark/Contrast Background)
   ========================================================================== */
.industries-section {
  background-color: #080c16;
  padding: var(--space-xxl) 0;
  position: relative;
  z-index: 4;
}

.industries-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

.industries-carousel-wrapper {
  width: 100%;
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 20px;
  -webkit-overflow-scrolling: touch;
}

.industries-grid {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: var(--space-md) !important;
  width: max-content !important;
}

/* Card Glow Tracker Layer */
.card-glow-bg {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(
    400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 255, 255, 0.08),
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.industry-card:hover .card-glow-bg {
  opacity: 1;
}

.card-noise-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.015'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 2;
  opacity: 0.7;
}

/* Industry Card with Accent Color definitions */
.industry-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px var(--space-md);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.55) 0%, rgba(11, 15, 25, 0.85) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
  height: 340px; /* Approximately 320–360px */
  box-shadow: 
    0 15px 35px -20px rgba(0, 0, 0, 0.5),
    inset 0 1px 1px rgba(255, 255, 255, 0.04);
  transition: 
    transform 350ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 350ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 350ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
  text-decoration: none;
  cursor: pointer;
  width: 280px !important;
  flex-shrink: 0 !important;
}

.industry-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 
    0 25px 50px -25px rgba(0, 0, 0, 0.8),
    inset 0 1px 2px rgba(255, 255, 255, 0.08);
}

.industry-card:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

/* Top Accent Line */
.card-top-accent {
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 2px;
  border-radius: var(--radius-full);
  z-index: 5;
  opacity: 0.5;
  transition: opacity 350ms ease, left 350ms cubic-bezier(0.16, 1, 0.3, 1), width 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-card:hover .card-top-accent {
  opacity: 1;
  left: 5%;
  width: 90%;
}

/* Premium Icon Container */
.industry-icon-circle {
  position: relative;
  width: 76px;
  height: 76px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  transition: all 350ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.05);
}

.icon-inner-highlight {
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
  pointer-events: none;
}

.icon-accent-glow {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  opacity: 0.3;
  transition: opacity 350ms ease, filter 350ms ease;
  pointer-events: none;
}

.industry-card:hover .icon-accent-glow {
  opacity: 0.7;
}

.icon-svg-wrapper {
  position: relative;
  z-index: 2;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1), color 350ms ease;
}

.icon-svg-wrapper svg {
  width: 26px;
  height: 26px;
}

/* Hover SVG Icon animation */
.industry-card:hover .icon-svg-wrapper {
  transform: scale(1.1) rotate(5deg);
}

/* Card Content Area */
.industry-card-body {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}

.industry-card-title {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--space-xs);
  line-height: 1.3;
  text-align: center;
}

.industry-card-description {
  font-family: var(--font-secondary);
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  text-align: center;
  max-width: 290px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 350ms ease;
}

.industry-card:hover .industry-card-description {
  color: var(--color-text);
}

/* Circular Arrow Bottom CTA Button */
.industry-card-cta-btn {
  margin-top: auto;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
  transition: 
    background 350ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 350ms cubic-bezier(0.16, 1, 0.3, 1),
    color 350ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-card-cta-btn svg {
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Bottom CTA Hover trigger */
.industry-card:hover .industry-card-cta-btn {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.industry-card:hover .industry-card-cta-btn svg {
  transform: translateX(3px);
}

/* Color Accent System Stylesheet Definitions */

/* 1. Blue */
.accent-blue .card-top-accent {
  background: linear-gradient(to right, #2563eb, #3b82f6, #60a5fa);
  box-shadow: 0 1px 6px rgba(59, 130, 246, 0.5);
}
.accent-blue:hover {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 
    0 25px 50px -25px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(59, 130, 246, 0.1),
    inset 0 1px 2px rgba(255, 255, 255, 0.08);
}
.accent-blue .icon-accent-glow {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
}
.accent-blue:hover .industry-icon-circle {
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.25);
}
.accent-blue:hover .icon-svg-wrapper {
  color: #60a5fa;
}
.accent-blue:hover .industry-card-cta-btn {
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.3);
}

/* 2. Cyan */
.accent-cyan .card-top-accent {
  background: linear-gradient(to right, #0891b2, #06b6d4, #22d3ee);
  box-shadow: 0 1px 6px rgba(6, 182, 212, 0.5);
}
.accent-cyan:hover {
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow: 
    0 25px 50px -25px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(6, 182, 212, 0.1),
    inset 0 1px 2px rgba(255, 255, 255, 0.08);
}
.accent-cyan .icon-accent-glow {
  background: radial-gradient(circle, rgba(6, 182, 212, 0.3) 0%, transparent 70%);
}
.accent-cyan:hover .industry-icon-circle {
  border-color: rgba(6, 182, 212, 0.4);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.25);
}
.accent-cyan:hover .icon-svg-wrapper {
  color: #22d3ee;
}
.accent-cyan:hover .industry-card-cta-btn {
  box-shadow: 0 0 12px rgba(6, 182, 212, 0.3);
}

/* 3. Green */
.accent-green .card-top-accent {
  background: linear-gradient(to right, #059669, #10b981, #34d399);
  box-shadow: 0 1px 6px rgba(16, 115, 81, 0.5);
}
.accent-green:hover {
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 
    0 25px 50px -25px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(16, 185, 129, 0.1),
    inset 0 1px 2px rgba(255, 255, 255, 0.08);
}
.accent-green .icon-accent-glow {
  background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
}
.accent-green:hover .industry-icon-circle {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.25);
}
.accent-green:hover .icon-svg-wrapper {
  color: #34d399;
}
.accent-green:hover .industry-card-cta-btn {
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.3);
}

/* 4. Purple */
.accent-purple .card-top-accent {
  background: linear-gradient(to right, #7c3aed, #8b5cf6, #a78bfa);
  box-shadow: 0 1px 6px rgba(139, 92, 246, 0.5);
}
.accent-purple:hover {
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 
    0 25px 50px -25px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(139, 92, 246, 0.1),
    inset 0 1px 2px rgba(255, 255, 255, 0.08);
}
.accent-purple .icon-accent-glow {
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
}
.accent-purple:hover .industry-icon-circle {
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.25);
}
.accent-purple:hover .icon-svg-wrapper {
  color: #a78bfa;
}
.accent-purple:hover .industry-card-cta-btn {
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.3);
}

/* 5. Orange */
.accent-orange .card-top-accent {
  background: linear-gradient(to right, #ea580c, #f97316, #fb923c);
  box-shadow: 0 1px 6px rgba(249, 115, 22, 0.5);
}
.accent-orange:hover {
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: 
    0 25px 50px -25px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(249, 115, 22, 0.1),
    inset 0 1px 2px rgba(255, 255, 255, 0.08);
}
.accent-orange .icon-accent-glow {
  background: radial-gradient(circle, rgba(249, 115, 22, 0.3) 0%, transparent 70%);
}
.accent-orange:hover .industry-icon-circle {
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.25);
}
.accent-orange:hover .icon-svg-wrapper {
  color: #fb923c;
}
.accent-orange:hover .industry-card-cta-btn {
  box-shadow: 0 0 12px rgba(249, 115, 22, 0.3);
}

/* 6. Yellow */
.accent-yellow .card-top-accent {
  background: linear-gradient(to right, #ca8a04, #eab308, #fde047);
  box-shadow: 0 1px 6px rgba(234, 179, 8, 0.5);
}
.accent-yellow:hover {
  border-color: rgba(234, 179, 8, 0.3);
  box-shadow: 
    0 25px 50px -25px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(234, 179, 8, 0.1),
    inset 0 1px 2px rgba(255, 255, 255, 0.08);
}
.accent-yellow .icon-accent-glow {
  background: radial-gradient(circle, rgba(234, 179, 8, 0.3) 0%, transparent 70%);
}
.accent-yellow:hover .industry-icon-circle {
  border-color: rgba(234, 179, 8, 0.4);
  box-shadow: 0 0 20px rgba(234, 179, 8, 0.25);
}
.accent-yellow:hover .icon-svg-wrapper {
  color: #fde047;
}
.accent-yellow:hover .industry-card-cta-btn {
  box-shadow: 0 0 12px rgba(234, 179, 8, 0.3);
}

/* 7. Pink */
.accent-pink .card-top-accent {
  background: linear-gradient(to right, #db2777, #ec4899, #f472b6);
  box-shadow: 0 1px 6px rgba(236, 72, 153, 0.5);
}
.accent-pink:hover {
  border-color: rgba(236, 72, 153, 0.3);
  box-shadow: 
    0 25px 50px -25px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(236, 72, 153, 0.1),
    inset 0 1px 2px rgba(255, 255, 255, 0.08);
}
.accent-pink .icon-accent-glow {
  background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
}
.accent-pink:hover .industry-icon-circle {
  border-color: rgba(236, 72, 153, 0.4);
  box-shadow: 0 0 20px rgba(236, 72, 153, 0.25);
}
.accent-pink:hover .icon-svg-wrapper {
  color: #f472b6;
}
.accent-pink:hover .industry-card-cta-btn {
  box-shadow: 0 0 12px rgba(236, 72, 153, 0.3);
}

/* 8. Royal Blue */
.accent-royal-blue .card-top-accent {
  background: linear-gradient(to right, #1e3a8a, #1d4ed8, #3b82f6);
  box-shadow: 0 1px 6px rgba(29, 78, 216, 0.5);
}
.accent-royal-blue:hover {
  border-color: rgba(29, 78, 216, 0.3);
  box-shadow: 
    0 25px 50px -25px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(29, 78, 216, 0.1),
    inset 0 1px 2px rgba(255, 255, 255, 0.08);
}
.accent-royal-blue .icon-accent-glow {
  background: radial-gradient(circle, rgba(29, 78, 216, 0.3) 0%, transparent 70%);
}
.accent-royal-blue:hover .industry-icon-circle {
  border-color: rgba(29, 78, 216, 0.4);
  box-shadow: 0 0 20px rgba(29, 78, 216, 0.25);
}
.accent-royal-blue:hover .icon-svg-wrapper {
  color: #3b82f6;
}
.accent-royal-blue:hover .industry-card-cta-btn {
  box-shadow: 0 0 12px rgba(29, 78, 216, 0.3);
}

/* Grid Breakpoints */



/* ==========================================================================
   11. STATISTICS SECTION (Dark Slate Premium Count Strip)
   ========================================================================== */
.stats-section {
  background: #0b0f19;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-xl) 0;
  position: relative;
  z-index: 5;
}

.stats-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(99, 102, 241, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.stat-number {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: var(--space-xxs);
  background: linear-gradient(135deg, #ffffff 40%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--color-text);
}

.stat-desc {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  margin-bottom: 0;
}

/* ==========================================================================
   12. AWARDS / TRUST BADGES SECTION (Premium Carousel)
   ========================================================================== */
.awards-section {
  padding: var(--space-xxl) 0;
  position: relative;
  z-index: 5;
  background: var(--color-bg);
}

.awards-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

.awards-slider-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 10px 0;
}

.awards-slider-track {
  display: flex;
  gap: var(--space-md);
  animation: awardsMarquee 35s linear infinite;
  will-change: transform;
}

.awards-slider-container:hover .awards-slider-track {
  animation-play-state: paused;
}

.award-slide {
  flex-shrink: 0;
  width: 320px;
}

@keyframes awardsMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - (var(--space-md) / 2))); }
}

/* Slide Card design */
.award-card {
  background: rgba(11, 15, 25, 0.5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
}

.award-card:hover {
  border-color: rgba(99, 102, 241, 0.25);
  box-shadow: 0 10px 25px -10px rgba(0,0,0,0.5);
  transform: translateY(-2px);
}

.award-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.award-platform-logo {
  height: 24px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
}

.award-rating-stars {
  display: flex;
  gap: 2px;
  color: #f59e0b; /* Yellow rating stars */
}

.award-rating-stars svg {
  fill: currentColor;
}

.award-badge-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: var(--space-xs) auto;
}

.award-body {
  text-align: center;
}

.award-title-text {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.award-review-meta {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   13. FEATURED CASE STUDY (Premium White Section)
   ========================================================================== */
.case-study-section {
  background-color: var(--color-bg);
  color: var(--color-text);
  padding: var(--space-xxl) 0;
  position: relative;
  z-index: 5;
}

.case-study-section h2,
.case-study-section h3,
.case-study-section h4 {
  color: var(--color-text);
}

.case-study-section p {
  color: var(--color-text-muted);
}

.case-study-layout {
  display: grid;
  gap: var(--space-xl);
  grid-template-columns: 1fr;
  align-items: center;
}

@media (min-width: 1024px) {
  .case-study-layout {
    grid-template-columns: 48% 52%;
  }
}

.case-study-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin: var(--space-md) 0 var(--space-lg);
}

.cs-metric-card {
  border-left: 3px solid var(--color-primary);
  padding-left: var(--space-xs);
}

.cs-metric-num {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.1;
  margin-bottom: 2px;
}

.cs-metric-lbl {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.cs-tech-partner-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
  margin-top: var(--space-md);
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-sm);
}

.cs-tech-partner-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #94a3b8;
  letter-spacing: 0.05em;
  margin-right: 4px;
}

/* Right Mockup & Interactive Visuals */
.case-study-visual {
  position: relative;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.15);
  overflow: hidden;
  background: #0f172a;
  padding: 10px;
}

.case-study-visual img {
  width: 100%;
  border-radius: var(--radius-md);
  display: block;
}

.cs-floating-card {
  position: absolute;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: var(--space-xs);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  color: #ffffff;
  pointer-events: none;
  z-index: 10;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cs-floating-card-1 {
  top: 15%;
  right: -5%;
  animation: floatVisual 4s ease-in-out infinite;
}

.cs-floating-card-2 {
  bottom: 15%;
  left: -5%;
  animation: floatVisual 4s ease-in-out infinite 2s;
}

@keyframes floatVisual {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ==========================================================================
   14. PROCESS SECTION (Dark Premium Timeline)
   ========================================================================== */
.process-section {
  background-color: #030712; /* Match theme deep dark */
  padding: var(--space-xxl) 0;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.process-bg-grid {
  position: absolute;
  inset: 0;
  background-size: 60px 60px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  pointer-events: none;
  z-index: 1;
}

.process-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  top: 30%;
  left: 20%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.process-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xxl);
  position: relative;
  z-index: 5;
}

.process-timeline-container {
  position: relative;
  width: 100%;
}

/* SVG Connector Line (For Desktop) */
.process-connector-svg-wrapper {
  position: absolute;
  top: 72px; /* Center with the 76px icon container */
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 2;
  pointer-events: none;
  display: none;
}

@media (min-width: 1024px) {
  .process-connector-svg-wrapper {
    display: block;
  }
}

.process-connector-svg {
  width: 100%;
  height: 100%;
}

.connector-path-bg {
  stroke-dasharray: 8 8;
}

.connector-path-active {
  transition: stroke-dashoffset 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Traveling Light Particle */
.connector-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: #60a5fa;
  box-shadow: 0 0 10px #3b82f6, 0 0 20px #60a5fa;
  top: 36px;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 5;
}

/* Process Cards Layout */
.process-cards-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr; /* Mobile: 1 column */
  position: relative;
  z-index: 3;
}

/* Tablet: 2 columns */
@media (min-width: 768px) and (max-width: 1023px) {
  .process-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop: 5 connected columns */
@media (min-width: 1024px) {
  .process-cards-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-md);
  }
}

.process-card-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Process Card Styling */
.process-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px 24px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.45) 0%, rgba(11, 15, 25, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  height: 310px; /* ~320px x 260px (slightly optimized for 5 cols desktop) */
  width: 100%;
  box-shadow: 
    0 15px 30px -20px rgba(0, 0, 0, 0.6),
    inset 0 1px 1px rgba(255, 255, 255, 0.03);
  transition: 
    transform 350ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 350ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 350ms cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  cursor: pointer;
}

.process-card:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

/* Hover: Lift, scale, glow increase */
.process-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 
    0 25px 50px -20px rgba(0, 0, 0, 0.8),
    inset 0 1px 2px rgba(255, 255, 255, 0.06);
}

/* Active State Styles (Applied via JS/Scroll) */
.process-card-wrapper.is-active .process-card {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 20px 40px -15px rgba(0, 0, 0, 0.7),
    inset 0 1px 2px rgba(255, 255, 255, 0.08);
}

/* Step Badge STEP 01 */
.process-step-badge-new {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 350ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 5;
}

.step-badge-text {
  font-family: var(--font-primary);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  transition: color 350ms ease;
}

.process-card:hover .process-step-badge-new,
.process-card-wrapper.is-active .process-step-badge-new {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
}

/* Glass Icon Container */
.process-icon-container {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  transition: all 350ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.04);
}

.process-icon-container .icon-svg-wrapper {
  position: relative;
  z-index: 2;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1), color 350ms ease;
}

.process-icon-container .icon-svg-wrapper svg {
  width: 24px;
  height: 24px;
}

.process-card:hover .process-icon-container .icon-svg-wrapper {
  transform: scale(1.1) rotate(6deg);
}

/* Content Text */
.process-card-content {
  position: relative;
  z-index: 3;
}

.process-card-title {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--space-xs);
  line-height: 1.3;
}

.process-card-description {
  font-family: var(--font-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  max-width: 260px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 350ms ease;
}

.process-card:hover .process-card-description,
.process-card-wrapper.is-active .process-card-description {
  color: var(--color-text);
}

/* Ambient glow & mouse trackers */
.card-ambient-glow {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: var(--radius-full);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(40px);
  opacity: 0.05;
  transition: opacity 350ms ease, transform 350ms ease;
  pointer-events: none;
  z-index: 1;
}

.process-card:hover .card-ambient-glow,
.process-card-wrapper.is-active .card-ambient-glow {
  opacity: 0.15;
  transform: translate(-50%, -50%) scale(1.2);
}

/* Vertical Connector (Mobile/Tablet) */
.process-mobile-connector {
  position: absolute;
  left: 50%;
  bottom: -40px;
  width: 2px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(-50%);
  z-index: 1;
}

.mobile-connector-fill {
  width: 100%;
  height: 0;
  background: var(--color-primary);
  transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-card-wrapper.is-completed .mobile-connector-fill {
  height: 100%;
}

.process-card-wrapper:last-child .process-mobile-connector {
  display: none;
}

@media (min-width: 1024px) {
  .process-mobile-connector {
    display: none;
  }
}

/* Color Accent System Stylesheet Definitions for Process Steps */

/* 1. Accent Blue */
/* 1. Accent Blue */
.process-card.accent-blue {
  background: 
    radial-gradient(circle at 50% 120%, rgba(59, 130, 246, 0.03) 0%, transparent 70%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.45) 0%, rgba(11, 15, 25, 0.8) 100%);
}
.process-card.accent-blue .icon-accent-glow {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 70%);
}
.process-card.accent-blue .card-ambient-glow {
  background: #3b82f6;
}
/* Active / Hover accent blue */
.process-card.accent-blue:hover,
.process-card-wrapper.is-active .process-card.accent-blue {
  border-color: rgba(59, 130, 246, 0.4);
  background: 
    radial-gradient(circle at 50% 100%, rgba(59, 130, 246, 0.12) 0%, transparent 75%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.55) 0%, rgba(11, 15, 25, 0.95) 100%);
  box-shadow: 
    0 20px 45px -15px rgba(0, 0, 0, 0.7),
    0 0 25px rgba(59, 130, 246, 0.18),
    inset 0 1px 2px rgba(255, 255, 255, 0.08);
}
.process-card.accent-blue:hover .process-icon-container,
.process-card-wrapper.is-active .process-card.accent-blue .process-icon-container {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}
.process-card.accent-blue:hover .step-badge-text,
.process-card-wrapper.is-active .process-card.accent-blue .step-badge-text {
  color: #60a5fa;
}
.process-card.accent-blue:hover .icon-svg-wrapper,
.process-card-wrapper.is-active .process-card.accent-blue .icon-svg-wrapper {
  color: #60a5fa;
}

/* 2. Accent Cyan */
.process-card.accent-cyan {
  background: 
    radial-gradient(circle at 50% 120%, rgba(6, 182, 212, 0.03) 0%, transparent 70%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.45) 0%, rgba(11, 15, 25, 0.8) 100%);
}
.process-card.accent-cyan .icon-accent-glow {
  background: radial-gradient(circle, rgba(6, 182, 212, 0.25) 0%, transparent 70%);
}
.process-card.accent-cyan .card-ambient-glow {
  background: #06b6d4;
}
/* Active / Hover accent cyan */
.process-card.accent-cyan:hover,
.process-card-wrapper.is-active .process-card.accent-cyan {
  border-color: rgba(6, 182, 212, 0.4);
  background: 
    radial-gradient(circle at 50% 100%, rgba(6, 182, 212, 0.12) 0%, transparent 75%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.55) 0%, rgba(11, 15, 25, 0.95) 100%);
  box-shadow: 
    0 20px 45px -15px rgba(0, 0, 0, 0.7),
    0 0 25px rgba(6, 182, 212, 0.18),
    inset 0 1px 2px rgba(255, 255, 255, 0.08);
}
.process-card.accent-cyan:hover .process-icon-container,
.process-card-wrapper.is-active .process-card.accent-cyan .process-icon-container {
  border-color: rgba(6, 182, 212, 0.5);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}
.process-card.accent-cyan:hover .step-badge-text,
.process-card-wrapper.is-active .process-card.accent-cyan .step-badge-text {
  color: #22d3ee;
}
.process-card.accent-cyan:hover .icon-svg-wrapper,
.process-card-wrapper.is-active .process-card.accent-cyan .icon-svg-wrapper {
  color: #22d3ee;
}

/* 3. Accent Purple */
.process-card.accent-purple {
  background: 
    radial-gradient(circle at 50% 120%, rgba(139, 92, 246, 0.03) 0%, transparent 70%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.45) 0%, rgba(11, 15, 25, 0.8) 100%);
}
.process-card.accent-purple .icon-accent-glow {
  background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, transparent 70%);
}
.process-card.accent-purple .card-ambient-glow {
  background: #8b5cf6;
}
/* Active / Hover accent purple */
.process-card.accent-purple:hover,
.process-card-wrapper.is-active .process-card.accent-purple {
  border-color: rgba(139, 92, 246, 0.4);
  background: 
    radial-gradient(circle at 50% 100%, rgba(139, 92, 246, 0.12) 0%, transparent 75%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.55) 0%, rgba(11, 15, 25, 0.95) 100%);
  box-shadow: 
    0 20px 45px -15px rgba(0, 0, 0, 0.7),
    0 0 25px rgba(139, 92, 246, 0.18),
    inset 0 1px 2px rgba(255, 255, 255, 0.08);
}
.process-card.accent-purple:hover .process-icon-container,
.process-card-wrapper.is-active .process-card.accent-purple .process-icon-container {
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}
.process-card.accent-purple:hover .step-badge-text,
.process-card-wrapper.is-active .process-card.accent-purple .step-badge-text {
  color: #a78bfa;
}
.process-card.accent-purple:hover .icon-svg-wrapper,
.process-card-wrapper.is-active .process-card.accent-purple .icon-svg-wrapper {
  color: #a78bfa;
}

/* 4. Accent Orange */
.process-card.accent-orange {
  background: 
    radial-gradient(circle at 50% 120%, rgba(249, 115, 22, 0.03) 0%, transparent 70%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.45) 0%, rgba(11, 15, 25, 0.8) 100%);
}
.process-card.accent-orange .icon-accent-glow {
  background: radial-gradient(circle, rgba(249, 115, 22, 0.25) 0%, transparent 70%);
}
.process-card.accent-orange .card-ambient-glow {
  background: #f97316;
}
/* Active / Hover accent orange */
.process-card.accent-orange:hover,
.process-card-wrapper.is-active .process-card.accent-orange {
  border-color: rgba(249, 115, 22, 0.4);
  background: 
    radial-gradient(circle at 50% 100%, rgba(249, 115, 22, 0.12) 0%, transparent 75%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.55) 0%, rgba(11, 15, 25, 0.95) 100%);
  box-shadow: 
    0 20px 45px -15px rgba(0, 0, 0, 0.7),
    0 0 25px rgba(249, 115, 22, 0.18),
    inset 0 1px 2px rgba(255, 255, 255, 0.08);
}
.process-card.accent-orange:hover .process-icon-container,
.process-card-wrapper.is-active .process-card.accent-orange .process-icon-container {
  border-color: rgba(249, 115, 22, 0.5);
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
}
.process-card.accent-orange:hover .step-badge-text,
.process-card-wrapper.is-active .process-card.accent-orange .step-badge-text {
  color: #fb923c;
}
.process-card.accent-orange:hover .icon-svg-wrapper,
.process-card-wrapper.is-active .process-card.accent-orange .icon-svg-wrapper {
  color: #fb923c;
}

/* 5. Accent Green */
.process-card.accent-green {
  background: 
    radial-gradient(circle at 50% 120%, rgba(16, 185, 129, 0.03) 0%, transparent 70%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.45) 0%, rgba(11, 15, 25, 0.8) 100%);
}
.process-card.accent-green .icon-accent-glow {
  background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, transparent 70%);
}
.process-card.accent-green .card-ambient-glow {
  background: #10b981;
}
/* Active / Hover accent green */
.process-card.accent-green:hover,
.process-card-wrapper.is-active .process-card.accent-green {
  border-color: rgba(16, 185, 129, 0.4);
  background: 
    radial-gradient(circle at 50% 100%, rgba(16, 185, 129, 0.12) 0%, transparent 75%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.55) 0%, rgba(11, 15, 25, 0.95) 100%);
  box-shadow: 
    0 20px 45px -15px rgba(0, 0, 0, 0.7),
    0 0 25px rgba(16, 185, 129, 0.18),
    inset 0 1px 2px rgba(255, 255, 255, 0.08);
}
.process-card.accent-green:hover .process-icon-container,
.process-card-wrapper.is-active .process-card.accent-green .process-icon-container {
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}
.process-card.accent-green:hover .step-badge-text,
.process-card-wrapper.is-active .process-card.accent-green .step-badge-text {
  color: #34d399;
}
.process-card.accent-green:hover .icon-svg-wrapper,
.process-card-wrapper.is-active .process-card.accent-green .icon-svg-wrapper {
  color: #34d399;
}

/* Active State Icon Soft Pulse animation */
@keyframes iconSoftPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 4px transparent); }
  50% { transform: scale(1.06) rotate(3deg); filter: drop-shadow(0 0 12px currentColor); }
}

.process-card-wrapper.is-active .process-icon-container .icon-svg-wrapper {
  animation: iconSoftPulse 2s ease-in-out infinite;
}

.connector-path-bg {
  stroke-dasharray: 8 8;
  animation: connectorBreathe 4s ease-in-out infinite alternate;
}

@keyframes connectorBreathe {
  0% { opacity: 0.35; }
  100% { opacity: 0.8; }
}

/* ==========================================================================
   15. TESTIMONIALS SLIDER SECTION
   ========================================================================== */
.testimonials-section {
  padding: var(--space-xxl) 0;
  position: relative;
  z-index: 5;
  background: var(--color-bg);
}

.testimonials-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

.testimonials-slider-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.testimonials-slider-track {
  display: flex;
  gap: var(--space-md);
  animation: testimonialsMarquee 40s linear infinite;
  will-change: transform;
}

.testimonials-slider-container:hover .testimonials-slider-track {
  animation-play-state: paused;
}

@keyframes testimonialsMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - (var(--space-md) / 2))); }
}

.testimonial-slide {
  flex-shrink: 0;
  width: 100%;
  max-width: 480px; /* Wider slides for testimonials */
}

/* Testimonial Card Design */
.testimonial-card {
  background: rgba(11, 15, 25, 0.6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-size: 1.05rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: var(--space-md);
  color: var(--color-text);
  position: relative;
  z-index: 2;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 5rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.03);
  font-family: serif;
  pointer-events: none;
}

.testimonial-author-row {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-sm);
  margin-top: auto;
}

.testimonial-avatar-wrapper {
  position: relative;
  flex-shrink: 0;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 1px solid var(--color-border);
}

.testimonial-verified-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #030712;
}

.testimonial-author-name {
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--color-text);
}

.testimonial-author-meta {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.testimonial-logo-linkedin {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.testimonial-brand-logo {
  height: 18px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  filter: grayscale(1) brightness(2);
}

/* ==========================================================================
   16. FAQ SECTION (Premium Collapsible Accordions)
   ========================================================================== */
.faq-section {
  padding: var(--space-xxl) 0;
  position: relative;
  z-index: 5;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}

.faq-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

.faq-filter-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.faq-search-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-family: var(--font-secondary);
  font-size: 1rem;
}

.faq-search-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.15);
}

.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xxs);
  justify-content: center;
}

.faq-cat-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--color-text-muted);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.faq-cat-btn.active,
.faq-cat-btn:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text);
  border-color: var(--color-border);
}

.faq-accordions-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

/* FAQ slide transitions */
.faq-accordion-item {
  display: block;
  transition: opacity 0.3s ease;
}

.faq-accordion-item.hidden {
  display: none;
}

/* ==========================================================================
   17. FINAL CTA (Dark Premium Gradient Glow Banner)
   ========================================================================== */
.final-cta-section {
  padding: var(--space-xxl) 0;
  position: relative;
  z-index: 5;
  background-color: #030712;
  overflow: hidden;
}

.final-cta-card {
  position: relative;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(99, 102, 241, 0.05) 50%, rgba(168, 85, 247, 0.05) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xxl) var(--space-md);
  text-align: center;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.final-cta-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.03) 60%, transparent 100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.final-cta-description {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

/* ==========================================================================
   18. SITE FOOTER
   ========================================================================== */
.site-footer {
  background-color: #030712;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
  padding: var(--space-xxl) 0 var(--space-lg);
  font-size: 0.95rem;
}

.site-footer a {
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--color-primary);
}

.footer-widgets {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .footer-widgets {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-widgets {
    grid-template-columns: 2fr 1fr 1fr 2fr;
  }
}

.footer-widget-title {
  color: var(--color-text);
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-widget p {
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.footer-socials {
  display: flex;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
}

.social-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  transition: all 0.3s ease;
}

.social-icon-btn:hover {
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.3);
  color: var(--color-primary);
  transform: translateY(-2px);
}

/* Footer Navigation list fixes */
.footer-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-widget ul li {
  margin-bottom: 10px;
}

/* Contact lists and submenu resets */
.contact-details-list li {
  position: relative;
  line-height: 1.5;
}

/* Newsletter input layouts */
.newsletter-form {
  display: flex;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
}

.newsletter-input {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-family: var(--font-secondary);
  font-size: 0.9rem;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.15);
}

.newsletter-form .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px var(--space-sm);
}

/* Footer Bottom border details */
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-copyright {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE FIXES
   ========================================================================== */

/* Tablet & Mobile Layout Adjustments (Under 1024px) */
@media (max-width: 1023px) {
  /* Hero Section */
  .hero-section {
    padding-top: 100px;
    padding-bottom: 60px;
    min-height: auto;
    height: auto;
  }
  .hero-layout {
    grid-template-columns: 50% 50%;
    gap: var(--space-md);
    text-align: left;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-heading {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem) !important;
  }
  .hero-description {
    margin-left: 0;
    margin-right: 0;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .hero-ctas {
    justify-content: flex-start;
  }
  .hero-trust-indicators {
    justify-content: flex-start;
  }
  .hero-visual {
    height: 300px;
    width: 100%;
  }

  /* Services Grid */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  

  
  /* Process Cards */
  .process-card {
    height: auto;
    min-height: 250px;
    padding: 30px 20px 24px;
  }
  .process-mobile-connector {
    bottom: -32px;
    height: 32px;
  }
}

/* Mobile Layout Adjustments (Under 768px) */
@media (max-width: 767px) {
  /* Containers */
  .container {
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
  }
  
  /* Section Padding */
  section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  /* Hero Section Mobile */
  .hero-section {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    background-position: bottom center !important;
    background-size: cover !important;
    padding-top: 80px !important;
    padding-bottom: 40px !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
  }
  .hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,8,18,0.96) 0%, rgba(5,8,18,0.85) 65%, rgba(5,8,18,0.2) 100%) !important;
    pointer-events: none;
    z-index: 1;
  }

  .hero-layout {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    gap: 24px !important;
    position: relative;
    z-index: 5;
  }

  .hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    width: 100% !important;
  }
  
  /* Typography Resizing */
  .hero-heading {
    font-size: clamp(38px, 9vw, 44px) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em !important;
    text-align: left !important;
  }
  .hero-heading br {
    display: none !important;
  }

  .hero-description {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 17px !important;
    line-height: 1.6 !important;
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .hero-ctas {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px !important;
    align-items: stretch !important;
    margin-top: 12px !important;
  }

  .hero-ctas .btn {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 52px !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }

  .hero-visual {
    display: none !important;
  }

  .hero-trust-indicators {
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
  }
  
  /* Trusted Partners floating strip */
  .partner-strip-container {
    position: relative;
    transform: none;
    margin-top: 48px;
    bottom: auto;
    left: auto;
    width: 100%;
    z-index: 5;
  }
  .partner-strip-card {
    padding: 20px 16px;
    border-radius: 16px;
  }
  .partner-strip-logos {
    overflow: hidden !important;
    padding-bottom: 0 !important;
  }
  .partner-logos-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: var(--space-lg) !important;
    justify-content: flex-start !important;
    width: max-content !important;
  }

  /* Services Cards stacking */
  .services-grid {
    grid-template-columns: 1fr !important;
  }
  .service-card {
    padding: 24px 16px;
  }

  /* Industries Cards overrides */
  .industry-card {
    height: auto !important;
    padding: 28px 16px 24px !important;
    width: 260px !important;
  }
  
  /* Awards Cards Track gap */
  .awards-slider-track {
    gap: 16px;
  }
  .award-slide {
    width: 285px;
  }
  
  /* Testimonials slider slides */
  .testimonial-slide {
    width: calc(100vw - 32px) !important;
    max-width: 100% !important;
  }
  .testimonials-slider-track {
    gap: 16px;
  }
  .testimonial-card {
    padding: 24px 16px;
  }
  
  /* FAQ Search/Filters */
  .faq-filter-container {
    width: 100%;
    max-width: 100%;
  }
  .faq-categories {
    gap: 6px;
  }
  .faq-cat-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  .accordion-trigger {
    font-size: 0.95rem;
  }

  /* Final CTA Card */
  .final-cta-card {
    padding: 48px 16px;
    border-radius: 16px;
  }
  .final-cta-heading {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }
  
  /* Footer widgets stacked */
  .footer-widgets {
    grid-template-columns: 1fr !important;
    gap: var(--space-lg);
  }
}

/* Small Viewport Buttons stacking (Under 480px) */
@media (max-width: 480px) {
  .hero-ctas,
  .final-cta-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .hero-ctas .btn,
  .final-cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  /* Statistics cards stacking */
  .stats-grid {
    grid-template-columns: 1fr !important;
    gap: var(--space-md);
  }
}

/* ==========================================================================
   INDUSTRIES INTERACTIVE TABS STYLE OVERRIDES
   ========================================================================== */

/* ==========================================================================
   INDUSTRIES INTERACTIVE TABS STYLE OVERRIDES
   ========================================================================== */

.industries-tabs-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.industries-selector-split {
  display: flex;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  width: 100%;
  height: 80px;
  box-sizing: border-box;
  align-items: center;
  user-select: none;
}

.industry-active-fixed {
  flex-shrink: 0;
  width: 200px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  height: 100%;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  box-sizing: border-box;
}

.industry-active-fixed .industry-tab-btn {
  width: 100%;
  height: 100%;
  border: none !important;
  border-radius: 0;
}

.industry-carousel-viewport {
  flex-grow: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  cursor: grab;
}

.industry-carousel-viewport:active {
  cursor: grabbing;
}

.industry-carousel-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  height: 100%;
}

.industry-tab-btn {
  background: transparent;
  border-left: none;
  border-top: none;
  border-bottom: none;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0 24px;
  color: var(--color-text-muted);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  height: 100%;
  box-sizing: border-box;
  text-align: center;
}

.industry-tab-btn .tab-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  transition: all 250ms ease;
}

.industry-tab-btn .tab-icon svg {
  width: 20px;
  height: 20px;
}

.industry-tab-btn:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.02);
}

.industry-tab-btn:hover .tab-icon {
  opacity: 0.85 !important;
}

.industry-tab-btn.active {
  background: transparent !important;
  color: #fff !important;
}

.industry-tab-btn.active .tab-icon {
  opacity: 1 !important;
}

.tab-active-indicator {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 40px;
  height: 2px;
  border-radius: 2px;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-tab-btn.active .tab-active-indicator {
  transform: translateX(-50%) scaleX(1) !important;
}

/* Accent Color mappings for tab icons and lines */
.industry-tab-btn.accent-blue.active .tab-active-indicator { background-color: #3b82f6 !important; box-shadow: 0 0 8px rgba(59, 130, 246, 0.6); }
.industry-tab-btn.accent-blue.active .tab-icon { color: #3b82f6; }

.industry-tab-btn.accent-cyan.active .tab-active-indicator { background-color: #06b6d4 !important; box-shadow: 0 0 8px rgba(6, 182, 212, 0.6); }
.industry-tab-btn.accent-cyan.active .tab-icon { color: #06b6d4; }

.industry-tab-btn.accent-green.active .tab-active-indicator { background-color: #10b981 !important; box-shadow: 0 0 8px rgba(16, 185, 129, 0.6); }
.industry-tab-btn.accent-green.active .tab-icon { color: #10b981; }

.industry-tab-btn.accent-purple.active .tab-active-indicator { background-color: #8b5cf6 !important; box-shadow: 0 0 8px rgba(139, 92, 246, 0.6); }
.industry-tab-btn.accent-purple.active .tab-icon { color: #8b5cf6; }

.industry-tab-btn.accent-orange.active .tab-active-indicator { background-color: #f97316 !important; box-shadow: 0 0 8px rgba(249, 115, 22, 0.6); }
.industry-tab-btn.accent-orange.active .tab-icon { color: #f97316; }

.industry-tab-btn.accent-yellow.active .tab-active-indicator { background-color: #eab308 !important; box-shadow: 0 0 8px rgba(234, 179, 8, 0.6); }
.industry-tab-btn.accent-yellow.active .tab-icon { color: #eab308; }

.industry-tab-btn.accent-pink.active .tab-active-indicator { background-color: #ec4899 !important; box-shadow: 0 0 8px rgba(236, 72, 153, 0.6); }
.industry-tab-btn.accent-pink.active .tab-icon { color: #ec4899; }

.industry-tab-btn.accent-royal-blue.active .tab-active-indicator { background-color: #1d4ed8 !important; box-shadow: 0 0 8px rgba(29, 78, 216, 0.6); }
.industry-tab-btn.accent-royal-blue.active .tab-icon { color: #1d4ed8; }

/* Panel configurations */
.industry-panel {
  display: none;
}

.industry-panel.active {
  display: block;
}

.industry-panel-content {
  display: grid;
  grid-template-columns: 48% 52%;
  gap: var(--space-xl);
  align-items: center;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 48px;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.panel-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel-badge {
  color: var(--color-accent-fg, #6366f1);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.panel-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.panel-desc {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.panel-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.feature-item-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 8px 12px;
  border-radius: 30px;
}

.pill-check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-accent-bg, rgba(99, 102, 241, 0.1));
  color: var(--color-accent-fg, #6366f1);
}

.pill-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: #e2e8f0;
}

.panel-right {
  position: relative;
  width: 100%;
}

.panel-image-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0.2);
  aspect-ratio: 16 / 10;
}

.panel-preview-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.panel-image-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, var(--color-accent-bg, rgba(99, 102, 241, 0.15)) 0%, transparent 100%);
  pointer-events: none;
  opacity: 0.6;
}

/* Placeholder mockup styles */
.panel-preview-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.01) 0%, rgba(255,255,255,0.03) 100%);
  height: 100%;
  width: 100%;
  border-radius: 16px;
  border: 1px dashed rgba(255,255,255,0.1);
  padding: 32px;
  aspect-ratio: 16 / 10;
}

.placeholder-icon {
  color: var(--color-accent-fg, #6366f1);
  margin-bottom: 12px;
  opacity: 0.7;
}

.placeholder-icon svg {
  width: 32px;
  height: 32px;
}

.placeholder-text {
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
}

/* Animations on tab switch */
.industry-panel.active .panel-badge { animation: slideUpFade 350ms forwards; }
.industry-panel.active .panel-title { animation: slideUpFade 400ms forwards; }
.industry-panel.active .panel-desc { animation: slideUpFade 450ms forwards; }
.industry-panel.active .panel-features-grid { animation: slideUpFade 500ms forwards; }
.industry-panel.active .panel-action { animation: slideUpFade 550ms forwards; }
.industry-panel.active .panel-right { animation: scaleUpFade 500ms forwards; }

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleUpFade {
  from {
    opacity: 0;
    transform: scale(0.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Panel Accent definitions */
.industry-panel {
  --color-accent-fg: var(--accent-color, #3b82f6) !important;
  --color-accent-bg: color-mix(in srgb, var(--accent-color, #3b82f6) 10%, transparent) !important;
}

/* Responsive adjustments */
@media (max-width: 1023px) {
  .industry-panel-content {
    grid-template-columns: 1fr !important;
    gap: var(--space-lg);
    padding: 32px;
  }
}

@media (max-width: 767px) {
  .industry-active-fixed {
    width: 35% !important;
  }
  .industry-carousel-viewport {
    width: 65% !important;
  }
  .industry-tab-btn {
    padding: 0 16px;
  }
  .industry-panel-content {
    padding: 24px 16px;
    border-radius: 16px;
  }
  .panel-features-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .panel-right {
    order: 6; /* Image appears below on mobile */
  }
}

/* Page Header Hero override rules */
.hero-section.page-header-hero {
  min-height: 250px !important;
  max-height: none !important;
  height: auto !important;
  padding-top: 140px !important;
  padding-bottom: 50px !important;
}

@media (max-width: 1023px) {
  .hero-section.page-header-hero {
    min-height: 220px !important;
    padding-top: 120px !important;
    padding-bottom: 45px !important;
  }
}

@media (max-width: 767px) {
  .hero-section.page-header-hero {
    min-height: 180px !important;
    padding-top: 100px !important;
    padding-bottom: 40px !important;
  }
}





