@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-dark: #030A1F;
  --bg-panel: #06162F;
  --bg-card: rgba(10, 22, 52, 0.75);
  
  --color-neon-green: #00FFB2; /* Neon Emerald */
  --color-neon-cyan: #00D9FF;  /* Electric Cyan */
  --color-purple: #3B82F6;     /* Highlight Soft Blue instead of Purple */
  --color-gold: #f6b44b;
  
  --text-main: #F8FAFC;
  --text-muted: #A8B3CF;
  --text-very-muted: #6F7A99;
  
  --glass-bg: rgba(10, 22, 52, 0.75);
  --glass-border: rgba(0, 255, 178, 0.18);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.35);
  
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* Global Styles */
* {
  box-sizing: border-box;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image: 
    linear-gradient(135deg, rgba(0, 217, 255, 0.08) 0%, transparent 50%),
    linear-gradient(225deg, rgba(0, 255, 153, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 10% 20%, rgba(0, 217, 255, 0.04) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(0, 255, 153, 0.04) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
  background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Custom Slim Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 217, 255, 0.2);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-neon-cyan);
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Keyboard Focus States */
:focus-visible {
  outline: 2px solid var(--color-neon-cyan);
  outline-offset: 4px;
}

/* Page Container Limit */
.container {
  max-width: 1200px;
}

/* Spacing Standards */
section {
  padding: 100px 0;
  position: relative;
}

section h2 {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.95);
}

section p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 28px;
}

.margin-bottom-24 {
  margin-bottom: 24px !important;
}

/* Visual Utilities */
.text-neon-green { color: var(--color-neon-green) !important; }
.text-neon-cyan { color: var(--color-neon-cyan) !important; }
.text-purple { color: var(--color-purple) !important; }
.text-gold { color: var(--color-gold) !important; }
.text-muted { color: var(--text-muted) !important; }
.bg-panel-dim { background-color: rgba(6, 11, 46, 0.4); }
.border-light-dim { border-color: rgba(255, 255, 255, 0.05) !important; }
.border-neon-cyan { border-color: rgba(0, 217, 255, 0.3) !important; }
.border-neon-green { border-color: rgba(0, 255, 153, 0.3) !important; }
.bg-cyan-dim { background-color: rgba(0, 217, 255, 0.1); }
.max-width-600 { max-width: 600px; }
.max-width-800 { max-width: 800px; }
.uppercase { text-transform: uppercase; letter-spacing: 0.05em; }
.extra-small { font-size: 0.75rem; }

/* Section Title */
.section-title {
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-neon-green);
  margin-bottom: 28px;
  display: block;
  position: relative;
  padding-left: 0;
  animation: slideInLeft 0.6s ease-out;
}

.section-title::before {
  display: none;
}

/* Glassmorphism Cards */
.glass-card {
  background: rgba(6, 11, 46, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.2px solid rgba(0, 217, 255, 0.15);
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Interactive card hover overrides for non-mobile devices */
@media (hover: hover) {
  .glass-card:hover {
    border-color: rgba(0, 217, 255, 0.35);
    background: rgba(6, 11, 46, 0.65);
    box-shadow: 0 25px 60px rgba(0, 217, 255, 0.18), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
  }
}

/* Form Styling */
.glass-input {
  background: rgba(2, 5, 31, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-main) !important;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 16px; /* Prevents iOS auto-zoom */
  transition: all 0.3s ease;
}

.glass-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

/* Form validation styling */
.glass-input:focus {
  background: rgba(2, 5, 31, 0.8);
  outline: none;
}

.glass-input:focus:invalid {
  border-color: #ef4444;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.25);
}

.glass-input:focus:valid {
  border-color: var(--color-neon-green);
  box-shadow: 0 0 15px rgba(0, 255, 153, 0.25);
}

select.glass-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2394a3b8' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 12px;
}

select.glass-input option {
  background-color: var(--bg-dark);
  color: var(--text-main);
}

/* Buttons and Hovers */
.btn-primary-neon {
  background: linear-gradient(135deg, var(--color-neon-green) 0%, #00ff99 100%);
  color: #000 !important;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  padding: 14px 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 20px rgba(0, 255, 153, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.btn-primary-neon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn-outline-neon {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main) !important;
  font-weight: 600;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 14px 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  backdrop-filter: blur(10px);
}

@media (hover: hover) {
  .btn-primary-neon:hover {
    background: linear-gradient(135deg, #00ff99 0%, #00ff99 100%);
    box-shadow: 0 15px 35px rgba(0, 255, 153, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-3px) scale(1.03);
    filter: brightness(1.15);
  }
  .btn-primary-neon:hover::before {
    left: 100%;
  }
  .btn-outline-neon:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: var(--color-neon-cyan);
    color: var(--color-neon-cyan) !important;
    box-shadow: 0 10px 25px rgba(0, 217, 255, 0.3);
    transform: translateY(-3px) scale(1.03);
  }
}

/* Header Navigation */
.navbar {
  background: rgba(2, 5, 31, 0.75) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.2rem 0; /* Increased padding for premium breathing space */
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Scroll state dropshadow */
.navbar.scrolled {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  border-bottom-color: rgba(0, 217, 255, 0.2);
  padding: 0.8rem 0; /* Slightly shrink on scroll */
  background: rgba(2, 5, 31, 0.85) !important;
}

.navbar-brand {
  padding-left: 10px; /* Logo padding alignment */
}

.nav-link {
  color: var(--text-muted) !important;
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0 14px;
  position: relative;
  transition: color 0.3s ease;
  padding: 6px 0 !important;
  letter-spacing: 0.02em;
  min-height: 44px; /* Click target height */
  display: flex;
  align-items: center;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-neon-cyan), var(--color-neon-green));
  transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
  opacity: 1;
}

/* Premium SaaS CTA */
.btn-premium-cta {
  background: linear-gradient(135deg, var(--color-neon-green) 0%, var(--color-neon-cyan) 100%);
  color: #000 !important;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(0, 217, 255, 0.25);
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-premium-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: all 0.6s ease;
}

@media (hover: hover) {
  .btn-premium-cta:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 217, 255, 0.45);
    color: #000 !important;
  }
  .btn-premium-cta:hover::before {
    left: 100%;
  }
}

/* Nav Action Icons */
.nav-action-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
}
.nav-action-icon:hover {
  color: var(--color-neon-cyan);
  background: rgba(0, 217, 255, 0.1);
  border-color: rgba(0, 217, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 217, 255, 0.15);
}

/* Hamburger transition close state */
.navbar-toggler {
  padding: 8px;
  outline: none;
  min-width: 44px;
  min-height: 44px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Mobile dropdown fix styling */
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--bg-panel);
    border-radius: 12px;
    padding: 20px;
    margin-top: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
}

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

.hero-subtitle {
  color: var(--color-neon-green);
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  display: block;
  animation: fadeInDown 0.8s ease-out;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-title span {
  color: var(--color-neon-green);
}

.hero-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 65ch;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Social proof hero rating styling */
.hero-social-proof {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 15px;
}

/* Floating 3D Dashboard Image */
.hero-image-wrapper {
  position: relative;
  z-index: 2;
  perspective: 1000px;
}

/* Dashboard Responsive Styling */
@media (max-width: 1199px) {
  .dashboard-scene {
    height: 600px;
  }
  .db-mockup-card {
    height: 380px;
    max-width: 640px;
  }
}

@media (max-width: 991px) {
  .hero-section {
    padding: 80px 0 50px;
    min-height: auto;
  }
  .dashboard-scene {
    height: 550px;
    margin-top: 40px;
  }
  .db-mockup-card {
    height: 350px;
    max-width: 580px;
  }
  .standing-cards-container {
    bottom: -70px;
  }
}
/* 3D Dashboard Scene Container */
.dashboard-scene {
  position: relative;
  width: 100%;
  height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  margin-top: 0;
  padding: 40px 20px;
  animation: fadeInRight 0.8s ease-out 0.3s both;
}

/* Dashboard Rating Badge */
.db-rating-badge {
  position: absolute;
  top: -15px;
  right: 30px;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, rgba(0, 255, 153, 0.95) 0%, rgba(0, 217, 255, 0.85) 100%);
  border: 2.5px solid rgba(0, 255, 153, 0.8);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 0 40px rgba(0, 255, 153, 0.5),
    0 15px 40px rgba(0, 255, 153, 0.35),
    0 0 80px rgba(0, 217, 255, 0.25),
    inset 0 1px 2px rgba(255, 255, 255, 0.3);
  animation: ratingPulse 2.5s ease-in-out infinite;
  z-index: 15;
}

.db-rating-text {
  font-size: 2.2rem;
  font-weight: 900;
  color: #000;
  line-height: 1;
  letter-spacing: -0.05em;
}

.db-rating-label {
  font-size: 0.65rem;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

/* Pedestal 3D Platform */
.pedestal-platform {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%) rotateX(75deg);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.25) 0%, rgba(0, 255, 153, 0.08) 40%, transparent 75%);
  border: 3px solid rgba(0, 217, 255, 0.35);
  box-shadow: 0 0 60px rgba(0, 217, 255, 0.6), inset 0 0 60px rgba(0, 217, 255, 0.3), 0 0 100px rgba(0, 255, 153, 0.2);
  z-index: 0;
  animation: pedestalPulse 5s ease-in-out infinite;
}

@keyframes pedestalPulse {
  0%, 100% {
    box-shadow: 0 0 50px rgba(0, 217, 255, 0.6), inset 0 0 50px rgba(0, 217, 255, 0.4), 0 0 100px rgba(0, 255, 153, 0.15);
    border-color: var(--color-neon-cyan);
    transform: translateX(-50%) rotateX(75deg) scale(1);
  }
  50% {
    box-shadow: 0 0 80px rgba(0, 255, 153, 0.7), inset 0 0 80px rgba(0, 255, 153, 0.5), 0 0 150px rgba(0, 217, 255, 0.2);
    border-color: var(--color-neon-green);
    transform: translateX(-50%) rotateX(75deg) scale(1.05);
  }
}

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

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes dbCardFloat {
  0%, 100% {
    transform: rotateY(-5deg) rotateX(2deg) translateY(0px);
  }
  50% {
    transform: rotateY(-5deg) rotateX(2deg) translateY(-12px);
  }
}

@keyframes cardPulse {
  0%, 100% {
    box-shadow: 
      0 0 40px rgba(0, 217, 255, 0.15),
      0 25px 50px rgba(0, 0, 0, 0.85),
      inset 0 1px 1px rgba(255, 255, 255, 0.08);
  }
  50% {
    box-shadow: 
      0 0 60px rgba(0, 217, 255, 0.25),
      0 25px 50px rgba(0, 0, 0, 0.85),
      inset 0 1px 1px rgba(255, 255, 255, 0.1);
  }
}

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

@keyframes ratingPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 30px rgba(0, 255, 153, 0.4), 0 0 60px rgba(0, 217, 255, 0.2);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 50px rgba(0, 255, 153, 0.6), 0 0 100px rgba(0, 217, 255, 0.35);
  }
}

@keyframes ratingGlow {
  0%, 100% {
    border-color: rgba(0, 255, 153, 0.5);
  }
  50% {
    border-color: rgba(0, 217, 255, 0.7);
  }
}

/* Dashboard Mockup Card */
.db-mockup-card {
  position: relative;
  width: 100%;
  max-width: 680px;
  height: 410px;
  background: linear-gradient(135deg, rgba(6, 11, 46, 0.98) 0%, rgba(6, 11, 46, 0.92) 100%);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1.8px solid rgba(0, 217, 255, 0.28);
  border-radius: 20px;
  box-shadow: 
    0 0 60px rgba(0, 217, 255, 0.25),
    0 30px 100px rgba(0, 217, 255, 0.22),
    0 0 120px rgba(0, 217, 255, 0.15),
    inset 0 1px 2px rgba(255, 255, 255, 0.12);
  transform: rotateY(-5deg) rotateX(2deg) translate3d(0, 0, 0);
  z-index: 2;
  display: flex;
  overflow: visible;
  font-family: 'Inter', sans-serif;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  animation: dbCardFloat 4s ease-in-out infinite;
}

.dashboard-scene:hover .db-mockup-card {
  transform: rotateY(0deg) rotateX(0deg) scale(1.02) translate3d(0, -8px, 0);
  border-color: rgba(0, 217, 255, 0.5);
  box-shadow: 
    0 0 80px rgba(0, 217, 255, 0.35),
    0 40px 120px rgba(0, 217, 255, 0.28),
    0 0 150px rgba(0, 217, 255, 0.2),
    inset 0 1px 2px rgba(255, 255, 255, 0.15);
  z-index: 10;
}

/* Mockup Sidebar */
.db-sidebar {
  width: 130px;
  background: rgba(2, 5, 31, 0.8);
  border-right: 1px solid rgba(0, 217, 255, 0.15);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.db-sidebar-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.db-sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.db-menu-item {
  font-size: 0.6rem;
  color: var(--text-muted);
  padding: 6px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.db-menu-item.active, .db-menu-item:hover {
  background: rgba(0, 255, 153, 0.1);
  color: var(--color-neon-green);
}

.db-menu-item i, .db-menu-item svg {
  width: 12px;
  height: 12px;
}

/* Mockup Main Content */
.db-main {
  flex: 1;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.db-main-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.db-user-greet {
  font-size: 0.6rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.db-avatar-img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--color-neon-cyan);
  object-fit: cover;
}

/* Mockup Metrics Grid */
.db-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.db-metric-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1.2px solid rgba(0, 217, 255, 0.18);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 8px 20px rgba(0, 217, 255, 0.08), inset 0 1px 1px rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.db-metric-card:hover {
  border-color: rgba(0, 217, 255, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
  box-shadow: 0 12px 30px rgba(0, 217, 255, 0.12), inset 0 1px 1px rgba(255, 255, 255, 0.08);
}

.db-m-label {
  font-size: 0.55rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.db-m-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.db-m-sub {
  font-size: 0.5rem;
  font-weight: 600;
  color: var(--color-neon-green);
  display: flex;
  align-items: center;
  gap: 2px;
  margin-top: 2px;
}

/* Mockup Charts Row */
.db-charts-row {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 8px;
  flex: 1;
}

.db-chart-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1.2px solid rgba(0, 217, 255, 0.15);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  box-shadow: 0 10px 25px rgba(0, 217, 255, 0.1), inset 0 1px 1px rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.db-chart-box:hover {
  border-color: rgba(0, 217, 255, 0.28);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
}

.db-box-title {
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.db-growth-chart-wrap {
  position: relative;
  height: 110px;
  width: 100%;
}

.db-chart-badge {
  position: absolute;
  bottom: 25px;
  right: 10px;
  background: rgba(0, 255, 153, 0.15);
  color: var(--color-neon-green);
  border: 1px solid rgba(0, 255, 153, 0.3);
  border-radius: 4px;
  font-size: 0.55rem;
  padding: 2px 6px;
  font-weight: 700;
  pointer-events: none;
  z-index: 10;
}

.db-radial-chart-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 6px;
}

.db-radial-progress {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: conic-gradient(var(--color-neon-cyan) calc(var(--percent) * 1%), rgba(255, 255, 255, 0.08) 0);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.3), inset 0 0 30px rgba(0, 217, 255, 0.1);
  animation: radialSpin 20s linear infinite;
}

.db-radial-progress::before {
  content: '';
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #060b2e 0%, rgba(6, 11, 46, 0.95) 100%);
  z-index: 1;
}

.db-radial-value {
  position: relative;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  z-index: 2;
}

.db-radial-label {
  font-size: 0.5rem;
  color: var(--text-muted);
  text-align: center;
}

/* Standing Cards Container */
.standing-cards-container {
  position: absolute;
  bottom: -65px;
  display: flex;
  gap: 18px;
  z-index: 4;
  width: 100%;
  justify-content: center;
  padding: 0 20px;
  transform: translate3d(0, 0, 50px);
  flex-wrap: wrap;
}

.standing-card {
  background: linear-gradient(135deg, rgba(6, 11, 46, 0.97) 0%, rgba(6, 11, 46, 0.93) 100%);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1.5px solid rgba(0, 217, 255, 0.28);
  border-radius: 16px;
  padding: 22px 16px;
  width: 145px;
  text-align: center;
  box-shadow: 
    0 0 40px rgba(0, 217, 255, 0.15),
    0 25px 50px rgba(0, 0, 0, 0.85),
    inset 0 1px 1px rgba(255, 255, 255, 0.08);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: cardPulse 3s ease-in-out infinite;
}

.standing-card:hover {
  transform: translateY(-14px) scale(1.1);
  border-color: var(--color-neon-green);
  box-shadow: 
    0 0 60px rgba(0, 255, 153, 0.25),
    0 30px 60px rgba(0, 255, 153, 0.5),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.sc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 217, 255, 0.12);
  color: var(--color-neon-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  border: 1.2px solid rgba(0, 217, 255, 0.3);
}

.sc-icon svg {
  width: 20px;
  height: 20px;
}

.standing-card.card-erp .sc-icon {
  background: rgba(139, 92, 246, 0.1);
  color: var(--color-purple);
  border-color: rgba(139, 92, 246, 0.2);
}

.standing-card.card-ai .sc-icon {
  background: rgba(0, 255, 153, 0.1);
  color: var(--color-neon-green);
  border-color: rgba(0, 255, 153, 0.2);
}

.standing-card.card-whatsapp .sc-icon {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border-color: rgba(34, 197, 94, 0.2);
}

.sc-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.sc-desc {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

/* Premium Unified Stats Bar */
.stats-bar-premium {
  background: rgba(6, 11, 46, 0.7);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  border: 1.2px solid rgba(0, 217, 255, 0.18);
  border-radius: 24px;
  padding: 50px 60px;
  box-shadow: 0 30px 80px rgba(0, 217, 255, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.05);
  margin-top: 80px;
  animation: slideInUp 0.8s ease-out 0.4s both;
}

.stats-bar-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.stats-bar-item {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  min-width: 240px;
}

.stats-bar-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 217, 255, 0.1);
  border: 1.2px solid rgba(0, 217, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-neon-cyan);
  flex-shrink: 0;
}

.stats-bar-item:nth-child(even) .stats-bar-icon-wrap {
  background: rgba(0, 255, 153, 0.1);
  border-color: rgba(0, 255, 153, 0.3);
  color: var(--color-neon-green);
}

.stats-bar-content {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.stats-bar-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.stats-bar-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.glow-platform {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 20px;
  background: radial-gradient(ellipse, rgba(0, 217, 255, 0.4), transparent 70%);
  filter: blur(20px);
  z-index: -1;
  animation: platformPulse 6s ease-in-out infinite;
}

@keyframes floatUpDown {
  0%, 100% { transform: rotateY(-8deg) rotateX(8deg) translateY(0); }
  50% { transform: rotateY(-8deg) rotateX(8deg) translateY(-15px); }
}

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

/* Page Header Title */
.page-header {
  padding: 130px 0 50px;
}

/* Stats Section Overlaps fix */
.stats-section .glass-card {
  padding: 24px 16px !important;
}

/* Services Page specific styles */
.service-card {
  padding: 42px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: 1.2px solid rgba(0, 217, 255, 0.12) !important;
  background: linear-gradient(135deg, rgba(6, 11, 46, 0.55) 0%, rgba(6, 11, 46, 0.45) 100%) !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.05), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

@media (hover: hover) {
  .service-card:hover {
    border-color: rgba(0, 217, 255, 0.3) !important;
    background: linear-gradient(135deg, rgba(6, 11, 46, 0.7) 0%, rgba(6, 11, 46, 0.6) 100%) !important;
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.2);
  }
  .service-card:hover::before {
    left: 100%;
  }
}

.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 255, 153, 0.15) 0%, rgba(0, 255, 153, 0.08) 100%);
  color: var(--color-neon-green);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(0, 255, 153, 0.25);
  transition: all 0.3s ease;
}

.service-card-icon.cyan {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.15) 0%, rgba(0, 217, 255, 0.08) 100%);
  color: var(--color-neon-cyan);
  border-color: rgba(0, 217, 255, 0.25);
}

.service-card-icon.purple {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(139, 92, 246, 0.08) 100%);
  color: var(--color-purple);
  border-color: rgba(139, 92, 246, 0.25);
}

.service-card-icon.gold {
  background: rgba(246, 180, 75, 0.1);
  color: var(--color-gold);
  border-color: rgba(246, 180, 75, 0.2);
}

.service-card-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-card-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Benefits Section Help Cards */
.help-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, rgba(0, 255, 153, 0.03) 100%);
  border-radius: 16px;
  border: 1.2px solid rgba(0, 217, 255, 0.15);
  height: 100%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@media (hover: hover) {
  .help-card:hover {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(0, 255, 153, 0.08) 100%);
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.1);
  }
}

.help-card .icon-wrapper {
  color: var(--color-neon-green);
  padding: 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 255, 153, 0.1) 0%, rgba(0, 255, 153, 0.05) 100%);
  line-height: 1;
  border: 1px solid rgba(0, 255, 153, 0.2);
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.help-card h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.help-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* Process Timeline (Connecting line) */
.process-timeline-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 40px;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 15px;
  width: 20%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.process-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(139, 92, 246, 0.08) 100%);
  border: 1.5px solid rgba(139, 92, 246, 0.3);
  color: var(--color-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.15);
}

@media (hover: hover) {
  .process-step:hover .process-icon {
    border-color: var(--color-neon-cyan);
    color: var(--color-neon-cyan);
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.35);
    transform: scale(1.1);
  }
}

.process-step.active .process-icon {
  border-color: var(--color-neon-green);
  color: var(--color-neon-green);
  box-shadow: 0 0 15px rgba(0, 255, 153, 0.25);
}

.process-step h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Physical connecting line */
.process-timeline-line {
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.4) 0%, rgba(0, 217, 255, 0.4) 100%);
  z-index: 1;
}

/* Process step details panel */
.process-details-panel {
  max-width: 600px;
  margin: 40px auto 0;
  display: none;
}

.process-details-panel.active {
  display: block;
}

/* Testimonial adjustments */
.testimonial-card {
  border: 1.2px solid rgba(0, 255, 153, 0.2) !important;
  background: linear-gradient(135deg, rgba(6, 11, 46, 0.6) 0%, rgba(6, 11, 46, 0.5) 100%) !important;
  padding: 48px !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@media (hover: hover) {
  .testimonial-card:hover {
    border-color: rgba(0, 217, 255, 0.35) !important;
    background: linear-gradient(135deg, rgba(6, 11, 46, 0.75) 0%, rgba(6, 11, 46, 0.65) 100%) !important;
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.15) !important;
  }
}

.testimonial-text {
  font-size: 1.3rem !important;
  line-height: 1.8;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}

.author-img {
  border: 2.5px solid var(--color-neon-green);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(0, 255, 153, 0.3);
  transition: all 0.3s ease;
}

@media (hover: hover) {
  .author-img:hover {
    box-shadow: 0 0 35px rgba(0, 255, 153, 0.5);
    transform: scale(1.05);
  }
}

/* CTA */
.cta-banner {
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(6, 11, 46, 0.9) 0%, rgba(2, 5, 31, 0.85) 50%, rgba(6, 11, 46, 0.85) 100%);
  text-align: center;
  border-top: 1.5px solid rgba(0, 217, 255, 0.15);
  border-bottom: 1.5px solid rgba(0, 217, 255, 0.15);
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

/* Footer Grid & Columns */
.footer {
  position: relative;
  background: linear-gradient(180deg, #030825 0%, #010312 100%);
  padding: 80px 0 32px;
  border-top: 2px solid rgba(0, 217, 255, 0.4);
  box-shadow: 0 -12px 50px rgba(0, 217, 255, 0.15);
  overflow: hidden;
  font-family: 'Inter', 'Satoshi', sans-serif;
}

/* Glassmorphism & Patterns */
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 1;
}

/* Glowing dots / ambient platforms */
.footer-glow-1 {
  position: absolute;
  top: -120px;
  left: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.footer-glow-2 {
  position: absolute;
  bottom: -100px;
  right: 15%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(0, 255, 178, 0.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* CTA Band */
.footer-cta-band {
  position: relative;
  z-index: 5;
  background: rgba(6, 11, 46, 0.6);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.footer-cta-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Buttons and Hovers */
.btn-primary-neon, .btn-outline-neon {
  font-size: 16px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-primary-neon {
  background: linear-gradient(90deg, #00FFB2 0%, #00D9FF 100%);
  border: none;
  color: #010312 !important;
}

.btn-primary-neon:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 255, 178, 0.4);
}

.btn-primary-neon svg, .btn-outline-neon svg {
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.btn-primary-neon:hover svg {
  transform: translateX(4px) !important;
}

.btn-outline-neon {
  border: 1.5px solid #00D9FF;
  background: transparent;
  color: #00D9FF !important;
}

.btn-outline-neon:hover {
  background: rgba(0, 217, 255, 0.08);
  border-color: #00FFB2;
  color: #00FFB2 !important;
  transform: translateY(-2px);
}

.btn-outline-neon:hover svg {
  transform: translate(3px, -3px) !important;
}

.btn-cta-arrow:hover .btn-arrow {
  transform: translateX(4px);
}

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

/* Brand logo and Tagline */
.footer-logo img {
  height: 48px !important; /* ~14% larger than header logo height (42px) */
  width: 48px !important; /* Square aspect ratio */
  object-fit: contain !important; /* Avoid stretching */
  transition: all 0.3s ease;
}

.footer-logo img:hover {
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35)); /* Subtle shadow, no high glow */
}

.footer-tagline {
  color: #9CA8C8;
  font-size: 15px;
  line-height: 1.5;
  margin-top: 12px;
  font-weight: 500;
}

/* Badges */
.footer-badges {
  margin-top: 24px;
}

.badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  color: #9CA8C8;
  font-weight: 500;
  transition: all 0.3s ease;
}

.badge-chip i {
  width: 14px;
  height: 14px;
}

.badge-chip:hover {
  border-color: rgba(0, 217, 255, 0.3);
  background: rgba(0, 217, 255, 0.05);
  color: #ffffff;
}

/* Spacing and columns */
.footer-heading {
  font-size: 18px;
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #FFFFFF !important;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px; /* Vertical gap between 14px and 18px */
}

.footer-links a {
  color: #9CA8C8;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1.5px;
  bottom: -2px;
  left: 0;
  background: linear-gradient(90deg, #00D9FF, #00FFB2);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.footer-links a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.footer-links a:hover {
  color: #00FFB2;
  transform: translateX(4px);
}

.footer-links a:focus-visible {
  outline: 2px solid #00D9FF;
  outline-offset: 4px;
  border-radius: 4px;
}

/* Contact Micro Cards */
.contact-card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.contact-card-icon {
  color: #00D9FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.contact-card-icon i {
  width: 18px;
  height: 18px;
  stroke-width: 2px; /* Same stroke width */
}

.contact-card-info {
  color: #9CA8C8;
  font-size: 15px;
  font-weight: 500;
}

.contact-card-info a {
  color: #9CA8C8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-card-info a:hover {
  color: #00FFB2;
}

.contact-card-info a:focus-visible {
  outline: 2px solid #00D9FF;
  outline-offset: 4px;
}

/* Quick Action Buttons */
.footer-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.btn-contact-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-contact-action.btn-whatsapp {
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25D366 !important;
}

.btn-contact-action.btn-whatsapp:hover {
  background: rgba(37, 211, 102, 0.15);
  border-color: #25D366;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
  transform: translateY(-2px);
}

.btn-contact-action.btn-schedule {
  background: rgba(0, 217, 255, 0.08);
  border: 1px solid rgba(0, 217, 255, 0.3);
  color: #00D9FF !important;
}

.btn-contact-action.btn-schedule:hover {
  background: rgba(0, 217, 255, 0.15);
  border-color: #00D9FF;
  box-shadow: 0 4px 15px rgba(0, 217, 255, 0.2);
  transform: translateY(-2px);
}

/* Newsletter */
.newsletter-box {
  margin-top: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  backdrop-filter: blur(8px);
}

.newsletter-box p {
  color: #9CA8C8;
  font-size: 14px;
  margin-bottom: 12px;
}

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

.newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.newsletter-input::placeholder {
  color: rgba(156, 168, 200, 0.5);
}

.newsletter-input:focus {
  border-color: #00D9FF !important;
  box-shadow: 0 0 10px rgba(0, 217, 255, 0.2);
}

.newsletter-btn {
  background: linear-gradient(90deg, #00FFB2, #00D9FF);
  border: none;
  color: #010312;
  font-weight: 700;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  box-shadow: 0 4px 15px rgba(0, 255, 178, 0.3);
  transform: translateY(-1px);
}

.footer-social-title {
  margin: 0 0 10px;
  color: #F8FAFC;
  font-size: 0.86rem;
  font-weight: 700;
}

/* Social links styling */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  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: #9CA8C8;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-link svg,
.social-link i {
  width: 18px;
  height: 18px;
}

.social-link i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}

.social-link:hover {
  transform: scale(1.08);
  background: rgba(0, 217, 255, 0.1);
  color: #00D9FF !important;
  border-color: #00D9FF;
  box-shadow: 0 0 15px rgba(0, 217, 255, 0.4);
}

.social-link:focus-visible {
  outline: 2px solid #00D9FF;
  outline-offset: 4px;
}

/* Bottom Bar */
.footer-bottom-separator {
  height: 1px;
  background: rgba(255, 255, 255, 0.12); /* subtle 10-15% opacity */
  margin-top: 60px;
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #9CA8C8;
  font-size: 14px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

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

.footer-bottom-links a:hover {
  color: #00FFB2;
}

/* Mobile Accordions styling */
.collapse-icon {
  display: none;
}

@media (max-width: 991px) {
  .footer-heading {
    cursor: pointer;
    padding: 10px 0;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .collapse-icon {
    display: inline-block;
    transition: transform 0.3s ease;
  }
  .footer-heading[aria-expanded="true"] .collapse-icon {
    transform: rotate(180deg);
  }
  .footer-links {
    padding-bottom: 15px;
  }
  .footer-cta-band {
    padding: 30px 20px;
    text-align: center;
  }
  .footer-cta-band .btn-primary-neon,
  .footer-cta-band .btn-outline-neon {
    width: 100%;
    justify-content: center;
  }
}

/* Mobile & Responsiveness details */
@media (max-width: 991px) {
  .process-timeline-line {
    display: none;
  }
  .process-timeline-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .process-step {
    width: 100%;
  }
  .hero-title {
    font-size: 2.8rem;
  }

  .cta-banner {
    padding: 60px 30px;
  }
  .cta-content h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0; /* Optimized mobile padding */
  }
  .hero-section {
    padding: 120px 0 60px;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* Master-Level UI/UX Premium Enhancements */
.text-glowing-neon {
  text-shadow: 0 0 8px rgba(0, 255, 178, 0.25);
  font-weight: 800;
}

/* Dynamic Active Status Pulse Dot */
.pulse-indicator-green {
  width: 8px;
  height: 8px;
  background-color: var(--color-neon-green);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  box-shadow: 0 0 10px rgba(0, 255, 153, 0.7);
}

.pulse-indicator-green::after {
  content: '';
  position: absolute;
  top: -4px; left: -4px; right: -4px; bottom: -4px;
  border: 1px solid var(--color-neon-green);
  border-radius: 50%;
  animation: indicatorRipple 1.6s ease-out infinite;
  opacity: 0;
}

@keyframes indicatorRipple {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* Staggered Entrance Animations for Mockup Cards */
.standing-cards-container .standing-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUpStaggered 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.fade-in-up-delay-1 { animation-delay: 0.1s !important; }
.fade-in-up-delay-2 { animation-delay: 0.25s !important; }
.fade-in-up-delay-3 { animation-delay: 0.4s !important; }
.fade-in-up-delay-4 { animation-delay: 0.55s !important; }

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

/* Scroll Down Mouse Indicator */
.scroll-indicator-wrap {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--text-muted);
  border-radius: 12px;
  position: relative;
  opacity: 0.6;
  animation: scrollMouseFade 2.5s ease-in-out infinite;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background-color: var(--color-neon-green);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheelMove 1.6s ease-in-out infinite;
}

@keyframes scrollMouseFade {
  0%, 100% { opacity: 0.4; transform: translateY(0); }
  50% { opacity: 0.8; transform: translateY(4px); }
}

@keyframes scrollWheelMove {
  0% { top: 6px; opacity: 1; }
  100% { top: 20px; opacity: 0; }
}

/* Ultra Premium Dashboard Refresh */
.dashboard-scene {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 720px;
  padding: 44px 0 126px;
  isolation: isolate;
  perspective: 1800px;
  animation: fadeInRight 0.8s ease-out 0.3s both;
}

.dashboard-ambient {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(8px);
  opacity: 0.8;
  z-index: -1;
}

.ambient-cyan {
  width: 300px;
  height: 300px;
  top: 54px;
  right: 14px;
  background: radial-gradient(circle, rgba(93, 229, 255, 0.24), transparent 68%);
}

.ambient-gold {
  width: 260px;
  height: 260px;
  left: 42px;
  bottom: 66px;
  background: radial-gradient(circle, rgba(246, 180, 75, 0.2), transparent 72%);
}

.db-mockup-card {
  width: min(720px, 112%);
  height: 500px;
  max-width: none;
  margin-left: -4%;
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  overflow: visible;
  isolation: isolate;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 20%),
    radial-gradient(circle at 18% 10%, rgba(0, 255, 153, 0.16), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(246, 180, 75, 0.14), transparent 24%),
    linear-gradient(135deg, rgba(8, 13, 36, 0.98), rgba(2, 5, 23, 0.96) 58%, rgba(14, 20, 45, 0.98));
  border: 1px solid rgba(173, 216, 255, 0.22);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.56),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 70px rgba(0, 217, 255, 0.18),
    0 28px 90px rgba(0, 255, 153, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transform: rotateY(-8deg) rotateX(4deg) translate3d(0, 0, 0);
  backface-visibility: hidden;
  animation: dbPremiumFloat 6s ease-in-out infinite;
}

.db-mockup-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0, 255, 153, 0.55), rgba(93, 229, 255, 0.24), rgba(246, 180, 75, 0.35));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.7;
}

.db-mockup-card::after {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.045);
  pointer-events: none;
}

.dashboard-scene:hover .db-mockup-card {
  transform: rotateY(-2deg) rotateX(1deg) translate3d(0, -10px, 0) scale(1.015);
  border-color: rgba(93, 229, 255, 0.38);
  box-shadow:
    0 44px 110px rgba(0, 0, 0, 0.58),
    0 0 88px rgba(93, 229, 255, 0.26),
    0 34px 100px rgba(0, 255, 153, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.db-screen-grid,
.db-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.db-screen-grid {
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.9), transparent 72%);
}

.db-shine {
  z-index: 2;
  background: linear-gradient(116deg, transparent 0%, rgba(255, 255, 255, 0.08) 38%, transparent 52%);
  transform: translateX(-58%);
  animation: dbShineSweep 7s ease-in-out infinite;
}

.db-rating-badge {
  top: -24px;
  right: 24px;
  width: 86px;
  height: 86px;
  z-index: 7;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 28%, rgba(255, 255, 255, 0.9), transparent 18%),
    linear-gradient(135deg, #00ff99 0%, #5de5ff 55%, #f6b44b 100%);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow:
    0 0 38px rgba(0, 255, 153, 0.38),
    0 18px 46px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  animation: ratingPulse 3.4s ease-in-out infinite;
}

.db-rating-text {
  font-size: 1.92rem;
  line-height: 0.9;
  color: #031015;
  letter-spacing: -0.07em;
}

.db-rating-label {
  margin-top: 5px;
  color: rgba(3, 16, 21, 0.72);
  font-size: 0.56rem;
  letter-spacing: 0.11em;
}

.db-sidebar,
.db-main {
  position: relative;
  z-index: 3;
}

.db-sidebar {
  width: auto;
  padding: 16px 12px;
  gap: 14px;
  background: linear-gradient(180deg, rgba(3, 8, 26, 0.92), rgba(4, 9, 28, 0.72));
  border-right: 1px solid rgba(173, 216, 255, 0.13);
  border-radius: 18px 0 0 18px;
  display: flex;
  flex-direction: column;
}

.db-sidebar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  margin: 0;
}

.db-sidebar-logo img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  border-radius: 7px;
  filter: drop-shadow(0 0 12px rgba(0, 217, 255, 0.18));
}

.db-sidebar-logo span {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
}

.db-sidebar-menu {
  gap: 6px;
}

.db-menu-item {
  min-height: 34px;
  padding: 8px 9px;
  border-radius: 8px;
  gap: 8px;
  font-size: 0.64rem;
  font-weight: 650;
  color: rgba(199, 213, 232, 0.72);
  border: 1px solid transparent;
  background: transparent;
  white-space: nowrap;
}

.db-menu-item svg {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
}

.db-menu-item.active,
.db-menu-item:hover {
  color: #ffffff;
  border-color: rgba(0, 255, 153, 0.2);
  background:
    linear-gradient(135deg, rgba(0, 255, 153, 0.14), rgba(93, 229, 255, 0.08));
  box-shadow: inset 3px 0 0 rgba(0, 255, 153, 0.8);
}

.db-sidebar-footer {
  margin-top: auto;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.db-sidebar-footer span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(199, 213, 232, 0.78);
  font-size: 0.56rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.db-sidebar-footer strong {
  display: block;
  margin-top: 5px;
  color: #ffffff;
  font-size: 1.02rem;
  line-height: 1;
}

.db-main {
  padding: 16px;
  gap: 9px;
  min-width: 0;
  overflow: hidden;
}

.db-main-header {
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.db-headline {
  min-width: 0;
  text-align: left;
}

.db-kicker {
  display: block;
  color: rgba(93, 229, 255, 0.82);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.db-headline h3 {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: 1.02rem;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
}

.db-header-actions {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}

.db-health-chip,
.db-user-greet {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(238, 247, 255, 0.86);
  font-size: 0.6rem;
  font-weight: 700;
  white-space: nowrap;
}

.db-avatar-img {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(93, 229, 255, 0.65);
  box-shadow: 0 0 0 2px rgba(93, 229, 255, 0.08);
}

.db-insight-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.db-insight-item {
  min-width: 0;
  min-height: 42px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 7px;
  padding: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.075);
}

.db-insight-item svg {
  grid-row: 1 / span 2;
  width: 17px;
  height: 17px;
  color: #5de5ff;
}

.db-insight-item span {
  color: rgba(199, 213, 232, 0.7);
  font-size: 0.52rem;
  line-height: 1;
  text-align: left;
}

.db-insight-item strong {
  color: #ffffff;
  font-size: 0.78rem;
  line-height: 1.2;
  text-align: left;
}

.db-metrics-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.db-metric-card {
  --card-accent: #00ff99;
  position: relative;
  min-width: 0;
  min-height: 84px;
  padding: 10px;
  gap: 3px;
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--card-accent) 26%, transparent), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.086), rgba(255, 255, 255, 0.035));
  border: 1px solid color-mix(in srgb, var(--card-accent) 28%, rgba(255, 255, 255, 0.08));
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.db-metric-card::before {
  content: '';
  position: absolute;
  left: 10px;
  right: 10px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--card-accent), transparent);
  opacity: 0.72;
}

.db-metric-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--card-accent) 42%, rgba(255, 255, 255, 0.1));
  background:
    radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--card-accent) 31%, transparent), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.102), rgba(255, 255, 255, 0.04));
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.24),
    0 0 24px color-mix(in srgb, var(--card-accent) 16%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.db-metric-card .db-m-sub.text-neon-green {
  display: none;
}

.db-m-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
  border-radius: 7px;
  color: var(--card-accent);
  background: color-mix(in srgb, var(--card-accent) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--card-accent) 24%, transparent);
}

.db-m-icon svg {
  width: 14px;
  height: 14px;
}

.tint-emerald { --card-accent: #00ff99; }
.tint-cyan { --card-accent: #5de5ff; }
.tint-violet { --card-accent: #a78bfa; }
.tint-gold { --card-accent: #f6b44b; }

.db-m-label {
  font-size: 0.52rem;
  line-height: 1;
  color: rgba(199, 213, 232, 0.78);
  letter-spacing: 0.05em;
}

.db-m-val {
  font-size: clamp(0.82rem, 1.24vw, 1.08rem);
  line-height: 1.08;
  font-weight: 850;
  letter-spacing: 0;
}

.db-m-sub {
  font-size: 0.5rem;
  line-height: 1.2;
  color: color-mix(in srgb, var(--card-accent) 86%, #ffffff);
}

.db-charts-row {
  grid-template-columns: minmax(0, 1.58fr) minmax(118px, 0.82fr);
  gap: 8px;
  min-height: 138px;
}

.db-chart-box,
.db-pipeline-card,
.db-activity-card {
  min-width: 0;
  border-radius: 8px;
  padding: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(173, 216, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.db-chart-box:hover,
.db-pipeline-card:hover,
.db-activity-card:hover {
  border-color: rgba(93, 229, 255, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.032));
}

.db-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  min-height: 18px;
}

.db-box-title {
  color: rgba(238, 247, 255, 0.72);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.db-chart-badge,
.db-mini-status {
  position: static;
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(0, 255, 153, 0.11);
  border: 1px solid rgba(0, 255, 153, 0.2);
  color: #a7ffd8;
  font-size: 0.52rem;
  font-weight: 800;
  line-height: 1;
}

.db-growth-chart-wrap {
  height: 112px;
  margin-top: 6px;
}

.db-growth-chart-wrap canvas {
  width: 100% !important;
  height: 100% !important;
}

.db-radial-chart-wrap {
  gap: 7px;
  min-height: 112px;
}

.db-radial-progress {
  width: 76px;
  height: 76px;
  background:
    conic-gradient(from 210deg, #5de5ff calc(var(--percent) * 1%), rgba(255, 255, 255, 0.075) 0);
  box-shadow:
    0 0 26px rgba(93, 229, 255, 0.24),
    inset 0 0 26px rgba(0, 0, 0, 0.2);
  animation: none;
}

.db-radial-progress::before {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, rgba(6, 11, 34, 0.98), rgba(15, 21, 50, 0.98));
}

.db-radial-value {
  font-size: 0.96rem;
  font-weight: 850;
}

.db-radial-label {
  font-size: 0.52rem;
  color: rgba(199, 213, 232, 0.72);
}

.db-bottom-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 8px;
  min-height: 94px;
}

.db-pipeline-card,
.db-activity-card {
  padding: 9px;
}

.db-pipeline-row {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.db-pipeline-row span,
.db-pipeline-row strong {
  font-size: 0.55rem;
  line-height: 1;
}

.db-pipeline-row span {
  color: rgba(199, 213, 232, 0.72);
  text-align: left;
}

.db-pipeline-row strong {
  color: rgba(255, 255, 255, 0.92);
  text-align: right;
}

.db-pipeline-track {
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.075);
  overflow: hidden;
}

.db-pipeline-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #00ff99, #5de5ff);
  box-shadow: 0 0 16px rgba(0, 255, 153, 0.42);
}

.db-pipeline-track.violet span {
  background: linear-gradient(90deg, #8b5cf6, #5de5ff);
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.36);
}

.db-pipeline-track.gold span {
  background: linear-gradient(90deg, #f6b44b, #00ff99);
  box-shadow: 0 0 16px rgba(246, 180, 75, 0.34);
}

.db-activity-list {
  display: grid;
  gap: 6px;
  margin-top: 8px;
}

.db-activity-item {
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr);
  align-items: start;
  gap: 7px;
  text-align: left;
}

.db-activity-item p {
  margin: 0;
  color: rgba(238, 247, 255, 0.78);
  font-size: 0.54rem;
  line-height: 1.28;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.activity-dot {
  width: 7px;
  height: 7px;
  margin-top: 3px;
  border-radius: 50%;
  background: #5de5ff;
  box-shadow: 0 0 10px rgba(93, 229, 255, 0.6);
}

.activity-dot.ai { background: #00ff99; box-shadow: 0 0 10px rgba(0, 255, 153, 0.65); }
.activity-dot.crm { background: #5de5ff; }
.activity-dot.erp { background: #a78bfa; box-shadow: 0 0 10px rgba(167, 139, 250, 0.6); }
.activity-dot.whatsapp { background: #22c55e; box-shadow: 0 0 10px rgba(34, 197, 94, 0.58); }
.activity-dot.system { background: #f6b44b; box-shadow: 0 0 10px rgba(246, 180, 75, 0.58); }

.pedestal-platform {
  bottom: 2px;
  width: min(660px, 92%);
  height: 360px;
  border: 1px solid rgba(93, 229, 255, 0.22);
  background:
    radial-gradient(ellipse at center, rgba(93, 229, 255, 0.26), rgba(0, 255, 153, 0.08) 42%, transparent 70%);
  box-shadow:
    0 0 70px rgba(93, 229, 255, 0.26),
    inset 0 0 44px rgba(93, 229, 255, 0.18);
}

.standing-cards-container {
  bottom: -8px;
  gap: 12px;
  z-index: 8;
  padding: 0;
}

.standing-card {
  width: 132px;
  min-height: 126px;
  padding: 16px 12px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(9, 15, 40, 0.96), rgba(3, 8, 28, 0.92));
  border: 1px solid rgba(173, 216, 255, 0.18);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.52),
    0 0 26px rgba(93, 229, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.standing-card:hover {
  transform: translateY(-10px) scale(1.04);
  border-color: rgba(0, 255, 153, 0.42);
  box-shadow:
    0 26px 52px rgba(0, 0, 0, 0.58),
    0 0 38px rgba(0, 255, 153, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
}

.sc-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.sc-title {
  font-size: 0.76rem;
  line-height: 1.15;
  margin-bottom: 6px;
}

.sc-desc {
  font-size: 0.61rem;
  line-height: 1.35;
}

@keyframes dbPremiumFloat {
  0%, 100% {
    transform: rotateY(-8deg) rotateX(4deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotateY(-6deg) rotateX(3deg) translate3d(0, -12px, 0);
  }
}

@keyframes dbShineSweep {
  0%, 35% { transform: translateX(-64%); opacity: 0; }
  48% { opacity: 0.75; }
  65%, 100% { transform: translateX(68%); opacity: 0; }
}

@media (max-width: 1199px) {
  .dashboard-scene {
    height: 690px;
  }

  .db-mockup-card {
    width: min(680px, 110%);
    height: 480px;
    grid-template-columns: 118px minmax(0, 1fr);
  }

  .db-main {
    padding: 14px;
  }

  .standing-card {
    width: 124px;
  }
}

@media (max-width: 991px) {
  .dashboard-scene {
    display: block;
    height: auto;
    min-height: 0;
    margin-top: 28px;
    padding: 28px 0 34px;
  }

  .db-mockup-card {
    width: min(720px, 100%);
    height: auto;
    min-height: 500px;
    margin: 0 auto;
    transform: none;
    animation: none;
  }

  .dashboard-scene:hover .db-mockup-card {
    transform: translateY(-4px);
  }

  .standing-cards-container {
    position: relative;
    bottom: auto;
    margin-top: 18px;
  }

  .pedestal-platform {
    bottom: 86px;
  }
}

@media (max-width: 768px) {
  .hero-section .container,
  .hero-section .row,
  .hero-section [class*="col-"] {
    max-width: 100vw;
  }

  .hero-title {
    max-width: calc(100vw - 32px);
    font-size: clamp(1.82rem, 7.8vw, 2.08rem);
    line-height: 1.18;
    overflow-wrap: break-word;
  }

  .hero-subtitle,
  .hero-text {
    max-width: calc(100vw - 32px);
    overflow-wrap: break-word;
  }

  .dashboard-scene {
    width: 100%;
    max-width: calc(100vw - 32px);
    margin-inline: auto;
    overflow: hidden;
    padding-top: 46px;
  }

  .db-mockup-card {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    margin-left: 0 !important;
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 14px;
    overflow: hidden;
    transform: none !important;
  }

  .db-sidebar {
    display: none;
  }

  .db-main {
    padding: 14px;
    width: 100%;
  }

  .db-main-header,
  .db-header-actions {
    align-items: flex-start;
  }

  .db-main-header {
    flex-direction: column;
    min-width: 0;
  }

  .db-header-actions {
    flex-wrap: wrap;
    max-width: 100%;
  }

  .db-insight-strip,
  .db-metrics-grid,
  .db-charts-row,
  .db-bottom-grid {
    grid-template-columns: 1fr;
  }

  .db-metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .db-chart-box.radial-box {
    min-height: 150px;
  }

  .db-bottom-grid {
    display: none;
  }

  .db-rating-badge {
    width: 66px;
    height: 66px;
    top: -18px;
    right: 8px;
  }

  .db-rating-text {
    font-size: 1.38rem;
  }

  .standing-card {
    width: 100%;
    min-height: 116px;
  }

  .standing-cards-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: calc(100vw - 32px);
    padding: 0;
  }
}

@media (max-width: 520px) {
  .hero-title,
  .hero-subtitle,
  .hero-text,
  .dashboard-scene,
  .standing-cards-container {
    width: min(calc(100vw - 32px), 358px);
    max-width: min(calc(100vw - 32px), 358px);
  }

  .hero-title {
    font-size: 1.92rem;
  }

  .hero-subtitle {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .db-mockup-card {
    width: min(calc(100vw - 32px), 358px) !important;
    max-width: min(calc(100vw - 32px), 358px) !important;
  }

  .db-insight-strip,
  .db-metrics-grid {
    grid-template-columns: 1fr;
  }

  .standing-cards-container {
    grid-template-columns: 1fr;
  }

  .db-rating-badge {
    width: 60px;
    height: 60px;
  }

  .db-rating-text {
    font-size: 1.22rem;
  }

  .db-rating-label {
    font-size: 0.48rem;
  }

  .db-header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .db-health-chip,
  .db-user-greet {
    min-width: 0;
  }

  .standing-card {
    width: 100%;
  }
}

/* Target Screenshot Match Pass */
@media (min-width: 992px) {
  .hero-section {
    min-height: 560px;
    padding: 72px 0 26px;
    overflow: hidden;
  }

  .hero-section::before {
    content: '';
    position: absolute;
    inset: 82px 0 64px auto;
    width: 58%;
    pointer-events: none;
    background:
      linear-gradient(90deg, transparent 0%, rgba(0, 217, 255, 0.08) 48%, transparent 100%),
      repeating-linear-gradient(0deg, transparent 0 23px, rgba(0, 217, 255, 0.055) 24px, transparent 25px),
      repeating-linear-gradient(90deg, transparent 0 29px, rgba(0, 255, 153, 0.045) 30px, transparent 31px);
    mask-image: radial-gradient(ellipse at 72% 42%, #000 0%, rgba(0, 0, 0, 0.72) 36%, transparent 74%);
    opacity: 0.72;
    z-index: 0;
  }

  .hero-section .container,
  .hero-section .row,
  .hero-section [class*="col-"] {
    position: relative;
    z-index: 1;
  }

  .hero-subtitle,
  .hero-title,
  .hero-text,
  .dashboard-scene,
  .stats-bar-premium {
    animation: none !important;
    opacity: 1 !important;
  }

  .hero-title {
    font-size: clamp(2.5rem, 3.2vw, 2.75rem);
    line-height: 1.08;
    max-width: 610px;
    margin-bottom: 1.1rem;
  }

  .hero-subtitle {
    margin-bottom: 1.1rem;
    font-size: 0.72rem;
    letter-spacing: 0.13em;
  }

  .hero-text {
    max-width: 470px;
    margin-bottom: 1.65rem;
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .hero-section .btn-primary-neon,
  .hero-section .btn-outline-neon {
    min-height: 46px;
    padding: 12px 24px;
    border-radius: 7px;
    font-size: 0.82rem;
  }

  .dashboard-scene {
    height: 370px;
    padding: 0 0 64px;
    margin-top: -8px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    perspective: 1300px;
  }

  .dashboard-ambient.ambient-gold,
  .db-rating-badge,
  .db-headline,
  .db-insight-strip,
  .db-bottom-grid {
    display: none !important;
  }

  .dashboard-ambient.ambient-cyan {
    width: 500px;
    height: 420px;
    top: -24px;
    right: 0;
    opacity: 0.56;
    background: radial-gradient(ellipse at center, rgba(0, 255, 153, 0.18), rgba(0, 217, 255, 0.12) 42%, transparent 72%);
  }

  .db-mockup-card {
    width: min(570px, 104%);
    height: 334px;
    margin: 0 0 0 -6px;
    grid-template-columns: 126px minmax(0, 1fr);
    border-radius: 17px;
    overflow: hidden;
    transform: rotateY(-5deg) rotateX(2deg) translate3d(0, 0, 0);
    animation: targetDashboardFloat 5s ease-in-out infinite;
    background:
      linear-gradient(135deg, rgba(8, 13, 42, 0.98), rgba(4, 8, 31, 0.98) 62%, rgba(10, 17, 48, 0.98));
    box-shadow:
      0 28px 74px rgba(0, 0, 0, 0.58),
      0 0 0 1px rgba(0, 255, 153, 0.12),
      0 0 54px rgba(0, 217, 255, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }

  .dashboard-scene:hover .db-mockup-card {
    transform: rotateY(-3deg) rotateX(1deg) translate3d(0, -5px, 0);
  }

  .db-screen-grid,
  .db-shine {
    opacity: 0.35;
  }

  .db-sidebar {
    padding: 13px 12px;
    gap: 13px;
    border-radius: 17px 0 0 17px;
  }

  .db-sidebar-logo img {
    width: 45px;
    height: auto;
  }

  .db-sidebar-logo span,
  .db-sidebar-footer {
    display: none;
  }

  .db-menu-item {
    min-height: 27px;
    padding: 6px 8px;
    border-radius: 6px;
    font-size: 0.56rem;
    gap: 7px;
  }

  .db-menu-item svg {
    width: 11px;
    height: 11px;
  }

  .db-main {
    padding: 12px 14px 14px;
    gap: 8px;
    overflow: hidden;
  }

  .db-main-header {
    justify-content: flex-end;
    align-items: center;
    min-height: 24px;
  }

  .db-header-actions {
    gap: 8px;
  }

  .db-health-chip {
    display: none;
  }

  .db-user-greet {
    min-height: 24px;
    padding: 4px 7px;
    border-radius: 999px;
    font-size: 0.55rem;
    color: rgba(238, 247, 255, 0.8);
    background: rgba(255, 255, 255, 0.045);
  }

  .db-user-greet::before {
    content: 'Hello, ';
  }

  .db-avatar-img {
    width: 18px;
    height: 18px;
  }

  .db-metrics-grid {
    gap: 9px;
  }

  .db-metric-card {
    min-height: 70px;
    padding: 8px;
    border-radius: 8px;
  }

  .db-m-icon {
    width: 20px;
    height: 20px;
    margin-bottom: 3px;
  }

  .db-m-icon svg {
    width: 12px;
    height: 12px;
  }

  .db-m-label {
    font-size: 0.48rem;
  }

  .db-m-val {
    font-size: 0.92rem;
  }

  .db-m-sub {
    font-size: 0.45rem;
  }

  .db-charts-row {
    min-height: 133px;
    grid-template-columns: 1.65fr 0.95fr;
    gap: 9px;
  }

  .db-chart-box {
    border-radius: 8px;
    padding: 10px;
  }

  .db-growth-chart-wrap {
    height: 96px;
  }

  .db-radial-chart-wrap {
    min-height: 96px;
  }

  .db-radial-progress {
    width: 70px;
    height: 70px;
  }

  .standing-cards-container {
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 530px;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 11px;
    padding: 0;
  }

  .standing-card {
    width: auto;
    min-height: 92px;
    padding: 12px 9px;
    border-radius: 8px;
    animation: none;
    opacity: 1;
    transform: none;
  }

  .sc-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 8px;
  }

  .sc-icon svg {
    width: 16px;
    height: 16px;
  }

  .sc-title {
    font-size: 0.68rem;
    margin-bottom: 5px;
  }

  .sc-desc {
    font-size: 0.54rem;
    line-height: 1.28;
  }

  .pedestal-platform {
    bottom: 14px;
    width: 540px;
    height: 142px;
    border-width: 1px;
    transform: translateX(-50%) rotateX(78deg);
  }

  .stats-bar-premium {
    margin-top: 8px;
    padding: 22px 34px;
    border-radius: 8px;
  }

  .stats-bar-row {
    flex-wrap: nowrap;
    gap: 18px;
  }

  .stats-bar-item {
    min-width: 0;
    gap: 14px;
  }

  .stats-bar-icon-wrap {
    width: 45px;
    height: 45px;
  }

  .stats-bar-number {
    font-size: 1.45rem;
  }

  .stats-bar-label {
    font-size: 0.68rem;
  }

  .scroll-indicator-wrap {
    display: none;
  }
}

@keyframes targetDashboardFloat {
  0%, 100% {
    transform: rotateY(-5deg) rotateX(2deg) translateY(0);
  }
  50% {
    transform: rotateY(-5deg) rotateX(2deg) translateY(-7px);
  }
}

/* Fix for intermediate screen sizes (Laptops & Small Desktops) where the dashboard card was being cut off */
@media (min-width: 992px) and (max-width: 1399px) {
  .dashboard-scene {
    height: 580px;
    padding: 20px 0;
    perspective: 1500px;
  }
  .db-mockup-card {
    width: 620px;
    height: 430px;
    transform: scale(0.82) rotateY(-8deg) rotateX(4deg) translate3d(0, 0, 0) !important;
    transform-origin: center center;
    margin-left: -8% !important;
  }
  .dashboard-scene:hover .db-mockup-card {
    transform: scale(0.84) rotateY(-2deg) rotateX(1deg) translateY(-10px) !important;
  }
  .standing-cards-container {
    transform: scale(0.85) translate3d(0, 0, 50px) !important;
    bottom: -50px !important;
    width: 100% !important;
  }
}

.hero-subtitle,
.hero-title,
.hero-text,
.dashboard-scene,
.stats-bar-premium {
  animation: none !important;
  opacity: 1 !important;
}

.db-rating-badge {
  display: none !important;
}

/* Large desktop fix: prevent hero/dashboard clipping on 1440px+ and 1920px screens. */
@media (min-width: 1400px) {
  .navbar .container,
  .hero-section .container {
    max-width: 1470px;
  }

  .hero-section {
    min-height: 690px;
    padding: 130px 0 36px;
    overflow: hidden;
  }

  .hero-section .row {
    align-items: flex-start !important;
  }

  .hero-section .row > .col-lg-6:first-child {
    padding-left: 12px;
  }

  .hero-title {
    max-width: 660px;
    font-size: clamp(2.85rem, 3vw, 3.45rem);
  }

  .hero-text {
    max-width: 610px;
  }

  .dashboard-scene {
    height: 420px;
    margin-left: -18px;
    margin-top: 18px !important;
    padding-bottom: 74px;
    overflow: visible;
  }

  .db-mockup-card {
    width: min(700px, 100%);
    height: 380px;
    margin-left: 0;
  }

  .standing-cards-container {
    width: 660px;
    bottom: -18px;
    transform: translateX(-50%);
  }

  .standing-cards-container .standing-card {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .pedestal-platform {
    width: 680px;
    bottom: 4px;
  }

  .stats-bar-premium {
    max-width: 1460px;
    margin: 24px auto 0;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .dashboard-scene {
    height: 480px;
    padding: 10px 0;
    perspective: 1200px;
  }
  .db-mockup-card {
    width: 580px;
    height: 400px;
    transform: scale(0.7) rotateY(-8deg) rotateX(4deg) translate3d(0, 0, 0) !important;
    transform-origin: center center;
    margin-left: -12% !important;
  }
  .dashboard-scene:hover .db-mockup-card {
    transform: scale(0.72) rotateY(-2deg) rotateX(1deg) translateY(-10px) !important;
  }
  .standing-cards-container {
    transform: scale(0.74) translate3d(0, 0, 50px) !important;
    bottom: -75px !important;
    width: 105% !important;
  }
}

/* Final desktop lock: keep the hero aligned to the provided reference image. */
@media (min-width: 992px) and (max-width: 1399px) {
  .navbar {
    padding: 0.66rem 0;
  }

  .navbar.scrolled {
    padding: 0.48rem 0;
  }

  .navbar .container {
    max-width: 1110px;
  }

  .navbar-brand img {
    height: 50px !important;
  }

  .navbar .btn-primary-neon {
    min-height: 38px;
    padding: 9px 18px;
    border-radius: 5px;
    font-size: 0.72rem;
  }

  .navbar .btn-primary-neon svg {
    width: 15px;
    height: 15px;
  }

  .hero-section .row > .col-lg-6:first-child {
    padding-left: 50px;
  }

  .dashboard-scene {
    margin-left: -66px;
    margin-top: 8px !important;
  }

  .stats-bar-premium {
    max-width: 1096px;
    margin: 98px auto 0;
  }

  .dashboard-scene {
    height: 370px !important;
    padding: 0 0 64px !important;
    perspective: 1300px !important;
  }

  .db-mockup-card {
    width: min(570px, 104%) !important;
    height: 334px !important;
    margin-left: -6px !important;
    transform: rotateY(-5deg) rotateX(2deg) translate3d(0, 0, 0) !important;
    transform-origin: center center !important;
  }

  .dashboard-scene:hover .db-mockup-card {
    transform: rotateY(-3deg) rotateX(1deg) translate3d(0, -5px, 0) !important;
  }

  .standing-cards-container {
    bottom: -4px !important;
    left: 50% !important;
    width: 530px !important;
    transform: translateX(-50%) !important;
  }

  .standing-cards-container .standing-card {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Keep service cards above the dashboard on hover. */
.standing-cards-container {
  z-index: 60 !important;
}

.standing-card {
  position: relative;
  cursor: pointer;
  z-index: 1;
}

.standing-card:hover,
.standing-card:focus-within,
.standing-card.force-hover,
.standing-card.is-active {
  z-index: 80 !important;
}

.standing-card:focus-visible {
  outline: 2px solid rgba(0, 255, 153, 0.82);
  outline-offset: 4px;
}

.standing-card.is-active {
  border-color: rgba(0, 255, 153, 0.62) !important;
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.58),
    0 0 44px rgba(0, 255, 153, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.14) !important;
}

.standing-card.card-hrms .sc-icon {
  background: rgba(0, 255, 153, 0.1);
  color: var(--color-neon-green);
  border-color: rgba(0, 255, 153, 0.24);
}

.standing-card.card-pms .sc-icon {
  background: rgba(246, 180, 75, 0.12);
  color: #f6b44b;
  border-color: rgba(246, 180, 75, 0.28);
}

.db-menu-item {
  cursor: pointer;
}

.db-menu-item:focus-visible {
  outline: 2px solid rgba(93, 229, 255, 0.78);
  outline-offset: 3px;
}

/* Premium product header */
.navbar.aevora-header {
  height: 82px;
  background: rgba(3, 10, 31, 0.75) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  border-bottom: 1px solid rgba(0, 217, 255, 0.12) !important;
  padding: 0 !important;
  transition: all 0.3s ease;
  z-index: 1030;
}

.navbar.aevora-header.scrolled {
  background: rgba(3, 10, 31, 0.88) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  border-bottom: 1px solid rgba(0, 217, 255, 0.18) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.aevora-header .nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 104px);
  max-width: 1280px !important;
  margin: 0 auto;
  padding: 0 16px !important;
}

.aevora-header .navbar-brand {
  padding: 0 !important;
  margin-right: 18px;
}

.brand-lockup {
  gap: 9px;
  min-height: 44px;
  color: inherit;
  text-decoration: none;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.brand-wordmark {
  display: inline-flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
  transform: translateY(0);
}

.brand-name {
  color: #F8FAFC;
  font-size: 0.96rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.brand-subtitle {
  display: none !important;
}

.brand-mark {
  display: block;
  width: 31px !important;
  height: 31px !important;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 255, 178, 0.26));
}

.brand-logo-frame {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px; /* Balanced and slightly smaller height */
  padding: 0; /* No container padding */
  border-radius: 0;
  background: transparent; /* Fully transparent */
  border: none; /* No container border */
  box-shadow: none; /* No container shadow */
  transition: all 0.28s ease;
  box-sizing: border-box;
}

.brand-logo-frame::after {
  display: none; /* Hide container indicator dot */
}

.site-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 0;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo-img {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
}

.aevora-header .site-logo-link {
  margin-right: 18px;
  padding: 0 !important;
  min-height: 44px;
}

.aevora-header .site-logo-img {
  width: 132px !important;
  height: auto !important;
  max-width: 34vw;
  filter:
    drop-shadow(0 0 12px rgba(0, 255, 178, 0.18))
    drop-shadow(0 0 18px rgba(0, 217, 255, 0.1));
}

.footer-logo .site-logo-img {
  width: 190px !important;
  height: auto !important;
  max-width: 100%;
  filter:
    drop-shadow(0 0 14px rgba(0, 255, 178, 0.14))
    drop-shadow(0 0 22px rgba(0, 217, 255, 0.08));
  transition: filter 0.25s ease, transform 0.25s ease;
}

.footer-logo .site-logo-link:hover .site-logo-img {
  transform: translateY(-1px);
  filter:
    drop-shadow(0 0 18px rgba(0, 255, 178, 0.22))
    drop-shadow(0 0 28px rgba(0, 217, 255, 0.12));
}

.aevora-header .navbar-brand:hover .brand-logo-frame {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.aevora-header .navbar-brand img:not(.site-logo-img) {
  height: 34px !important; /* Balanced height for sharp logo icon */
  width: 34px !important; /* Square aspect ratio */
  object-fit: contain !important; /* Prevent logo stretching */
}

.premium-navbar-collapse {
  align-items: center;
}

.premium-nav-list {
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(0, 255, 178, 0.18);
  border-radius: 12px;
  background: rgba(10, 22, 52, 0.5);
}

.aevora-header .nav-link {
  min-height: 36px;
  margin: 0;
  padding: 0 14px !important;
  border-radius: 8px;
  color: #A8B3CF !important; /* Muted text */
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 36px;
  transition: all 0.24s ease;
}

.aevora-header .nav-link::after {
  display: none;
}

.aevora-header .nav-link span {
  position: relative;
  z-index: 1;
}

.aevora-header .nav-link:hover {
  color: #00D9FF !important; /* Cyan hover */
  background: rgba(0, 217, 255, 0.06);
}

.aevora-header .nav-link.active {
  color: #00FFB2 !important; /* Soft pill green active */
  background: rgba(0, 255, 178, 0.08);
  box-shadow: inset 0 0 0 1px rgba(0, 255, 178, 0.2);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 16px;
}

.nav-proof-link {
  min-height: 38px;
  padding: 0 13px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #A8B3CF;
  border: 1px solid rgba(0, 255, 178, 0.18);
  background: rgba(10, 22, 52, 0.5);
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.24s ease;
}

.nav-proof-link svg {
  width: 16px;
  height: 16px;
  color: var(--color-neon-cyan);
}

.nav-proof-link:hover {
  color: #fff;
  border-color: rgba(0, 217, 255, 0.4);
  background: rgba(0, 217, 255, 0.08);
}

.aevora-header .nav-cta {
  min-height: 40px !important;
  padding: 0 18px !important;
  border-radius: 8px !important;
  font-size: 0.88rem !important;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 255, 178, 0.2);
}

.aevora-header .nav-cta svg {
  width: 16px !important;
  height: 16px !important;
  transition: transform 0.24s ease;
}

.aevora-header .nav-cta:hover svg {
  transform: translateX(3px); /* Move arrow hover */
}

.premium-nav-toggle {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #fff;
  position: relative;
}

.premium-nav-toggle > i,
.premium-nav-toggle > svg {
  display: none;
}

.nav-toggle-lines {
  width: 20px;
  height: 14px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-toggle-lines span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffffff, var(--color-neon-green));
  box-shadow: 0 0 12px rgba(0, 255, 153, 0.42);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.premium-nav-toggle[aria-expanded="true"] .nav-toggle-lines span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.premium-nav-toggle[aria-expanded="true"] .nav-toggle-lines span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.premium-nav-toggle svg {
  width: 22px;
  height: 22px;
}

.premium-nav-toggle:focus-visible,
.aevora-header .nav-link:focus-visible,
.nav-proof-link:focus-visible,
.aevora-header .nav-cta:focus-visible {
  outline: 2px solid rgba(0, 255, 153, 0.75);
  outline-offset: 3px;
}

@media (min-width: 992px) and (max-width: 1180px) {
  .aevora-header .nav-shell {
    max-width: min(1160px, calc(100% - 28px)) !important;
    padding: 9px 10px !important;
  }

  .brand-logo-frame {
    height: 52px;
    padding: 0;
  }

  .brand-lockup {
    gap: 6px;
    margin-right: 10px;
  }

  .brand-name {
    font-size: 0.78rem;
  }

  .brand-subtitle {
    font-size: 0.33rem;
  }

  .brand-mark {
    width: 26px !important;
    height: 26px !important;
  }

  .aevora-header .navbar-brand img:not(.site-logo-img) {
    height: 38px !important;
    width: 38px !important;
    object-fit: contain !important;
  }

  .aevora-header .nav-link {
    padding: 0 10px !important;
    font-size: 0.78rem;
  }

  .nav-proof-link {
    display: none;
  }

  .aevora-header .nav-cta {
    min-height: 42px !important;
    padding: 0 14px !important;
    font-size: 0.76rem !important;
  }
}

@media (min-width: 992px) and (max-width: 1399px) {
  .hero-section {
    padding-top: 122px;
  }
}

@media (max-width: 991px) {
  .navbar.aevora-header,
  .navbar.aevora-header.scrolled {
    padding: 10px 0 !important;
  }

  .aevora-header .nav-shell {
    max-width: calc(100% - 24px) !important;
    min-height: 68px;
    padding: 9px 10px !important;
    border-radius: 18px;
  }

  .brand-logo-frame {
    height: 50px;
    padding: 0;
  }

  .brand-lockup {
    gap: 6px;
    min-height: 42px;
  }

  .brand-name {
    font-size: 0.78rem;
  }

  .brand-subtitle {
    font-size: 0.33rem;
  }

  .brand-mark {
    width: 25px !important;
    height: 25px !important;
  }

  .aevora-header .navbar-brand img:not(.site-logo-img) {
    height: 30px !important;
    width: 30px !important;
    object-fit: contain !important;
  }

  .premium-navbar-collapse {
    width: 100%;
    margin-top: 12px;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(126, 231, 255, 0.12);
    background:
      linear-gradient(180deg, rgba(7, 13, 42, 0.96), rgba(3, 7, 28, 0.94));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  .premium-nav-list {
    width: 100%;
    align-items: stretch;
    gap: 6px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .aevora-header .nav-link {
    justify-content: space-between;
    width: 100%;
    min-height: 46px;
    padding: 0 14px !important;
    border-radius: 12px;
    font-size: 0.92rem;
  }

  .nav-actions {
    width: 100%;
    margin-left: 0;
    margin-top: 12px !important;
    gap: 8px;
    flex-wrap: wrap;
  }

  .nav-proof-link,
  .aevora-header .nav-cta {
    flex: 1 1 0;
    justify-content: center;
  }

  .hero-section {
    padding-top: 116px;
  }
}

@media (max-width: 430px) {
  .aevora-header .nav-shell {
    max-width: calc(100% - 16px) !important;
    padding: 8px !important;
  }

  .brand-logo-frame {
    height: 46px;
    padding: 0;
  }

  .brand-lockup {
    gap: 5px;
  }

  .brand-name {
    font-size: 0.72rem;
  }

  .brand-subtitle {
    font-size: 0.3rem;
  }

  .brand-mark {
    width: 23px !important;
    height: 23px !important;
  }

  .aevora-header .navbar-brand img:not(.site-logo-img) {
    height: 28px !important;
    width: 28px !important;
    object-fit: contain !important;
  }

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

  .nav-proof-link,
  .aevora-header .nav-cta {
    width: 100%;
  }
}

/* Section padding desktop: 90px */
section {
  padding: 90px 0 !important;
}

/* Base card & container radii */
.glass-card {
  border-radius: 24px !important;
  background: rgba(10, 22, 52, 0.75) !important;
  border: 1px solid rgba(0, 255, 178, 0.18) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4) !important;
}

.big-container-card {
  border-radius: 28px !important;
  background: #06162F !important;
  border: 1px solid rgba(0, 255, 178, 0.18) !important;
  padding: 48px;
}

.standard-element {
  border-radius: 18px !important;
}

/* Background & Body Colors */
body {
  background-color: #030A1F !important;
  color: #F8FAFC !important;
}

/* Hero Section Refinements */
.hero-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 30%, rgba(3, 10, 31, 0.8) 0%, #030A1F 100%) !important;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  z-index: 1;
}

.hero-left-glow {
  position: absolute;
  top: 20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 255, 178, 0.05), transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

.hero-right-glow {
  position: absolute;
  top: 15%;
  right: -5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.05), transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

.hero-title {
  font-weight: 800 !important;
  line-height: 1.05 !important;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  letter-spacing: -0.03em !important;
}

.hero-text {
  font-size: 18px !important;
  max-width: 620px !important;
  color: #A8B3CF !important;
  line-height: 1.6;
}

/* Hero CTA Customizations */
.btn-outline-neon.hero-secondary-btn {
  border: 1.5px solid #00D9FF !important;
  color: #00D9FF !important;
  background: transparent;
}
.btn-outline-neon.hero-secondary-btn:hover {
  background: rgba(0, 217, 255, 0.08) !important;
  color: #00FFB2 !important;
  border-color: #00FFB2 !important;
}

/* Dashboard Mockup styles */
.db-mockup-card {
  border: 1px solid rgba(0, 217, 255, 0.25) !important;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 50px rgba(0, 217, 255, 0.12) !important;
}

/* Standardized Floating Cards (CRM, ERP, HRMS, PMS) */
.standing-card {
  border-radius: 18px !important;
  background: rgba(10, 22, 52, 0.85) !important;
  border: 1px solid rgba(0, 255, 178, 0.15) !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.standing-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  border-color: #00FFB2 !important;
  box-shadow: 0 15px 35px rgba(0, 255, 178, 0.2) !important;
}

.sc-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  background: rgba(0, 217, 255, 0.1);
  color: #00D9FF;
  border: 1px solid rgba(0, 217, 255, 0.2);
}

.standing-card.card-crm .sc-icon { color: #00D9FF; background: rgba(0, 217, 255, 0.08); border-color: rgba(0, 217, 255, 0.2); }
.standing-card.card-erp .sc-icon { color: #3B82F6; background: rgba(59, 130, 246, 0.08); border-color: rgba(59, 130, 246, 0.2); }
.standing-card.card-hrms .sc-icon { color: #00FFB2; background: rgba(0, 255, 178, 0.08); border-color: rgba(0, 255, 178, 0.2); }
.standing-card.card-pms .sc-icon { color: #f6b44b; background: rgba(246, 180, 75, 0.08); border-color: rgba(246, 180, 75, 0.2); }

/* Stats Bar */
.stats-bar-premium {
  margin-top: 60px !important;
  width: 100% !important;
  max-width: 100% !important;
  background: rgba(10, 22, 52, 0.75) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  border: 1px solid rgba(0, 217, 255, 0.12) !important;
  border-radius: 20px;
  padding: 24px 32px;
  position: relative;
  z-index: 10;
}

.stats-bar-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: inherit;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid transparent;
}

.stats-bar-item:hover {
  transform: translateY(-4px) !important;
  background: rgba(10, 22, 52, 0.6) !important;
  border-color: rgba(0, 255, 178, 0.18) !important;
  box-shadow: 0 12px 30px rgba(0, 255, 178, 0.08) !important;
}

.stats-bar-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50% !important; /* Neon ring shape */
  background: rgba(0, 217, 255, 0.08) !important;
  color: #00D9FF !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(0, 217, 255, 0.3) !important;
  box-shadow: 0 0 10px rgba(0, 217, 255, 0.15) !important;
  flex-shrink: 0;
}

.stats-bar-premium .col:nth-child(even) .stats-bar-icon-wrap {
  background: rgba(0, 255, 178, 0.08) !important;
  color: #00FFB2 !important;
  border-color: rgba(0, 255, 178, 0.3) !important;
  box-shadow: 0 0 10px rgba(0, 255, 178, 0.15) !important;
}

.stats-bar-icon-wrap i {
  width: 22px !important;
  height: 22px !important;
}

.stats-bar-number {
  font-size: 34px !important;
  font-weight: 800;
  color: #F8FAFC !important;
  line-height: 1.1;
  display: block;
}

.stats-bar-label {
  font-size: 14px !important;
  color: #A8B3CF !important;
  margin: 0;
}

/* First viewport polish: keep the complete home hero visible on desktop screens. */
@media (min-width: 1400px) {
  .navbar.aevora-header {
    height: 76px;
  }

  .hero-section {
    min-height: auto;
    padding: 108px 0 18px !important;
  }

  .hero-section .row {
    align-items: flex-start !important;
  }

  .hero-title {
    max-width: 720px;
    font-size: clamp(3rem, 3.55vw, 3.75rem) !important;
    line-height: 1.08 !important;
    margin-bottom: 16px !important;
  }

  .hero-text {
    max-width: 680px !important;
    margin-bottom: 0 !important;
    font-size: 17px !important;
    line-height: 1.58 !important;
  }

  .hero-trust-row {
    margin-top: 18px !important;
    padding-top: 8px !important;
  }

  .dashboard-scene {
    height: 410px !important;
    margin-top: 8px !important;
    padding: 0 0 58px !important;
  }

  .db-mockup-card {
    height: 360px !important;
    width: min(680px, 100%) !important;
  }

  .standing-cards-container {
    bottom: -10px !important;
  }

  .standing-card {
    min-height: 86px !important;
    padding: 10px 9px !important;
  }

  .standing-card .sc-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 7px;
  }

  .stats-bar-premium {
    margin-top: 26px !important;
    padding: 14px 24px !important;
    border-radius: 16px !important;
  }

  .stats-bar-item {
    min-height: 74px;
    padding: 8px 10px !important;
    gap: 13px;
  }

  .stats-bar-icon-wrap {
    width: 40px !important;
    height: 40px !important;
  }

  .stats-bar-icon-wrap i,
  .stats-bar-icon-wrap svg {
    width: 20px !important;
    height: 20px !important;
  }

  .stats-bar-number {
    font-size: 30px !important;
  }

  .stats-bar-label {
    font-size: 13px !important;
  }
}

@media (min-width: 1400px) and (max-height: 940px) {
  .hero-section {
    padding-top: 100px !important;
  }

  .hero-title {
    font-size: clamp(2.85rem, 3.25vw, 3.45rem) !important;
  }

  .dashboard-scene {
    height: 390px !important;
    padding-bottom: 52px !important;
  }

  .db-mockup-card {
    height: 342px !important;
  }

  .stats-bar-premium {
    margin-top: 16px !important;
  }
}

/* Problems Grid */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.problem-card {
  padding: 32px;
  background: rgba(10, 22, 52, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  transition: all 0.3s ease;
}

.problem-card:hover {
  border-color: rgba(255, 99, 132, 0.25);
  background: rgba(255, 99, 132, 0.02);
}

/* Before vs After Cards */
.ba-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.ba-card {
  padding: 40px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.ba-card.before {
  background: rgba(255, 99, 132, 0.03);
  border: 1px solid rgba(255, 99, 132, 0.15);
}

.ba-card.after {
  background: rgba(0, 255, 178, 0.03);
  border: 1px solid rgba(0, 255, 178, 0.25);
  box-shadow: 0 0 30px rgba(0, 255, 178, 0.05);
}

/* Solutions by Department Tabs */
.department-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* AI Agents Showcase */
.agents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.agent-showcase-card {
  padding: 32px;
  border-radius: 24px;
  background: rgba(10, 22, 52, 0.75);
  border: 1px solid rgba(0, 255, 178, 0.18);
  transition: all 0.3s ease;
}

.agent-showcase-card:hover {
  border-color: #00D9FF;
  transform: translateY(-5px);
}

/* Interactive Tabs styling */
.nav-pills-premium {
  display: flex;
  gap: 8px;
  background: rgba(10, 22, 52, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px;
  border-radius: 12px;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto 40px;
}

.nav-pills-premium .nav-link {
  color: #A8B3CF;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 20px;
  background: transparent;
  border: none;
  transition: all 0.3s ease;
}

.nav-pills-premium .nav-link.active {
  background: #00FFB2 !important;
  color: #030A1F !important;
}

/* Workflow steps */
.workflow-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.workflow-step {
  text-align: center;
  padding: 20px;
  background: rgba(10, 22, 52, 0.5);
  border: 1px solid rgba(0, 255, 178, 0.15);
  border-radius: 18px;
  flex: 1;
  min-width: 140px;
  position: relative;
}

.workflow-connector {
  color: #00D9FF;
  font-weight: bold;
}

/* Comparison Table */
.comparison-table-wrap {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid rgba(0, 255, 178, 0.18);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th, .comparison-table td {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-table th {
  background: #06142F;
  color: #FFFFFF;
}

.comparison-table td {
  background: rgba(10, 22, 52, 0.4);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

/* Security list */
.security-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Technology Stack icons */
.tech-stack-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.tech-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: rgba(10, 22, 52, 0.8);
  border: 1px solid rgba(0, 255, 178, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00D9FF;
}

.tech-icon-wrap i {
  font-size: 28px;
}

/* Process Timeline (7 steps) */
.process-timeline-premium {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  max-width: 800px;
  margin: 40px auto 0;
}

.process-timeline-premium::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, #00FFB2, #00D9FF);
  opacity: 0.3;
}

.process-step-premium {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.process-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #06142F;
  border: 2px solid #00FFB2;
  color: #00FFB2;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.process-step-premium:nth-child(even) .process-step-num {
  border-color: #00D9FF;
  color: #00D9FF;
}

.process-step-content {
  background: rgba(10, 22, 52, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 32px;
  border-radius: 18px;
  flex: 1;
}

.process-section .process-timeline-premium {
  max-width: 100%;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(245px, 1fr);
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  margin-top: 28px;
  padding: 4px 2px 14px;
}

.process-section .process-timeline-premium::before {
  display: none;
}

.process-section .process-step-premium {
  min-height: 178px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-snap-align: start;
}

.process-section .process-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.process-section .process-step-content {
  height: 100%;
  padding: 18px;
  border-radius: 8px;
}

.process-section .process-step-content h4 {
  font-size: 1rem;
}

.process-section .process-step-content p {
  font-size: 0.82rem !important;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

/* FAQs */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(0, 255, 178, 0.15);
  background: rgba(10, 22, 52, 0.5);
  border-radius: 14px;
  overflow: hidden;
}

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: #FFFFFF;
}

.faq-answer {
  padding: 0 24px 20px;
  color: #A8B3CF;
  font-size: 15px;
  line-height: 1.6;
}

/* View Case Studies CTA */
.demo-cta-box {
  padding: 60px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(6, 20, 47, 0.9) 0%, rgba(3, 10, 31, 0.95) 100%);
  border: 1px solid rgba(0, 255, 178, 0.2);
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Responsiveness overrides */
@media (max-width: 991px) {
  .ba-container {
    grid-template-columns: 1fr;
  }
  .department-grid, .security-card-grid {
    grid-template-columns: 1fr;
  }
  .workflow-row {
    flex-direction: column;
    align-items: stretch;
  }
  .workflow-connector {
    transform: rotate(90deg);
    margin: 8px 0;
  }
  .tech-stack-row {
    gap: 20px;
  }
}

/* Premium Services Page */
.svc-page {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(3, 10, 31, 0.2), rgba(3, 10, 31, 0.95)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 80px);
}

.svc-page section {
  padding: 96px 0 !important;
}

.svc-hero {
  position: relative;
  min-height: 720px;
  padding: 154px 0 98px !important;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 217, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(0, 217, 255, 0.08), transparent 38%),
    linear-gradient(225deg, rgba(0, 255, 178, 0.06), transparent 42%);
}

.svc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 92%);
  pointer-events: none;
}

.svc-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
  gap: 62px;
  align-items: center;
  max-width: 1280px;
}

.svc-hero-copy {
  max-width: 720px;
}

.svc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 0 12px;
  margin-bottom: 24px;
  border-radius: 8px;
  border: 1px solid rgba(0, 255, 178, 0.18);
  background: rgba(10, 22, 52, 0.52);
  color: var(--color-neon-green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.svc-eyebrow svg {
  width: 16px;
  height: 16px;
}

.svc-hero h1,
.svc-section-head h2,
.svc-final-cta h2 {
  letter-spacing: 0;
}

.svc-hero h1 {
  max-width: 760px;
  margin: 0 0 24px;
  color: #fff;
  font-size: 3.35rem;
  line-height: 1.08;
  font-weight: 900;
}

.svc-hero h1::after {
  content: '';
  display: block;
  width: 124px;
  height: 3px;
  margin-top: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-neon-green), var(--color-neon-cyan));
  box-shadow: 0 0 24px rgba(0, 217, 255, 0.35);
}

.svc-hero p {
  max-width: 700px;
  margin: 0 0 34px;
  color: #B9C5DF;
  font-size: 1.08rem;
  line-height: 1.75;
}

.svc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.svc-hero-visual {
  position: relative;
}

.svc-dashboard-shell {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(0, 217, 255, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(10, 22, 52, 0.88), rgba(3, 10, 31, 0.92)) padding-box,
    linear-gradient(135deg, rgba(0, 255, 178, 0.55), rgba(0, 217, 255, 0.22), rgba(246, 180, 75, 0.22)) border-box;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.45),
    0 0 48px rgba(0, 217, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.svc-dashboard-shell::after {
  content: '';
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: -18px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 178, 0.8), rgba(0, 217, 255, 0.8), transparent);
  box-shadow: 0 0 34px rgba(0, 217, 255, 0.7);
}

.svc-dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.svc-dashboard-top span {
  display: block;
  margin-bottom: 5px;
  color: var(--color-neon-green);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.svc-dashboard-top strong {
  color: #fff;
  font-size: 1rem;
}

.svc-dashboard-top svg {
  width: 26px;
  height: 26px;
  color: var(--color-neon-cyan);
}

.svc-dashboard-body {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding-top: 18px;
}

.svc-dashboard-rail {
  display: grid;
  gap: 10px;
  align-content: start;
}

.svc-dashboard-rail span {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(0, 217, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.svc-dashboard-rail span:first-child {
  background: linear-gradient(135deg, rgba(0, 255, 178, 0.22), rgba(0, 217, 255, 0.1));
}

.svc-dashboard-main {
  display: grid;
  gap: 16px;
}

.svc-dashboard-metrics,
.svc-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.svc-dashboard-metrics div,
.svc-dashboard-grid span,
.svc-flow-map div {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.svc-dashboard-metrics div {
  padding: 14px;
}

.svc-dashboard-metrics span {
  display: block;
  margin-bottom: 6px;
  color: #9EABC7;
  font-size: 0.72rem;
}

.svc-dashboard-metrics strong {
  color: #fff;
  font-size: 1.35rem;
}

.svc-flow-map {
  display: grid;
  grid-template-columns: 1fr 22px 1fr 22px 1fr;
  align-items: center;
  gap: 8px;
}

.svc-flow-map div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}

.svc-flow-map svg {
  width: 18px;
  height: 18px;
  color: var(--color-neon-green);
}

.svc-flow-arrow {
  color: var(--color-neon-cyan) !important;
  opacity: 0.8;
}

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

.svc-dashboard-grid span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 12px;
  color: #C9D4EA;
  font-size: 0.78rem;
  font-weight: 700;
}

.svc-dashboard-grid svg {
  width: 16px;
  height: 16px;
  color: var(--color-neon-cyan);
}

.svc-section-head {
  max-width: 790px;
  margin: 0 auto 46px;
  text-align: center;
}

.svc-section-head .section-title {
  display: inline-block;
  margin-bottom: 17px;
  padding-left: 0;
}

.svc-section-head .section-title::before {
  display: none;
}

.svc-section-head h2,
.svc-final-cta h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 2.35rem;
  line-height: 1.2;
  font-weight: 900;
}

.svc-section-head p,
.svc-final-cta p {
  margin: 0;
  color: #A8B3CF;
  font-size: 1rem;
  line-height: 1.7;
}

.svc-showcase-section,
.svc-problems-section,
.svc-why-section {
  background: linear-gradient(180deg, rgba(6, 22, 47, 0.28), rgba(3, 10, 31, 0.14));
}

.svc-showcase-layout {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.svc-showcase-grid {
  display: grid;
  gap: 12px;
}

.svc-showcase-card {
  width: 100%;
  min-height: 78px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 13px;
  align-items: center;
  padding: 13px;
  border: 1px solid rgba(0, 217, 255, 0.12);
  border-radius: 8px;
  background: rgba(10, 22, 52, 0.58);
  color: inherit;
  text-align: left;
  transition: transform 0.26s ease, border-color 0.26s ease, background 0.26s ease, box-shadow 0.26s ease;
}

.svc-showcase-card strong,
.svc-showcase-card small {
  display: block;
}

.svc-showcase-card strong {
  color: #fff;
  font-size: 0.96rem;
  line-height: 1.25;
}

.svc-showcase-card small {
  margin-top: 6px;
  color: #9EABC7;
  font-size: 0.75rem;
  line-height: 1.35;
}

.svc-showcase-icon,
.svc-panel-icon,
.svc-service-icon,
.svc-problem-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(0, 255, 178, 0.2);
  background: rgba(0, 255, 178, 0.08);
  color: var(--color-neon-green);
  flex: 0 0 auto;
}

.svc-showcase-icon {
  width: 48px;
  height: 48px;
}

.svc-showcase-icon svg,
.svc-panel-icon svg,
.svc-service-icon svg,
.svc-problem-icon svg {
  width: 22px;
  height: 22px;
}

@media (hover: hover) {
  .svc-showcase-card:hover,
  .svc-service-card:hover,
  .svc-problem-card:hover,
  .svc-why-card:hover {
    transform: translateY(-5px);
  }
}

.svc-showcase-card.active,
.svc-showcase-card:focus-visible {
  border-color: rgba(0, 255, 178, 0.46);
  background: linear-gradient(135deg, rgba(0, 255, 178, 0.12), rgba(0, 217, 255, 0.07));
  box-shadow: 0 16px 34px rgba(0, 217, 255, 0.14);
  outline: none;
}

.svc-showcase-panel {
  position: relative;
  min-height: 100%;
  padding: 30px;
  border: 1px solid rgba(0, 217, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(10, 22, 52, 0.84), rgba(3, 10, 31, 0.86)) padding-box,
    linear-gradient(135deg, rgba(0, 255, 178, 0.5), rgba(0, 217, 255, 0.18)) border-box;
  box-shadow: 0 26px 68px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.svc-showcase-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.05), transparent);
  transform: translateX(-100%);
  animation: svcPanelSheen 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes svcPanelSheen {
  0%, 65% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.svc-panel-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.svc-panel-icon {
  width: 58px;
  height: 58px;
  border-color: rgba(0, 217, 255, 0.26);
  background: rgba(0, 217, 255, 0.08);
  color: var(--color-neon-cyan);
}

.svc-panel-header span,
.svc-related-label,
.svc-best-for span {
  display: block;
  color: var(--color-neon-green);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.svc-panel-header h3 {
  margin: 5px 0 0;
  color: #fff;
  font-size: 1.72rem;
  line-height: 1.2;
}

.svc-showcase-panel p {
  position: relative;
  z-index: 1;
  margin: 0 0 24px;
  color: #BBC7DF;
  font-size: 1rem;
  line-height: 1.7;
}

.svc-panel-columns {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 22px;
}

.svc-panel-columns h4 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 0.95rem;
}

.svc-panel-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
}

.svc-panel-columns li {
  position: relative;
  padding-left: 17px;
  color: #A8B3CF;
  font-size: 0.9rem;
  line-height: 1.45;
}

.svc-panel-columns li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-neon-cyan);
  box-shadow: 0 0 10px rgba(0, 217, 255, 0.6);
}

.svc-best-for {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(246, 180, 75, 0.18);
  background: rgba(246, 180, 75, 0.055);
}

.svc-best-for strong {
  display: block;
  margin-top: 7px;
  color: #F8FAFC;
  font-size: 0.94rem;
  line-height: 1.55;
}

.svc-related-wrap {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}

.svc-related-cloud {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.svc-related-cloud span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border-radius: 8px;
  border: 1px solid rgba(0, 217, 255, 0.22);
  background: rgba(0, 217, 255, 0.065);
  color: #DCE8FF;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 0 18px rgba(0, 217, 255, 0.09);
}

.svc-panel-cta,
.svc-learn-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-neon-cyan);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.svc-panel-cta svg,
.svc-learn-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.24s ease;
}

.svc-panel-cta:hover svg,
.svc-learn-link:hover svg {
  transform: translateX(3px);
}

.svc-card-grid,
.svc-problem-grid,
.svc-why-grid {
  display: grid;
  gap: 22px;
}

.svc-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.svc-service-card,
.svc-problem-card,
.svc-why-card {
  position: relative;
  border: 1px solid transparent;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(10, 22, 52, 0.74), rgba(3, 10, 31, 0.72)) padding-box,
    linear-gradient(135deg, rgba(0, 217, 255, 0.23), rgba(0, 255, 178, 0.12), rgba(255, 255, 255, 0.05)) border-box;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.24);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.svc-service-card {
  min-height: 345px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
}

.svc-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-neon-cyan), var(--color-neon-green), transparent);
  opacity: 0.72;
}

.svc-service-card:hover {
  box-shadow: 0 24px 58px rgba(0, 217, 255, 0.16), 0 0 0 1px rgba(0, 255, 178, 0.12);
}

.svc-service-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
}

.svc-service-card h3 {
  min-height: 58px;
  margin: 0 0 12px;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.28;
  font-weight: 800;
}

.svc-service-card p {
  flex: 1 1 auto;
  margin: 0 0 18px;
  color: #A8B3CF;
  font-size: 0.9rem;
  line-height: 1.62;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.svc-tags span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  color: #B8C3DB;
  font-size: 0.72rem;
  font-weight: 700;
}

.svc-problem-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.svc-problem-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
}

.svc-problem-icon {
  width: 48px;
  height: 48px;
}

.svc-problem-card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.35;
}

.svc-problem-card p {
  margin: 0;
  color: #A8B3CF;
  font-size: 0.86rem;
  line-height: 1.58;
}

.svc-problem-card p span {
  color: var(--color-neon-green);
  font-weight: 800;
}

.svc-process-timeline {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}

.svc-process-timeline::before {
  content: '';
  position: absolute;
  left: 39px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(180deg, var(--color-neon-green), var(--color-neon-cyan));
  opacity: 0.38;
}

.svc-process-item {
  position: relative;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 22px;
  padding: 0 0 28px;
}

.svc-process-item:last-child {
  padding-bottom: 0;
}

.svc-process-item > span {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(0, 217, 255, 0.28);
  background: #06162F;
  color: var(--color-neon-green);
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 0 22px rgba(0, 217, 255, 0.13);
}

.svc-process-item > div {
  padding: 21px 24px;
  border: 1px solid rgba(0, 217, 255, 0.14);
  border-radius: 8px;
  background: rgba(10, 22, 52, 0.58);
}

.svc-process-item h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.05rem;
}

.svc-process-item p {
  margin: 0;
  color: #A8B3CF;
  font-size: 0.92rem;
  line-height: 1.58;
}

.svc-why-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.svc-why-card {
  min-height: 136px;
  padding: 23px;
}

.svc-why-card svg {
  width: 24px;
  height: 24px;
  margin-bottom: 16px;
  color: var(--color-neon-cyan);
}

.svc-why-card h3 {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  line-height: 1.42;
}

.svc-industry-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}

.svc-industry-grid span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  border-radius: 8px;
  border: 1px solid rgba(0, 255, 178, 0.16);
  background: rgba(10, 22, 52, 0.58);
  color: #DCE8FF;
  font-size: 0.9rem;
  font-weight: 800;
}

.svc-industry-grid svg {
  width: 17px;
  height: 17px;
  color: var(--color-neon-green);
}

.svc-final-cta {
  padding-top: 72px !important;
}

.svc-final-cta-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 58px 44px;
  text-align: center;
  border: 1px solid rgba(0, 217, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(10, 22, 52, 0.82), rgba(3, 10, 31, 0.9)) padding-box,
    linear-gradient(135deg, rgba(0, 255, 178, 0.42), rgba(0, 217, 255, 0.16), rgba(246, 180, 75, 0.12)) border-box;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.36), 0 0 38px rgba(0, 217, 255, 0.12);
}

.svc-final-cta .section-title {
  display: inline-block;
  padding-left: 0;
}

.svc-final-cta .section-title::before {
  display: none;
}

.svc-final-cta p {
  max-width: 700px;
  margin: 0 auto 28px;
}

.svc-has-js .svc-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.svc-has-js .svc-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .svc-showcase-panel::before {
    animation: none;
  }

  .svc-has-js .svc-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1199px) {
  .svc-card-grid,
  .svc-problem-grid,
  .svc-why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .svc-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(370px, 470px);
    gap: 44px;
  }

  .svc-hero h1 {
    font-size: 2.85rem;
  }
}

@media (max-width: 991px) {
  .svc-page section {
    padding: 78px 0 !important;
  }

  .svc-hero {
    min-height: auto;
    padding: 132px 0 76px !important;
  }

  .svc-hero-grid,
  .svc-showcase-layout {
    grid-template-columns: 1fr;
  }

  .svc-hero-copy {
    max-width: none;
  }

  .svc-hero h1 {
    font-size: 2.55rem;
  }

  .svc-hero p {
    font-size: 1rem;
  }

  .svc-dashboard-shell {
    max-width: 600px;
  }

  .svc-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .svc-card-grid,
  .svc-problem-grid,
  .svc-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .svc-service-card {
    min-height: 318px;
  }
}

@media (max-width: 767px) {
  .svc-page section {
    padding: 64px 0 !important;
  }

  .svc-hero {
    padding-top: 120px !important;
  }

  .svc-hero h1 {
    font-size: 2.12rem;
  }

  .svc-section-head {
    margin-bottom: 34px;
  }

  .svc-section-head h2,
  .svc-final-cta h2 {
    font-size: 1.82rem;
  }

  .svc-showcase-grid,
  .svc-card-grid,
  .svc-problem-grid,
  .svc-why-grid {
    grid-template-columns: 1fr;
  }

  .svc-panel-columns,
  .svc-dashboard-metrics {
    grid-template-columns: 1fr;
  }

  .svc-flow-map {
    grid-template-columns: 1fr;
  }

  .svc-flow-arrow {
    transform: rotate(90deg);
    justify-self: center;
  }

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

  .svc-dashboard-rail {
    display: none;
  }

  .svc-process-timeline::before {
    left: 25px;
  }

  .svc-process-item {
    grid-template-columns: 52px 1fr;
    gap: 15px;
  }

  .svc-process-item > span {
    width: 52px;
    height: 52px;
    font-size: 0.78rem;
  }

  .svc-process-item > div {
    padding: 18px;
  }

  .svc-final-cta-inner,
  .svc-showcase-panel {
    padding: 24px;
  }
}

@media (max-width: 430px) {
  .svc-hero h1 {
    font-size: 1.86rem;
  }

  .svc-eyebrow {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 0.68rem;
  }

  .svc-hero-actions .btn-primary-neon,
  .svc-hero-actions .btn-outline-neon {
    width: 100%;
    justify-content: center;
    padding-left: 18px;
    padding-right: 18px;
  }

  .svc-service-card h3 {
    min-height: auto;
  }
}

/* Ultra Premium Blog Page */
.blogx-page {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(3, 10, 31, 0.22), rgba(3, 10, 31, 0.95)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 76px);
}

.blogx-page::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 217, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 178, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.42;
  z-index: 0;
}

.blogx-page > * {
  position: relative;
  z-index: 1;
}

.blogx-cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.13), rgba(0, 255, 178, 0.06), transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.blogx-page section {
  padding: 92px 0 !important;
}

.blogx-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 100%;
  height: 3px;
  background: transparent;
}

.blogx-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--color-neon-green), var(--color-neon-cyan), #7C5CFF);
  box-shadow: 0 0 18px rgba(0, 217, 255, 0.75);
}

.blogx-hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 146px 0 96px !important;
  border-bottom: 1px solid rgba(0, 217, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(0, 217, 255, 0.08), transparent 38%),
    linear-gradient(225deg, rgba(124, 92, 255, 0.08), transparent 44%);
}

.blogx-hero-grid {
  max-width: 1280px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 58px;
  align-items: center;
}

.blogx-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #8D9BBA;
  font-size: 0.82rem;
  font-weight: 700;
}

.blogx-breadcrumb a {
  color: #A8B3CF;
  text-decoration: none;
}

.blogx-breadcrumb svg {
  width: 14px;
  height: 14px;
}

.blogx-eyebrow {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  margin-bottom: 24px;
  border: 1px solid rgba(0, 255, 178, 0.18);
  border-radius: 8px;
  background: rgba(10, 22, 52, 0.54);
  color: var(--color-neon-green);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blogx-eyebrow svg {
  width: 17px;
  height: 17px;
}

.blogx-hero h1,
.blogx-section-head h2,
.blogx-search-intel h2,
.blogx-newsletter h2,
.blogx-footer-grid h2 {
  letter-spacing: 0;
}

.blogx-hero h1 {
  max-width: 780px;
  margin: 0 0 24px;
  color: #fff;
  font-size: 3.35rem;
  line-height: 1.08;
  font-weight: 900;
}

.blogx-hero h1::after {
  content: '';
  display: block;
  width: 132px;
  height: 3px;
  margin-top: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-neon-green), var(--color-neon-cyan), #7C5CFF);
  box-shadow: 0 0 28px rgba(0, 217, 255, 0.45);
}

.blogx-hero p {
  max-width: 720px;
  margin: 0 0 32px;
  color: #B9C5DF;
  font-size: 1.06rem;
  line-height: 1.72;
}

.blogx-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
}

.blogx-search {
  position: relative;
  max-width: 720px;
  min-height: 58px;
  display: grid;
  grid-template-columns: 24px 1fr 44px;
  gap: 12px;
  align-items: center;
  padding: 0 10px 0 18px;
  border: 1px solid rgba(0, 217, 255, 0.28);
  border-radius: 8px;
  background: rgba(10, 22, 52, 0.72);
  box-shadow: 0 0 34px rgba(0, 217, 255, 0.13);
}

.blogx-search > svg {
  width: 20px;
  height: 20px;
  color: var(--color-neon-cyan);
}

.blogx-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #F8FAFC;
  font-size: 0.98rem;
}

.blogx-search input::placeholder {
  color: #6F7A99;
}

.blogx-search button,
.blogx-icon-btn,
.blogx-share-rail button,
.blogx-chat-widget {
  border: 1px solid rgba(0, 217, 255, 0.2);
  background: rgba(0, 217, 255, 0.08);
  color: var(--color-neon-cyan);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.blogx-search button {
  width: 44px;
  height: 44px;
  border-radius: 8px;
}

.blogx-search button.is-listening {
  border-color: rgba(0, 255, 178, 0.62);
  color: var(--color-neon-green);
  box-shadow: 0 0 22px rgba(0, 255, 178, 0.26);
}

.blogx-suggestions {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  display: none;
  padding: 10px;
  border: 1px solid rgba(0, 217, 255, 0.18);
  border-radius: 8px;
  background: rgba(3, 10, 31, 0.96);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
  z-index: 5;
}

.blogx-suggestions.is-open {
  display: grid;
  gap: 8px;
}

.blogx-suggestions button {
  width: 100%;
  min-height: 38px;
  justify-content: flex-start;
  padding: 0 12px;
  border-radius: 8px;
  color: #DCE8FF;
  font-size: 0.86rem;
  font-weight: 700;
}

.blogx-quick-filters,
.blogx-topic-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blogx-quick-filters {
  margin-top: 16px;
}

.blogx-quick-filters button,
.blogx-topic-cloud button {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: #B8C3DB;
  font-size: 0.78rem;
  font-weight: 800;
}

.blogx-quick-filters button.active,
.blogx-category-card.active {
  border-color: rgba(0, 255, 178, 0.48);
  background: rgba(0, 255, 178, 0.1);
  color: #fff;
}

.blogx-hero-visual {
  display: grid;
  gap: 18px;
}

.blogx-ai-orbit {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(0, 217, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(10, 22, 52, 0.82), rgba(3, 10, 31, 0.9)) padding-box,
    linear-gradient(135deg, rgba(0, 255, 178, 0.48), rgba(124, 92, 255, 0.2), rgba(0, 217, 255, 0.18)) border-box;
  box-shadow: 0 36px 94px rgba(0, 0, 0, 0.4), 0 0 46px rgba(0, 217, 255, 0.13);
  overflow: hidden;
}

.blogx-ai-orbit::before {
  content: '';
  position: absolute;
  inset: 42px;
  border: 1px solid rgba(0, 217, 255, 0.18);
  border-radius: 50%;
  transform: rotateX(64deg) rotateZ(-14deg);
}

.blogx-knowledge-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 210px;
  min-height: 210px;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  border: 1px solid rgba(0, 255, 178, 0.28);
  border-radius: 50%;
  background: rgba(6, 22, 47, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 44px rgba(0, 217, 255, 0.18);
}

.blogx-knowledge-core img {
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
}

.blogx-knowledge-core strong {
  color: #fff;
  font-size: 1.2rem;
}

.blogx-knowledge-core span {
  margin-top: 8px;
  color: #A8B3CF;
  font-size: 0.78rem;
  font-weight: 700;
}

.blogx-orbit-card {
  position: absolute;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 13px;
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 8px;
  background: rgba(3, 10, 31, 0.82);
  color: #DCE8FF;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.blogx-orbit-card svg {
  width: 18px;
  height: 18px;
  color: var(--color-neon-cyan);
}

.blogx-orbit-card.card-a { left: 28px; top: 54px; }
.blogx-orbit-card.card-b { right: 30px; top: 116px; }
.blogx-orbit-card.card-c { left: 58px; bottom: 62px; }

.blogx-stat-strip,
.blogx-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.blogx-stat-strip div,
.blogx-trust-card {
  min-height: 98px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  border: 1px solid rgba(0, 217, 255, 0.16);
  border-radius: 8px;
  background: rgba(10, 22, 52, 0.58);
}

.blogx-stat-strip strong,
.blogx-trust-card strong {
  color: #fff;
  font-size: 1.55rem;
  line-height: 1;
}

.blogx-stat-strip span,
.blogx-trust-card span {
  margin-top: 8px;
  color: #A8B3CF;
  font-size: 0.76rem;
  line-height: 1.35;
}

.blogx-section-head,
.blogx-search-intel {
  max-width: 850px;
  margin: 0 auto 44px;
  text-align: center;
}

.blogx-section-head .section-title,
.blogx-search-intel .section-title,
.blogx-newsletter .section-title,
.blogx-footer-grid .section-title {
  display: inline-block;
  padding-left: 0;
  margin-bottom: 16px;
}

.blogx-section-head .section-title::before,
.blogx-search-intel .section-title::before,
.blogx-newsletter .section-title::before,
.blogx-footer-grid .section-title::before {
  display: none;
}

.blogx-section-head h2,
.blogx-search-intel h2,
.blogx-newsletter h2,
.blogx-footer-grid h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 2.35rem;
  line-height: 1.2;
  font-weight: 900;
}

.blogx-section-head p,
.blogx-search-intel p,
.blogx-newsletter p,
.blogx-footer-grid p {
  margin: 0;
  color: #A8B3CF;
  font-size: 1rem;
  line-height: 1.7;
}

.blogx-ai-search-panel,
.blogx-categories,
.blogx-detail,
.blogx-trust,
.blogx-footer-panel {
  background: linear-gradient(180deg, rgba(6, 22, 47, 0.34), rgba(3, 10, 31, 0.1));
}

.blogx-search-intel {
  max-width: 1100px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: center;
  text-align: left;
  margin-bottom: 0;
  padding: 28px;
  border: 1px solid rgba(0, 217, 255, 0.18);
  border-radius: 8px;
  background: rgba(10, 22, 52, 0.58);
}

.blogx-topic-cloud {
  justify-content: flex-end;
}

.blogx-featured-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 24px;
}

.blogx-featured-main,
.blogx-side-card,
.blogx-category-card,
.blogx-article-card,
.blogx-reader,
.blogx-ai-feature,
.blogx-testimonial,
.blogx-newsletter-inner,
.blogx-footer-grid {
  border: 1px solid transparent;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(10, 22, 52, 0.76), rgba(3, 10, 31, 0.78)) padding-box,
    linear-gradient(135deg, rgba(0, 217, 255, 0.24), rgba(0, 255, 178, 0.12), rgba(124, 92, 255, 0.16)) border-box;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.26);
}

.blogx-featured-main {
  overflow: hidden;
}

.blogx-featured-body,
.blogx-article-body {
  padding: 24px;
}

.blogx-thumb {
  position: relative;
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 217, 255, 0.22), rgba(124, 92, 255, 0.16), rgba(0, 255, 178, 0.14)),
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18), transparent 42%);
}

.blogx-thumb::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.blogx-thumb.is-large {
  min-height: 300px;
}

.blogx-thumb > svg {
  width: 54px;
  height: 54px;
  color: #fff;
  filter: drop-shadow(0 0 18px rgba(0, 217, 255, 0.55));
  transition: transform 0.32s ease;
}

.blogx-thumb span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px solid rgba(0, 255, 178, 0.22);
  background: rgba(3, 10, 31, 0.72);
  color: var(--color-neon-green);
  font-size: 0.7rem;
  font-weight: 900;
}

.blogx-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.blogx-meta-row span {
  color: var(--color-neon-cyan);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blogx-meta-row small {
  color: #8290AD;
  font-size: 0.76rem;
  font-weight: 700;
}

.blogx-featured-main h3,
.blogx-side-card h3,
.blogx-article-card h3 {
  color: #fff;
  line-height: 1.28;
  font-weight: 900;
}

.blogx-featured-main h3 {
  font-size: 1.65rem;
  margin: 0 0 14px;
}

.blogx-featured-main p,
.blogx-side-card p,
.blogx-article-card p {
  color: #A8B3CF;
  line-height: 1.65;
}

.blogx-featured-main p {
  font-size: 1rem;
  margin-bottom: 24px;
}

.blogx-featured-side {
  display: grid;
  gap: 18px;
}

.blogx-side-card {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  overflow: hidden;
}

.blogx-side-card .blogx-thumb {
  min-height: 100%;
}

.blogx-side-card > div:last-child {
  padding: 18px;
}

.blogx-side-card h3 {
  font-size: 1rem;
  margin: 0 0 10px;
}

.blogx-side-card p {
  margin: 0;
  font-size: 0.85rem;
}

.blogx-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.blogx-card-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-neon-cyan);
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: none;
}

.blogx-card-actions a svg {
  width: 16px;
  height: 16px;
}

.blogx-card-actions > span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  background: rgba(0, 255, 178, 0.1);
  color: var(--color-neon-green);
  font-size: 0.72rem;
  font-weight: 900;
}

.blogx-category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.blogx-category-card {
  min-height: 136px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px;
  text-align: left;
  color: inherit;
}

.blogx-category-card svg {
  width: 24px;
  height: 24px;
  margin-bottom: 14px;
  color: var(--color-neon-cyan);
}

.blogx-category-card span {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.28;
}

.blogx-category-card strong {
  margin-top: auto;
  color: #8D9BBA;
  font-size: 0.76rem;
}

.blogx-grid {
  columns: 3 300px;
  column-gap: 22px;
}

.blogx-article-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 22px;
  overflow: hidden;
  transition: opacity 0.24s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.blogx-article-card.is-hidden {
  display: none;
}

.blogx-article-card h3 {
  margin: 0 0 12px;
  font-size: 1.12rem;
}

.blogx-article-card p {
  margin: 0 0 16px;
  font-size: 0.9rem;
}

.blogx-article-data {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 16px;
}

.blogx-article-data span {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #95A2BF;
  font-size: 0.74rem;
  font-weight: 700;
}

.blogx-article-data svg {
  width: 14px;
  height: 14px;
  color: var(--color-neon-green);
  flex-shrink: 0;
}

.blogx-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 18px;
}

.blogx-tags span {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: #B8C3DB;
  font-size: 0.7rem;
  font-weight: 800;
}

.blogx-card-actions > div {
  display: flex;
  gap: 8px;
}

.blogx-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.blogx-icon-btn svg,
.blogx-share-rail button svg,
.blogx-chat-widget svg {
  width: 17px;
  height: 17px;
}

.blogx-icon-btn.is-saved {
  color: var(--color-neon-green);
  border-color: rgba(0, 255, 178, 0.48);
  background: rgba(0, 255, 178, 0.12);
}

.blogx-empty-state {
  display: none;
  margin: 24px auto 0;
  max-width: 560px;
  color: #A8B3CF;
  text-align: center;
}

.blogx-empty-state.is-visible {
  display: block;
}

.blogx-detail-grid {
  max-width: 1280px;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 64px;
  gap: 24px;
  align-items: start;
}

.blogx-toc,
.blogx-share-rail {
  position: sticky;
  top: 104px;
}

.blogx-toc {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(0, 217, 255, 0.16);
  border-radius: 8px;
  background: rgba(10, 22, 52, 0.56);
}

.blogx-toc span {
  color: var(--color-neon-green);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blogx-toc a {
  color: #B8C3DB;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

.blogx-reader {
  padding: 28px;
}

.blogx-reader-banner {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
}

.blogx-reader-banner span {
  color: var(--color-neon-cyan);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blogx-reader h2 {
  margin: 10px 0 0;
  color: #fff;
  font-size: 2rem;
  line-height: 1.2;
}

.blogx-author-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}

.blogx-author-row img {
  width: 44px;
  height: 44px;
}

.blogx-author-row strong,
.blogx-author-row span {
  display: block;
}

.blogx-author-row strong {
  color: #fff;
  font-size: 0.96rem;
}

.blogx-author-row span {
  margin-top: 4px;
  color: #8D9BBA;
  font-size: 0.78rem;
}

.blogx-reader section {
  padding: 0 0 28px !important;
}

.blogx-reader h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.3;
}

.blogx-reader p {
  color: #B8C3DB;
  line-height: 1.78;
  font-size: 1rem;
}

.blogx-ai-summary,
.blogx-callout,
.blogx-reader-cta {
  padding: 20px;
  border: 1px solid rgba(0, 255, 178, 0.18);
  border-radius: 8px;
  background: rgba(0, 255, 178, 0.055);
}

.blogx-ai-summary h3,
.blogx-ai-feature h3 {
  display: flex;
  align-items: center;
  gap: 9px;
}

.blogx-ai-summary svg,
.blogx-ai-feature svg {
  width: 22px;
  height: 22px;
  color: var(--color-neon-green);
}

.blogx-code-block {
  margin: 22px 0;
  border: 1px solid rgba(0, 217, 255, 0.16);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.25);
  overflow-x: auto;
}

.blogx-code-block pre {
  margin: 0;
  padding: 18px;
}

.blogx-code-block code {
  color: #DCE8FF;
  font-size: 0.86rem;
  line-height: 1.65;
}

.blogx-callout {
  display: grid;
  gap: 8px;
}

.blogx-callout strong {
  color: var(--color-neon-green);
}

.blogx-callout span {
  color: #DCE8FF;
}

.blogx-faq details {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 0;
}

.blogx-faq summary {
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.blogx-related > div {
  display: grid;
  gap: 10px;
}

.blogx-related a {
  color: var(--color-neon-cyan);
  text-decoration: none;
  font-weight: 800;
}

.blogx-reader-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.blogx-reader-cta h3 {
  margin: 0;
}

.blogx-share-rail {
  display: grid;
  gap: 10px;
}

.blogx-share-rail button {
  width: 48px;
  height: 48px;
  border-radius: 8px;
}

.blogx-ai-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.blogx-ai-feature {
  padding: 24px;
}

.blogx-ai-feature h3 {
  color: #fff;
  font-size: 1rem;
  line-height: 1.35;
}

.blogx-ai-feature p {
  margin: 0;
  color: #A8B3CF;
  font-size: 0.9rem;
  line-height: 1.6;
}

.blogx-testimonial {
  max-width: 920px;
  margin: 28px auto 0;
  padding: 28px;
  text-align: center;
}

.blogx-logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 28px auto 0;
}

.blogx-logo-strip span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(0, 255, 178, 0.16);
  border-radius: 8px;
  background: rgba(10, 22, 52, 0.58);
  color: #DCE8FF;
  font-size: 0.82rem;
  font-weight: 900;
}

.blogx-testimonial p {
  color: #DCE8FF;
  font-size: 1.08rem;
  line-height: 1.75;
}

.blogx-testimonial span {
  color: var(--color-neon-green);
  font-size: 0.82rem;
  font-weight: 900;
}

.blogx-newsletter-inner {
  max-width: 1050px;
  margin: 0 auto;
  padding: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 32px;
  align-items: center;
}

.blogx-newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(0, 217, 255, 0.24);
  border-radius: 8px;
  background: rgba(3, 10, 31, 0.58);
}

.blogx-newsletter-form input {
  min-height: 48px;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  padding: 0 10px;
}

.blogx-newsletter-form button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 8px;
  padding: 0 16px;
  background: linear-gradient(135deg, var(--color-neon-green), var(--color-neon-cyan));
  color: #02051f;
  font-weight: 900;
}

.blogx-newsletter-form svg {
  width: 16px;
  height: 16px;
}

.blogx-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 24px;
  padding: 34px;
}

.blogx-footer-grid h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 14px;
}

.blogx-footer-grid a {
  display: block;
  margin-bottom: 9px;
  color: #A8B3CF;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
}

.blogx-footer-grid a:hover {
  color: var(--color-neon-cyan);
}

.blogx-chat-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  gap: 8px;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34), 0 0 24px rgba(0, 217, 255, 0.2);
}

@media (hover: hover) {
  .blogx-category-card:hover,
  .blogx-article-card:hover,
  .blogx-featured-main:hover,
  .blogx-side-card:hover,
  .blogx-ai-feature:hover,
  .blogx-trust-card:hover,
  .blogx-search button:hover,
  .blogx-icon-btn:hover,
  .blogx-share-rail button:hover,
  .blogx-chat-widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 58px rgba(0, 217, 255, 0.16);
  }

  .blogx-article-card:hover .blogx-thumb > svg,
  .blogx-featured-main:hover .blogx-thumb > svg,
  .blogx-side-card:hover .blogx-thumb > svg {
    transform: scale(1.12);
  }
}

.blogx-has-js .blogx-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.62s ease, transform 0.62s ease;
}

.blogx-has-js .blogx-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .blogx-has-js .blogx-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1199px) {
  .blogx-category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .blogx-ai-feature-grid,
  .blogx-trust-grid,
  .blogx-stat-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .blogx-page section {
    padding: 74px 0 !important;
  }

  .blogx-hero {
    min-height: auto;
    padding-top: 128px !important;
  }

  .blogx-hero-grid,
  .blogx-featured-grid,
  .blogx-search-intel,
  .blogx-newsletter-inner,
  .blogx-footer-grid {
    grid-template-columns: 1fr;
  }

  .blogx-hero h1 {
    font-size: 2.6rem;
  }

  .blogx-topic-cloud {
    justify-content: flex-start;
  }

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

  .blogx-toc,
  .blogx-share-rail {
    position: static;
  }

  .blogx-share-rail {
    display: flex;
  }

  .blogx-reader-banner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .blogx-page section {
    padding: 62px 0 !important;
  }

  .blogx-hero h1 {
    font-size: 2.08rem;
  }

  .blogx-section-head h2,
  .blogx-search-intel h2,
  .blogx-newsletter h2,
  .blogx-footer-grid h2 {
    font-size: 1.78rem;
  }

  .blogx-search {
    grid-template-columns: 20px 1fr 40px;
    min-height: 54px;
    padding-left: 14px;
  }

  .blogx-ai-orbit {
    min-height: 360px;
  }

  .blogx-knowledge-core {
    width: 180px;
    min-height: 180px;
  }

  .blogx-orbit-card.card-a { left: 16px; top: 34px; }
  .blogx-orbit-card.card-b { right: 16px; top: 98px; }
  .blogx-orbit-card.card-c { left: 26px; bottom: 42px; }

  .blogx-category-grid,
  .blogx-ai-feature-grid,
  .blogx-trust-grid,
  .blogx-stat-strip {
    grid-template-columns: 1fr;
  }

  .blogx-side-card {
    grid-template-columns: 1fr;
  }

  .blogx-grid {
    columns: 1;
  }

  .blogx-reader,
  .blogx-newsletter-inner,
  .blogx-footer-grid {
    padding: 24px;
  }

  .blogx-reader h2 {
    font-size: 1.55rem;
  }

  .blogx-reader-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .blogx-newsletter-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .blogx-eyebrow {
    width: 100%;
    justify-content: center;
    font-size: 0.66rem;
  }

  .blogx-hero-actions .btn-primary-neon,
  .blogx-hero-actions .btn-outline-neon {
    width: 100%;
    justify-content: center;
  }

  .blogx-chat-widget {
    right: 14px;
    bottom: 14px;
  }
}

/* Contact page: premium consultation experience */
.contactx-page {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 255, 178, 0.1), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(0, 217, 255, 0.12), transparent 34%),
    linear-gradient(180deg, #030A1F 0%, #06162F 52%, #030A1F 100%);
}

.contactx-page::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.74) 48%, transparent 100%);
}

.contactx-page > section,
.contactx-page .container {
  position: relative;
  z-index: 1;
}

.contactx-sticky-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1040;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  border: 1px solid rgba(0, 255, 178, 0.32);
  border-radius: 8px;
  background: rgba(0, 255, 178, 0.14);
  color: #F8FAFC;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34), 0 0 22px rgba(0, 255, 178, 0.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.contactx-sticky-whatsapp svg {
  width: 18px;
  height: 18px;
  color: var(--color-neon-green);
}

.contactx-sticky-whatsapp:hover {
  color: #fff;
  border-color: rgba(0, 255, 178, 0.58);
  background: rgba(0, 255, 178, 0.2);
  transform: translateY(-2px);
}

.contactx-hero {
  padding: 142px 0 72px !important;
}

.contactx-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: 44px;
  align-items: center;
}

.contactx-eyebrow,
.contactx-panel-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(0, 217, 255, 0.24);
  border-radius: 8px;
  background: rgba(0, 217, 255, 0.08);
  color: var(--color-neon-cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contactx-eyebrow svg,
.contactx-panel-kicker svg {
  width: 16px;
  height: 16px;
}

.contactx-hero h1,
.contactx-section-head h2,
.contactx-help h2 {
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(2.2rem, 4.4vw, 4.75rem);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: 0;
}

.contactx-hero p,
.contactx-section-head p,
.contactx-help p {
  max-width: 760px;
  margin: 24px 0 0;
  color: #A8B3CF;
  font-size: 1.08rem;
  line-height: 1.72;
}

.contactx-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.contactx-hero-actions .btn-primary-neon,
.contactx-hero-actions .btn-outline-neon {
  min-height: 50px;
  border-radius: 8px;
  padding: 0 22px;
}

.contactx-visual,
.contactx-form-card,
.contactx-contact-panel,
.contactx-help-grid,
.contactx-faq-list {
  border: 1px solid rgba(0, 217, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(10, 22, 52, 0.78), rgba(3, 10, 31, 0.82)) padding-box,
    linear-gradient(135deg, rgba(0, 255, 178, 0.24), rgba(0, 217, 255, 0.18), rgba(59, 130, 246, 0.18)) border-box;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.contactx-visual {
  position: relative;
  min-height: 475px;
  padding: 24px;
  overflow: hidden;
}

.contactx-visual::before {
  content: '';
  position: absolute;
  inset: auto -80px -110px -80px;
  height: 260px;
  background: radial-gradient(ellipse at center, rgba(0, 255, 178, 0.22), rgba(0, 217, 255, 0.08) 42%, transparent 72%);
  pointer-events: none;
}

.contactx-visual-header,
.contactx-delivery-card,
.contactx-pipeline-card,
.contactx-info-card,
.contactx-option-card,
.contactx-process-card,
.contactx-trust-card,
.contactx-alert {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.contactx-visual-header {
  position: relative;
  z-index: 1;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 14px;
}

.contactx-visual-header span,
.contactx-visual-header strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #DCE8FF;
  font-size: 0.82rem;
  font-weight: 900;
}

.contactx-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-neon-green);
  box-shadow: 0 0 18px rgba(0, 255, 178, 0.8);
}

.contactx-pipeline {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contactx-pipeline-card,
.contactx-delivery-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 14px;
}

.contactx-pipeline-card.active {
  border-color: rgba(0, 255, 178, 0.34);
  background: rgba(0, 255, 178, 0.08);
}

.contactx-pipeline-card svg,
.contactx-delivery-card svg,
.contactx-info-card > svg,
.contactx-option-card svg,
.contactx-trust-card svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgba(0, 217, 255, 0.24);
  border-radius: 8px;
  color: var(--color-neon-cyan);
  background: rgba(0, 217, 255, 0.08);
}

.contactx-pipeline-card span,
.contactx-delivery-card span,
.contactx-info-card span {
  display: block;
  color: #8D9BBA;
  font-size: 0.76rem;
  font-weight: 800;
}

.contactx-pipeline-card strong,
.contactx-delivery-card strong,
.contactx-info-card strong {
  display: block;
  margin-top: 4px;
  color: #F8FAFC;
  font-size: 0.94rem;
  line-height: 1.32;
}

.contactx-delivery-card {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  border-color: rgba(0, 255, 178, 0.24);
  background: linear-gradient(135deg, rgba(0, 255, 178, 0.1), rgba(0, 217, 255, 0.07));
}

.contactx-trust {
  padding: 0 0 64px !important;
}

.contactx-trust-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.contactx-trust-card {
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.contactx-trust-card svg {
  width: 34px;
  height: 34px;
  padding: 8px;
}

.contactx-trust-card span {
  color: #DCE8FF;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.35;
}

.contactx-trust-card:hover,
.contactx-info-card:hover,
.contactx-option-card:hover,
.contactx-process-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 178, 0.28);
  background: rgba(0, 255, 178, 0.065);
}

.contactx-form-section,
.contactx-help,
.contactx-process,
.contactx-faq {
  padding: 78px 0 !important;
}

.contactx-section-head {
  max-width: 840px;
  margin: 0 auto 34px;
  text-align: center;
}

.contactx-section-head .section-title,
.contactx-help .section-title {
  display: inline-block;
  padding-left: 0;
  margin-bottom: 0;
}

.contactx-section-head .section-title::before,
.contactx-help .section-title::before {
  display: none;
}

.contactx-section-head h2,
.contactx-help h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.14;
}

.contactx-section-head p {
  margin-inline: auto;
}

.contactx-form-grid {
  display: grid;
  grid-template-columns: minmax(310px, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: start;
}

.contactx-contact-panel,
.contactx-form-card {
  padding: 28px;
}

.contactx-contact-panel {
  position: sticky;
  top: 104px;
}

.contactx-contact-panel h3,
.contactx-success h3 {
  margin: 18px 0 0;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.2;
}

.contactx-contact-panel p,
.contactx-success p,
.contactx-whatsapp-box p {
  margin: 14px 0 0;
  color: #A8B3CF;
  line-height: 1.65;
}

.contactx-info-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contactx-info-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 14px;
  color: inherit;
  text-decoration: none;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.contactx-info-card strong {
  overflow-wrap: anywhere;
}

.contactx-whatsapp-box {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(0, 255, 178, 0.2);
  border-radius: 8px;
  background: rgba(0, 255, 178, 0.07);
}

.contactx-whatsapp-box .btn-outline-neon {
  margin-top: 14px;
  min-height: 44px;
  border-radius: 8px;
  padding: 0 16px;
}

.contactx-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  margin-bottom: 18px;
  color: #FECACA;
  border-color: rgba(239, 68, 68, 0.32);
  background: rgba(239, 68, 68, 0.08);
  font-size: 0.9rem;
  font-weight: 800;
}

.contactx-alert svg {
  width: 18px;
  height: 18px;
}

.contactx-form {
  display: grid;
  gap: 16px;
}

.contactx-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contactx-field {
  display: grid;
  gap: 8px;
}

.contactx-field label {
  color: #DCE8FF;
  font-size: 0.82rem;
  font-weight: 900;
}

.contactx-field label span {
  color: var(--color-neon-green);
}

.contactx-field input,
.contactx-field select,
.contactx-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(3, 10, 31, 0.68);
  color: #F8FAFC;
  padding: 0 14px;
  font-size: 0.94rem;
  outline: 0;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.contactx-field select {
  appearance: none;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, #A8B3CF 50%),
    linear-gradient(135deg, #A8B3CF 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 21px,
    calc(100% - 14px) 21px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.contactx-field select option {
  background: #06162F;
  color: #F8FAFC;
}

.contactx-field textarea {
  min-height: 132px;
  padding: 13px 14px;
  resize: vertical;
}

.contactx-field input::placeholder,
.contactx-field textarea::placeholder {
  color: rgba(168, 179, 207, 0.58);
}

.contactx-field input:focus,
.contactx-field select:focus,
.contactx-field textarea:focus {
  border-color: rgba(0, 217, 255, 0.5);
  background: rgba(3, 10, 31, 0.86);
  box-shadow: 0 0 0 4px rgba(0, 217, 255, 0.08);
}

.contactx-form.is-validated .contactx-field input:invalid,
.contactx-form.is-validated .contactx-field select:invalid,
.contactx-form.is-validated .contactx-field textarea:invalid {
  border-color: rgba(239, 68, 68, 0.72);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.08);
}

.contactx-field small {
  color: #FCA5A5;
  font-size: 0.76rem;
  font-weight: 800;
}

.contactx-file-field input[type="file"] {
  min-height: auto;
  padding: 12px;
}

.contactx-file-field span {
  color: #8D9BBA;
  font-size: 0.76rem;
  line-height: 1.35;
}

.contactx-submit {
  width: 100%;
  min-height: 54px;
  justify-content: center;
  border-radius: 8px;
  margin-top: 4px;
}

.contactx-submit-loading {
  display: none;
  align-items: center;
  gap: 8px;
}

.contactx-submit-loading span {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(3, 10, 31, 0.28);
  border-top-color: #030A1F;
  border-radius: 50%;
  animation: contactxSpin 0.75s linear infinite;
}

.contactx-form.is-submitting .contactx-submit-label,
.contactx-form.is-submitting .contactx-submit > svg {
  display: none;
}

.contactx-form.is-submitting .contactx-submit-loading {
  display: inline-flex;
}

.contactx-microcopy {
  margin: 0;
  color: #8D9BBA;
  font-size: 0.82rem;
  text-align: center;
}

.contactx-success {
  padding: 44px 24px;
  text-align: center;
}

.contactx-success-icon {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #030A1F;
  background: linear-gradient(135deg, var(--color-neon-green), var(--color-neon-cyan));
  box-shadow: 0 0 34px rgba(0, 255, 178, 0.28);
}

.contactx-success-icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 3;
}

.contactx-success-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.contactx-help-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
}

.contactx-help p {
  max-width: 620px;
}

.contactx-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contactx-option-card {
  min-height: 124px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 18px;
  color: inherit;
  text-decoration: none;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.contactx-option-card span {
  color: #F8FAFC;
  font-size: 0.94rem;
  line-height: 1.36;
  font-weight: 900;
}

.contactx-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.contactx-process-card {
  min-height: 190px;
  padding: 22px;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.contactx-process-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(0, 255, 178, 0.26);
  border-radius: 8px;
  color: var(--color-neon-green);
  background: rgba(0, 255, 178, 0.08);
  font-size: 0.84rem;
  font-weight: 900;
}

.contactx-process-card h3 {
  margin: 18px 0 0;
  color: #fff;
  font-size: 1rem;
  line-height: 1.32;
}

.contactx-process-card p {
  margin: 10px 0 0;
  color: #A8B3CF;
  font-size: 0.88rem;
  line-height: 1.6;
}

.contactx-faq-list {
  max-width: 980px;
  margin: 0 auto;
  padding: 10px;
}

.contactx-faq-list details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contactx-faq-list details:last-child {
  border-bottom: 0;
}

.contactx-faq-list summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 14px;
  color: #F8FAFC;
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 900;
  list-style: none;
}

.contactx-faq-list summary::-webkit-details-marker {
  display: none;
}

.contactx-faq-list summary::after {
  content: '+';
  flex: 0 0 auto;
  color: var(--color-neon-cyan);
  font-size: 1.4rem;
  line-height: 1;
}

.contactx-faq-list details[open] summary::after {
  content: '-';
}

.contactx-faq-list p {
  margin: 0;
  padding: 0 14px 18px;
  color: #A8B3CF;
  line-height: 1.68;
}

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

@media (max-width: 1199px) {
  .contactx-trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contactx-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .contactx-hero {
    padding: 126px 0 56px !important;
  }

  .contactx-hero-grid,
  .contactx-form-grid,
  .contactx-help-grid {
    grid-template-columns: 1fr;
  }

  .contactx-visual {
    min-height: 0;
  }

  .contactx-contact-panel {
    position: static;
  }
}

@media (max-width: 767px) {
  .contactx-sticky-whatsapp {
    right: 14px;
    bottom: 14px;
  }

  .contactx-sticky-whatsapp span {
    display: none;
  }

  .contactx-sticky-whatsapp {
    width: 48px;
    justify-content: center;
    padding: 0;
  }

  .contactx-hero,
  .contactx-form-section,
  .contactx-help,
  .contactx-process,
  .contactx-faq {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .contactx-hero h1 {
    font-size: 2.18rem;
  }

  .contactx-hero p,
  .contactx-section-head p,
  .contactx-help p {
    font-size: 0.98rem;
  }

  .contactx-hero-actions .btn-primary-neon,
  .contactx-hero-actions .btn-outline-neon,
  .contactx-success-actions .btn-primary-neon,
  .contactx-success-actions .btn-outline-neon {
    width: 100%;
    justify-content: center;
  }

  .contactx-trust-grid,
  .contactx-form-row,
  .contactx-option-grid,
  .contactx-process-grid {
    grid-template-columns: 1fr;
  }

  .contactx-contact-panel,
  .contactx-form-card,
  .contactx-help-grid {
    padding: 22px;
  }

  .contactx-trust-card,
  .contactx-option-card,
  .contactx-process-card {
    min-height: auto;
  }

  .contactx-visual {
    padding: 18px;
  }

  .contactx-visual-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px;
  }

  .contactx-pipeline-card,
  .contactx-delivery-card,
  .contactx-info-card {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .contactx-pipeline-card svg,
  .contactx-delivery-card svg,
  .contactx-info-card > svg,
  .contactx-option-card svg,
  .contactx-trust-card svg {
    width: 38px;
    height: 38px;
    padding: 9px;
  }
}

/* Contact form trust badges */
.contactx-form-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
  margin-bottom: 8px;
}

.contactx-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(0, 255, 178, 0.12);
  background: rgba(0, 255, 178, 0.03);
}

.contactx-badge-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-neon-green);
  flex-shrink: 0;
}

.contactx-badge-item span {
  color: #DCE8FF;
  font-size: 0.82rem;
  font-weight: 800;
}

@media (max-width: 575px) {
  .contactx-form-badges {
    grid-template-columns: 1fr;
  }
}

/* Final home hero dashboard beauty pass */
.db-mockup-card {
  overflow: hidden !important;
  border-radius: 18px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), transparent 18%),
    radial-gradient(ellipse at 22% 0%, rgba(0, 255, 178, 0.18), transparent 34%),
    radial-gradient(ellipse at 84% 8%, rgba(93, 229, 255, 0.17), transparent 36%),
    radial-gradient(ellipse at 72% 102%, rgba(246, 180, 75, 0.12), transparent 40%),
    linear-gradient(135deg, rgba(7, 12, 36, 0.99), rgba(2, 6, 27, 0.99) 56%, rgba(10, 17, 45, 0.99));
  border: 1px solid rgba(93, 229, 255, 0.34) !important;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.68),
    0 0 0 1px rgba(0, 255, 178, 0.13),
    0 0 72px rgba(0, 217, 255, 0.24),
    0 24px 88px rgba(0, 255, 178, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.16) !important;
}

.db-mockup-card::before {
  opacity: 0.86;
  background: linear-gradient(135deg, rgba(0, 255, 178, 0.7), rgba(93, 229, 255, 0.3) 52%, rgba(246, 180, 75, 0.42));
}

.db-mockup-card::after {
  inset: 11px;
  border-radius: 10px;
  border-color: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 0 38px rgba(93, 229, 255, 0.045);
}

.db-screen-grid {
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(93, 229, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 178, 0.038) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(125deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.34) 64%, transparent 90%);
}

.db-shine {
  opacity: 0.58;
  background:
    linear-gradient(116deg, transparent 0%, rgba(255, 255, 255, 0.1) 37%, transparent 53%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 30%);
}

.db-sidebar {
  background:
    linear-gradient(180deg, rgba(3, 9, 31, 0.96), rgba(3, 8, 27, 0.82)),
    linear-gradient(90deg, rgba(0, 255, 178, 0.07), transparent 54%);
  border-right-color: rgba(93, 229, 255, 0.18);
  box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.04);
}

.db-sidebar-logo img {
  filter:
    drop-shadow(0 0 12px rgba(0, 255, 178, 0.2))
    drop-shadow(0 0 18px rgba(0, 217, 255, 0.14)) !important;
}

.db-logo-lockup {
  min-height: 38px;
  margin: 0 0 4px;
  padding: 0;
  justify-content: center;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.db-sidebar-logo .db-dashboard-logo {
  width: 88px !important;
  height: auto !important;
  max-width: 100%;
  border-radius: 0 !important;
  object-fit: contain !important;
  filter:
    drop-shadow(0 0 10px rgba(0, 255, 178, 0.22))
    drop-shadow(0 0 16px rgba(0, 217, 255, 0.12)) !important;
}

@media (max-width: 1199px) {
  .db-sidebar-logo .db-dashboard-logo {
    width: 78px !important;
  }
}

.db-menu-item {
  position: relative;
  border-radius: 8px;
}

.db-menu-item.active,
.db-menu-item:hover {
  color: #ffffff;
  border-color: rgba(0, 255, 178, 0.32);
  background:
    radial-gradient(ellipse at 12% 50%, rgba(0, 255, 178, 0.26), transparent 58%),
    linear-gradient(135deg, rgba(0, 255, 178, 0.15), rgba(93, 229, 255, 0.1));
  box-shadow:
    inset 3px 0 0 rgba(0, 255, 178, 0.9),
    0 0 18px rgba(0, 255, 178, 0.08);
}

.db-main {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 24%),
    linear-gradient(90deg, rgba(93, 229, 255, 0.035), transparent 42%);
}

.db-headline {
  display: block;
}

.db-health-chip {
  display: inline-flex;
}

.db-main-header {
  min-height: 30px;
}

.db-kicker {
  color: rgba(0, 255, 178, 0.86);
  font-size: 0.5rem;
}

.db-headline h3 {
  font-size: 0.88rem;
  letter-spacing: 0;
}

.db-health-chip,
.db-user-greet {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  border-color: rgba(173, 216, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.db-metric-card {
  border-radius: 8px !important;
  background:
    radial-gradient(ellipse at 82% 0%, color-mix(in srgb, var(--card-accent) 30%, transparent), transparent 48%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.034) 72%) !important;
  border-color: color-mix(in srgb, var(--card-accent) 38%, rgba(255, 255, 255, 0.08)) !important;
  box-shadow:
    0 15px 30px rgba(0, 0, 0, 0.28),
    0 0 24px color-mix(in srgb, var(--card-accent) 11%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
}

.db-metric-card::after {
  content: '';
  position: absolute;
  right: -32px;
  top: 17px;
  width: 86px;
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--card-accent) 48%, transparent), transparent);
  opacity: 0.5;
  transform: rotate(132deg);
}

.db-m-label {
  color: rgba(219, 232, 249, 0.72);
  font-weight: 800;
}

.db-m-val {
  color: #ffffff;
  text-shadow: 0 0 18px color-mix(in srgb, var(--card-accent) 15%, transparent);
}

.db-m-sub {
  color: color-mix(in srgb, var(--card-accent) 92%, #ffffff);
  font-weight: 800;
}

.db-chart-box,
.db-pipeline-card,
.db-activity-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.026)),
    linear-gradient(135deg, rgba(93, 229, 255, 0.035), transparent 50%) !important;
  border-color: rgba(173, 216, 255, 0.18) !important;
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.db-chart-box::before,
.db-pipeline-card::before,
.db-activity-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(93, 229, 255, 0.58), transparent);
  opacity: 0.7;
}

.db-box-title {
  color: rgba(238, 247, 255, 0.82);
}

.db-chart-badge,
.db-mini-status {
  background: rgba(0, 255, 178, 0.14);
  border-color: rgba(0, 255, 178, 0.34);
  color: #caffec;
  box-shadow: 0 0 16px rgba(0, 255, 178, 0.11);
}

.db-growth-chart-wrap {
  filter: drop-shadow(0 9px 18px rgba(0, 217, 255, 0.12));
}

.db-radial-progress {
  background:
    conic-gradient(from 216deg, #00ffb2 calc(var(--percent) * 0.62%), #5de5ff calc(var(--percent) * 1%), rgba(255, 255, 255, 0.075) 0) !important;
  box-shadow:
    0 0 30px rgba(93, 229, 255, 0.32),
    0 0 18px rgba(0, 255, 178, 0.14),
    inset 0 0 26px rgba(0, 0, 0, 0.26) !important;
}

.db-radial-progress::before {
  background:
    radial-gradient(circle at 50% 42%, rgba(93, 229, 255, 0.12), transparent 56%),
    linear-gradient(135deg, rgba(5, 11, 34, 0.99), rgba(15, 21, 50, 0.99)) !important;
}

.db-radial-value {
  text-shadow: 0 0 16px rgba(93, 229, 255, 0.24);
}

.pedestal-platform {
  background:
    radial-gradient(ellipse at center, rgba(0, 255, 178, 0.2), rgba(93, 229, 255, 0.12) 44%, transparent 73%) !important;
  border-color: rgba(0, 255, 178, 0.28) !important;
  box-shadow:
    0 0 76px rgba(0, 255, 178, 0.22),
    0 0 62px rgba(93, 229, 255, 0.18),
    inset 0 0 46px rgba(93, 229, 255, 0.16) !important;
}

.standing-card {
  overflow: hidden;
  border-radius: 8px !important;
  background:
    linear-gradient(180deg, rgba(12, 24, 54, 0.92), rgba(5, 12, 35, 0.96)) !important;
  border-color: rgba(93, 229, 255, 0.24) !important;
  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.5),
    0 0 26px rgba(93, 229, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.11) !important;
}

.standing-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(93, 229, 255, 0.55), transparent);
}

.standing-card.is-active,
.standing-card:hover {
  border-color: rgba(0, 255, 178, 0.56) !important;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0, 255, 178, 0.16), transparent 55%),
    linear-gradient(180deg, rgba(13, 28, 59, 0.94), rgba(4, 12, 35, 0.98)) !important;
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.56),
    0 0 36px rgba(0, 255, 178, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.13) !important;
}

.sc-icon {
  border-radius: 8px !important;
  box-shadow:
    0 0 18px currentColor,
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

@media (min-width: 992px) {
  .dashboard-ambient.ambient-cyan {
    background:
      linear-gradient(110deg, transparent, rgba(0, 255, 178, 0.1), transparent),
      radial-gradient(ellipse at center, rgba(0, 217, 255, 0.2), rgba(0, 255, 178, 0.13) 42%, transparent 72%) !important;
  }

  .db-headline {
    display: block !important;
  }

  .db-health-chip {
    display: inline-flex !important;
  }

  .db-main-header {
    justify-content: space-between !important;
    align-items: center !important;
  }

  .db-mockup-card {
    height: 346px !important;
  }

  .db-main {
    padding: 11px 13px 13px;
    gap: 8px;
  }

  .db-metric-card {
    min-height: 72px;
  }

  .db-charts-row {
    min-height: 130px;
  }

  .db-growth-chart-wrap {
    height: 94px;
  }

  .db-radial-chart-wrap {
    min-height: 94px;
  }

  .db-radial-progress {
    width: 72px;
    height: 72px;
  }

  .db-radial-progress::before {
    width: 55px;
    height: 55px;
  }
}

@media (min-width: 1400px) {
  .db-mockup-card {
    width: min(700px, 100%) !important;
    height: 356px !important;
  }

  .standing-cards-container {
    width: 650px !important;
  }
}

@media (max-width: 768px) {
  .db-mockup-card {
    border-radius: 14px !important;
  }

  .db-main-header {
    gap: 10px;
  }

  .db-headline {
    display: block;
  }

  .db-health-chip {
    display: inline-flex;
  }

  .db-metric-card::after {
    right: -38px;
    width: 104px;
  }
}

/* Keep the home hero as the complete first screen on desktop. */
@media (min-width: 992px) {
  .hero-section {
    min-height: 100vh !important;
    padding-bottom: clamp(22px, 3vh, 38px) !important;
  }

  .hero-section > .container {
    min-height: calc(100vh - 112px);
    display: flex;
    flex-direction: column;
  }

  .hero-section .stats-bar-premium {
    margin-top: auto !important;
  }
}

@media (min-width: 1400px) and (max-height: 860px) {
  .hero-section > .container {
    min-height: calc(100vh - 98px);
  }

  .hero-section .stats-bar-premium {
    padding-top: 13px !important;
    padding-bottom: 13px !important;
  }
}

/* Home page beautify pass */
.hero-section {
  background:
    radial-gradient(ellipse at 66% 28%, rgba(0, 217, 255, 0.12), transparent 38%),
    radial-gradient(ellipse at 78% 72%, rgba(0, 255, 178, 0.1), transparent 42%),
    radial-gradient(ellipse at 16% 18%, rgba(93, 229, 255, 0.055), transparent 36%),
    linear-gradient(180deg, #030a1f 0%, #020819 100%) !important;
}

.hero-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34%;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 217, 255, 0.055) 58%, rgba(0, 255, 178, 0.08) 100%),
    radial-gradient(ellipse at 50% 100%, rgba(0, 255, 178, 0.13), transparent 60%);
  opacity: 0.9;
}

.hero-left-glow {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(0, 255, 178, 0.09), transparent 68%);
  filter: blur(62px);
}

.hero-right-glow {
  width: 620px;
  height: 520px;
  top: 10%;
  right: -7%;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.105), transparent 68%);
  filter: blur(68px);
}

.hero-section .badge {
  background:
    linear-gradient(135deg, rgba(0, 217, 255, 0.11), rgba(0, 255, 178, 0.06)) !important;
  border-color: rgba(0, 217, 255, 0.38) !important;
  box-shadow:
    0 0 24px rgba(0, 217, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-title {
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.hero-title .text-glowing-neon {
  text-shadow:
    0 0 24px rgba(0, 255, 178, 0.18),
    0 0 44px rgba(0, 217, 255, 0.08);
}

.hero-section .btn-primary-neon {
  border-radius: 8px !important;
  box-shadow:
    0 14px 34px rgba(0, 255, 178, 0.28),
    0 0 36px rgba(0, 217, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.24) !important;
}

.hero-section .btn-primary-neon:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 42px rgba(0, 255, 178, 0.36),
    0 0 42px rgba(0, 217, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

.btn-outline-neon.hero-secondary-btn {
  border-radius: 8px !important;
  background: rgba(3, 10, 31, 0.3) !important;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.btn-outline-neon.hero-secondary-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 15px 32px rgba(0, 217, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-trust-row {
  gap: 8px !important;
  flex-wrap: wrap;
  max-width: 690px;
}

.hero-trust-row > span:first-child {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  color: rgba(248, 250, 252, 0.82);
  letter-spacing: 0.08em;
}

.hero-trust-row > span.text-muted {
  display: none !important;
}

.hero-trust-row > span.d-inline-flex {
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 999px;
  color: rgba(248, 250, 252, 0.92);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028)),
    rgba(7, 18, 44, 0.68);
  border: 1px solid rgba(93, 229, 255, 0.16);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-trust-row > span.d-inline-flex svg {
  width: 15px !important;
  height: 15px !important;
  filter: drop-shadow(0 0 8px currentColor);
}

.stats-bar-premium {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(12, 24, 54, 0.9), rgba(5, 13, 38, 0.92)) !important;
  border-color: rgba(93, 229, 255, 0.2) !important;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.36),
    0 0 46px rgba(0, 217, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.09) !important;
}

.stats-bar-premium::before {
  content: '';
  position: absolute;
  left: 20px;
  right: 20px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.6), rgba(0, 255, 178, 0.48), transparent);
}

.stats-bar-item {
  border-radius: 8px !important;
}

.stats-bar-item:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.026)) !important;
  border-color: rgba(0, 255, 178, 0.24) !important;
}

.stats-bar-icon-wrap {
  border-radius: 8px !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(93, 229, 255, 0.16), transparent 70%),
    rgba(0, 217, 255, 0.08) !important;
}

.stats-bar-number {
  letter-spacing: 0;
  text-shadow: 0 0 24px rgba(93, 229, 255, 0.1);
}

.navbar.aevora-header {
  background:
    linear-gradient(180deg, rgba(3, 10, 31, 0.94), rgba(3, 10, 31, 0.78)) !important;
  border-bottom: 1px solid rgba(93, 229, 255, 0.12);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.aevora-header .nav-shell {
  backdrop-filter: none;
}

.aevora-header .premium-nav-list {
  background:
    linear-gradient(180deg, rgba(10, 22, 52, 0.74), rgba(5, 13, 38, 0.6));
  border-color: rgba(0, 217, 255, 0.18);
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.aevora-header .nav-link.active {
  box-shadow:
    0 0 0 1px rgba(0, 255, 178, 0.18),
    0 0 22px rgba(0, 255, 178, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

@media (min-width: 992px) {
  .hero-section .row {
    width: 100%;
  }

  .hero-section > .container {
    justify-content: flex-start;
  }

  .hero-section .stats-bar-premium {
    transform: translateY(-2px);
  }
}

@media (max-width: 768px) {
  .hero-trust-row {
    gap: 7px !important;
  }

  .hero-trust-row > span:first-child {
    width: 100%;
    min-height: 22px;
  }

  .hero-trust-row > span.d-inline-flex {
    min-height: 30px;
    padding: 6px 9px;
    font-size: 0.74rem;
  }

  .hero-section .btn-primary-neon,
  .hero-section .btn-outline-neon {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .stats-bar-premium {
    width: min(100%, calc(100vw - 32px)) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 14px !important;
  }

  .stats-bar-premium .row {
    --bs-gutter-x: 10px;
    --bs-gutter-y: 10px;
    margin-left: 0;
    margin-right: 0;
  }

  .stats-bar-premium .row > .col {
    min-width: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .stats-bar-item {
    min-width: 0;
    min-height: 76px;
    gap: 9px !important;
    padding: 10px !important;
  }

  .stats-bar-content {
    min-width: 0;
  }

  .stats-bar-icon-wrap {
    width: 36px !important;
    height: 36px !important;
  }

  .stats-bar-icon-wrap svg,
  .stats-bar-icon-wrap i {
    width: 18px !important;
    height: 18px !important;
  }

  .stats-bar-number {
    font-size: clamp(1.28rem, 6.8vw, 1.72rem) !important;
  }

  .stats-bar-label {
    font-size: 0.72rem !important;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }
}

/* Plain AEVORA logo lockup across the site */
.brand-lockup,
.footer-logo-link.brand-lockup {
  gap: 9px !important;
  min-height: 42px;
}

.brand-wordmark {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  transform: none !important;
}

.brand-name {
  color: #F8FAFC !important;
  font-size: 0.98rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  line-height: 1 !important;
}

.brand-subtitle {
  display: none !important;
}

.brand-mark,
.aevora-header .navbar-brand .brand-mark,
.footer-logo-link .brand-mark {
  width: 31px !important;
  height: 31px !important;
  object-fit: contain !important;
  filter:
    drop-shadow(0 0 10px rgba(0, 255, 178, 0.26))
    drop-shadow(0 0 14px rgba(0, 217, 255, 0.12)) !important;
}

.footer-logo-link.brand-lockup {
  width: fit-content;
  padding: 0 !important;
}

.footer-logo-link .brand-name {
  font-size: 1rem !important;
}

@media (max-width: 430px) {
  .brand-lockup,
  .footer-logo-link.brand-lockup {
    gap: 7px !important;
  }

  .brand-name {
    font-size: 0.86rem !important;
  }

  .brand-mark,
  .aevora-header .navbar-brand .brand-mark,
  .footer-logo-link .brand-mark {
    width: 28px !important;
    height: 28px !important;
  }
}

/* Final live-version polish */
.hero-trust-note {
  max-width: 620px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 14px 0 0;
  color: rgba(168, 179, 207, 0.86);
  font-size: 0.86rem;
  line-height: 1.55;
}

.hero-trust-note svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--color-neon-green);
  filter: drop-shadow(0 0 10px rgba(0, 255, 178, 0.22));
}

.trust-proof-strip {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 16px;
  align-items: stretch;
  padding: 20px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.026)),
    rgba(7, 18, 44, 0.72);
  border: 1px solid rgba(93, 229, 255, 0.16);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.trust-proof-head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  text-align: left;
}

.trust-proof-head span {
  color: var(--color-neon-green);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.trust-proof-head strong {
  color: #F8FAFC;
  font-size: 1rem;
  line-height: 1.42;
}

.trust-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.trust-proof-grid span {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px;
  border-radius: 8px;
  color: rgba(248, 250, 252, 0.88);
  background: rgba(3, 10, 31, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.065);
  font-size: 0.82rem;
  font-weight: 800;
}

.trust-proof-grid svg {
  width: 17px;
  height: 17px;
  color: var(--color-neon-cyan);
}

.services-section .service-card {
  gap: 12px;
  border-radius: 8px !important;
}

.services-section .service-card p {
  margin-bottom: 0;
}

.service-learn-link {
  margin-top: auto;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  color: var(--color-neon-cyan);
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
  transition: color 0.22s ease, transform 0.22s ease;
}

.service-learn-link svg {
  width: 15px;
  height: 15px;
  transition: transform 0.22s ease;
}

.service-card:hover .service-learn-link {
  color: var(--color-neon-green);
}

.service-card:hover .service-learn-link svg {
  transform: translate(3px, -3px);
}

.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-neon-green), var(--color-neon-cyan), var(--color-gold));
  box-shadow: 0 0 18px rgba(0, 217, 255, 0.45);
  transition: width 0.12s linear;
}

.nav-utility-btn,
.site-search-close,
.back-to-top-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(93, 229, 255, 0.18);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(248, 250, 252, 0.92);
  background: rgba(255, 255, 255, 0.045);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.nav-utility-btn svg,
.site-search-close svg,
.back-to-top-btn svg {
  width: 18px;
  height: 18px;
}

.nav-utility-btn:hover,
.site-search-close:hover,
.back-to-top-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 255, 178, 0.34);
  background: rgba(0, 217, 255, 0.1);
  color: var(--color-neon-green);
}

.site-search-overlay[hidden] {
  display: none;
}

.site-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: start center;
  padding: clamp(92px, 12vh, 130px) var(--aevora-safe-x) 32px;
}

.site-search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 4, 18, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-search-panel {
  position: relative;
  z-index: 2;
  width: min(100%, 720px);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(7, 18, 44, 0.94);
  border: 1px solid rgba(93, 229, 255, 0.22);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-search-close {
  position: absolute;
  top: 14px;
  right: 14px;
}

.site-search-kicker {
  color: var(--color-neon-green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-search-panel h2 {
  max-width: 560px;
  margin: 10px 0 18px;
  color: #fff;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.site-search-form {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 8px;
  background: rgba(3, 10, 31, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.site-search-form svg {
  color: var(--color-neon-cyan);
}

.site-search-form input {
  border: 0;
  outline: 0;
  min-height: 42px;
  color: #fff;
  background: transparent;
  font-size: 1rem;
}

.site-search-form input::placeholder {
  color: rgba(168, 179, 207, 0.68);
}

.site-search-form button {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  color: #06162F;
  background: linear-gradient(90deg, var(--color-neon-green), var(--color-neon-cyan));
  font-weight: 900;
}

.site-search-results {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.site-search-result {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(248, 250, 252, 0.92);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.065);
}

.site-search-result:hover {
  color: var(--color-neon-green);
  border-color: rgba(0, 255, 178, 0.26);
  background: rgba(0, 255, 178, 0.055);
}

.hero-dynamic-phrase {
  display: inline-block;
  min-width: min(100%, 9.2ch);
  background: linear-gradient(90deg, var(--color-neon-green), var(--color-neon-cyan), var(--color-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.hero-dynamic-phrase.is-switching {
  opacity: 0;
  transform: translateY(8px);
}

.hero-proof-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.hero-proof-chips span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 8px;
  color: rgba(248, 250, 252, 0.9);
  background: rgba(3, 10, 31, 0.46);
  border: 1px solid rgba(93, 229, 255, 0.14);
  font-size: 0.78rem;
  font-weight: 900;
}

.hero-proof-chips svg {
  width: 15px;
  height: 15px;
  color: var(--color-neon-green);
}

.btn-demo-neon {
  min-height: 48px;
  border: 1.5px solid rgba(246, 180, 75, 0.38);
  border-radius: 8px;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #fff;
  background: rgba(246, 180, 75, 0.08);
  font-weight: 900;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.btn-demo-neon svg {
  width: 18px;
  height: 18px;
  color: var(--color-gold);
}

.btn-demo-neon:hover {
  transform: translateY(-3px);
  border-color: rgba(246, 180, 75, 0.72);
  background: rgba(246, 180, 75, 0.16);
  color: var(--color-gold);
}

.hero-cta-row {
  margin-bottom: clamp(14px, 2vw, 22px);
}

.hero-dynamic-phrase::after {
  content: '';
  display: inline-block;
  width: 0.08em;
  height: 0.9em;
  margin-left: 0.08em;
  background: currentColor;
  opacity: 0.75;
  animation: caretBlink 0.8s steps(1) infinite;
}

.sc-feature-popover {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  width: 190px;
  transform: translate(-50%, 8px);
  opacity: 0;
  pointer-events: none;
  display: grid;
  gap: 6px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(3, 10, 31, 0.94);
  border: 1px solid rgba(93, 229, 255, 0.22);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.36);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.sc-feature-popover span {
  color: rgba(248, 250, 252, 0.9);
  font-size: 0.72rem;
  font-weight: 800;
  text-align: left;
}

.standing-card:hover .sc-feature-popover,
.standing-card:focus-within .sc-feature-popover,
.standing-card.is-active .sc-feature-popover {
  opacity: 1;
  transform: translate(-50%, 0);
}

.hero-social-strip,
.fold-shift-strip,
.pain-solution-compare {
  border-radius: 8px;
  background: rgba(3, 10, 31, 0.44);
  border: 1px solid rgba(93, 229, 255, 0.12);
}

.hero-social-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  margin-top: 12px;
}

.hero-social-kicker {
  color: var(--color-neon-green);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-social-items {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.hero-social-items::-webkit-scrollbar {
  display: none;
}

.hero-social-items span {
  flex: 0 0 auto;
  padding: 6px 9px;
  border-radius: 7px;
  color: rgba(248, 250, 252, 0.86);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.76rem;
  font-weight: 800;
  animation: trustedMarquee 24s linear infinite;
}

.fold-shift-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 14px;
  margin-top: 12px;
}

.fold-shift-strip > svg {
  width: 22px;
  height: 22px;
  color: var(--color-neon-cyan);
  justify-self: center;
}

.fold-shift-side {
  display: grid;
  gap: 6px;
}

.fold-shift-side strong {
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.35;
}

.fold-shift-label {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fold-shift-label.before {
  color: #fecaca;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.22);
}

.fold-shift-label.after {
  color: var(--color-neon-green);
  background: rgba(0, 255, 178, 0.1);
  border: 1px solid rgba(0, 255, 178, 0.2);
}

.demo-tour-modal[hidden] {
  display: none;
}

.demo-tour-modal {
  position: fixed;
  inset: 0;
  z-index: 1250;
  display: grid;
  place-items: center;
  padding: var(--aevora-safe-x);
}

.demo-tour-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 4, 18, 0.74);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.demo-tour-panel {
  position: relative;
  z-index: 2;
  width: min(100%, 980px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 24px;
  padding: clamp(20px, 3vw, 32px);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(7, 18, 44, 0.96);
  border: 1px solid rgba(93, 229, 255, 0.2);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.48);
}

.demo-tour-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.demo-tour-video {
  min-height: 300px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 217, 255, 0.14), transparent 45%),
    linear-gradient(315deg, rgba(0, 255, 178, 0.12), transparent 55%),
    rgba(3, 10, 31, 0.72);
  border: 1px solid rgba(93, 229, 255, 0.16);
}

.demo-play-orb {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #06162F;
  background: linear-gradient(90deg, var(--color-neon-green), var(--color-neon-cyan));
  box-shadow: 0 0 55px rgba(0, 217, 255, 0.38);
}

.demo-play-orb svg {
  width: 34px;
  height: 34px;
  margin-left: 4px;
}

.demo-tour-lines {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 8px;
}

.demo-tour-lines span {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.demo-tour-copy {
  padding: 16px 12px;
}

.demo-tour-copy .section-title {
  margin-bottom: 16px;
}

.demo-tour-copy h2 {
  font-size: clamp(1.4rem, 3vw, 2.15rem);
}

.demo-tour-steps {
  display: grid;
  gap: 10px;
  margin: 20px 0;
}

.demo-tour-steps span {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 8px;
  color: rgba(248, 250, 252, 0.9);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.065);
  font-weight: 800;
}

.demo-tour-steps svg {
  width: 18px;
  height: 18px;
  color: var(--color-neon-green);
}

.pain-solution-compare {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  padding: 14px;
  margin: -20px 0 28px;
}

.pain-solution-compare > svg {
  align-self: center;
  justify-self: center;
  color: var(--color-neon-cyan);
}

.pain-solution-card {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.pain-solution-card span {
  width: fit-content;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pain-solution-card.pain span {
  color: #fecaca;
}

.pain-solution-card.solution span {
  color: var(--color-neon-green);
}

.pain-solution-card strong {
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.38;
}

.ba-visual-slider {
  margin: -14px auto 32px;
  max-width: 980px;
  border-radius: 8px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.022)),
    rgba(7, 18, 44, 0.74);
  border: 1px solid rgba(93, 229, 255, 0.16);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.ba-visual-stage {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(3, 10, 31, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.065);
}

.ba-visual-layer {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 16px;
  padding: 28px;
}

.ba-chaos {
  color: #fecaca;
  background:
    linear-gradient(135deg, rgba(239, 68, 68, 0.18), rgba(75, 85, 99, 0.26)),
    repeating-linear-gradient(0deg, transparent 0 28px, rgba(255, 255, 255, 0.035) 29px, transparent 30px),
    rgba(20, 24, 36, 0.96);
}

.ba-autopilot {
  clip-path: inset(0 0 0 var(--ba-position));
  color: var(--color-neon-green);
  background:
    radial-gradient(circle at 72% 40%, rgba(0, 255, 178, 0.2), transparent 35%),
    linear-gradient(135deg, rgba(0, 255, 178, 0.18), rgba(0, 217, 255, 0.12)),
    rgba(3, 10, 31, 0.96);
}

.ba-visual-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 10px;
  border-radius: 7px;
  color: inherit;
  background: rgba(3, 10, 31, 0.6);
  border: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ba-visual-layer strong {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  color: #fff;
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.35;
}

.chaos-sheet {
  position: absolute;
  width: 170px;
  height: 118px;
  border-radius: 8px;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 22px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 44px),
    rgba(31, 41, 55, 0.78);
  border: 1px solid rgba(248, 113, 113, 0.28);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.28);
}

.sheet-one {
  left: 15%;
  top: 33%;
  transform: rotate(-10deg);
}

.sheet-two {
  right: 20%;
  top: 26%;
  transform: rotate(8deg);
}

.chaos-icon {
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fecaca;
  background: rgba(127, 29, 29, 0.46);
  border: 1px solid rgba(248, 113, 113, 0.3);
}

.chaos-icon svg,
.auto-orbit svg {
  width: 24px;
  height: 24px;
}

.chaos-icon.missed {
  left: 32%;
  top: 21%;
}

.chaos-icon.alert {
  right: 31%;
  top: 51%;
}

.auto-dashboard-card {
  width: min(70%, 420px);
  min-height: 178px;
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: 8px;
  background: rgba(3, 10, 31, 0.68);
  border: 1px solid rgba(0, 255, 178, 0.24);
  box-shadow: 0 0 52px rgba(0, 255, 178, 0.16);
}

.auto-dashboard-row {
  height: 12px;
  width: 68%;
  border-radius: 999px;
  background: rgba(93, 229, 255, 0.26);
}

.auto-dashboard-row.wide {
  width: 100%;
  background: rgba(0, 255, 178, 0.34);
}

.auto-dashboard-row.short {
  width: 46%;
  background: rgba(246, 180, 75, 0.3);
}

.auto-dashboard-chart {
  display: flex;
  align-items: end;
  gap: 9px;
  height: 62px;
  margin-top: auto;
}

.auto-dashboard-chart span {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--color-neon-green), rgba(0, 217, 255, 0.42));
  animation: barPulse 1.8s ease-in-out infinite;
}

.auto-dashboard-chart span:nth-child(1) { height: 44%; }
.auto-dashboard-chart span:nth-child(2) { height: 72%; animation-delay: 0.15s; }
.auto-dashboard-chart span:nth-child(3) { height: 56%; animation-delay: 0.3s; }
.auto-dashboard-chart span:nth-child(4) { height: 92%; animation-delay: 0.45s; }

.auto-orbit {
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--color-neon-green);
  background: rgba(0, 255, 178, 0.12);
  border: 1px solid rgba(0, 255, 178, 0.26);
  box-shadow: 0 0 28px rgba(0, 255, 178, 0.22);
}

.auto-orbit.one {
  left: 24%;
  top: 23%;
}

.auto-orbit.two {
  right: 24%;
  top: 56%;
}

.ba-visual-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-position);
  width: 2px;
  transform: translateX(-1px);
  background: linear-gradient(180deg, transparent, var(--color-neon-cyan), transparent);
  box-shadow: 0 0 24px rgba(0, 217, 255, 0.6);
}

.ba-visual-handle svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  padding: 10px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  color: #06162F;
  background: linear-gradient(90deg, var(--color-neon-green), var(--color-neon-cyan));
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.42);
}

.ba-range-label {
  display: block;
  margin: 14px 0 8px;
  color: rgba(168, 179, 207, 0.88);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
}

.ba-visual-slider input[type="range"] {
  width: 100%;
  accent-color: var(--color-neon-cyan);
}

.problem-card {
  position: relative;
  overflow: hidden;
}

.problem-card::after {
  content: attr(data-solution);
  position: absolute;
  inset: auto 12px 12px;
  padding: 12px;
  border-radius: 8px;
  color: #06162F;
  background: linear-gradient(90deg, var(--color-neon-green), var(--color-neon-cyan));
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.4;
  transform: translateY(calc(100% + 16px));
  opacity: 0;
  transition: transform 0.26s ease, opacity 0.26s ease;
}

.problem-card:hover::after,
.problem-card:focus-within::after {
  transform: translateY(0);
  opacity: 1;
}

.section-mini-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(3, 10, 31, 0.48);
  border: 1px solid rgba(0, 255, 178, 0.16);
}

.section-mini-cta div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.section-mini-cta strong {
  color: #fff;
  font-size: 1rem;
}

.section-mini-cta span {
  color: rgba(168, 179, 207, 0.9);
  font-size: 0.9rem;
}

.service-filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: -14px 0 28px;
}

.service-filter-btn {
  min-height: 42px;
  border: 1px solid rgba(93, 229, 255, 0.16);
  border-radius: 8px;
  padding: 8px 14px;
  color: rgba(248, 250, 252, 0.86);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 900;
  font-size: 0.84rem;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.service-filter-btn:hover,
.service-filter-btn.active {
  transform: translateY(-2px);
  color: #06162F;
  border-color: rgba(0, 255, 178, 0.36);
  background: linear-gradient(90deg, var(--color-neon-green), var(--color-neon-cyan));
}

.service-card-wrap {
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.service-card-wrap.is-hidden {
  display: none;
}

.service-card-tag {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  border-radius: 6px;
  color: var(--color-neon-green);
  background: rgba(0, 255, 178, 0.09);
  border: 1px solid rgba(0, 255, 178, 0.18);
  font-size: 0.7rem;
  font-weight: 900;
}

.service-card-tag.cyan {
  color: var(--color-neon-cyan);
  background: rgba(0, 217, 255, 0.09);
  border-color: rgba(0, 217, 255, 0.18);
}

.service-card-tag.blue {
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.2);
}

.service-card-tag.gold {
  color: var(--color-gold);
  background: rgba(246, 180, 75, 0.1);
  border-color: rgba(246, 180, 75, 0.2);
}

.service-feature-list {
  display: grid;
  gap: 6px;
  padding: 0;
  margin: 2px 0 0;
  list-style: none;
}

.service-feature-list li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(248, 250, 252, 0.84);
  font-size: 0.8rem;
  font-weight: 700;
}

.service-feature-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-neon-green);
  box-shadow: 0 0 10px rgba(0, 255, 178, 0.38);
}

.services-section .service-card-grid {
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  scrollbar-color: rgba(0, 217, 255, 0.35) rgba(255, 255, 255, 0.06);
}

.services-section .service-card-wrap {
  flex: 0 0 min(360px, 88vw);
  max-width: min(360px, 88vw);
  scroll-snap-align: start;
}

.services-section .service-card {
  min-height: 360px;
}

.industry-carousel {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 2px 2px 14px;
  scrollbar-color: rgba(0, 217, 255, 0.35) rgba(255, 255, 255, 0.06);
}

.industry-card {
  flex: 0 0 min(320px, 84vw);
  min-height: 220px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 22px;
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(7, 18, 44, 0.78);
  border: 1px solid rgba(93, 229, 255, 0.16);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.industry-card svg {
  width: 30px;
  height: 30px;
  color: var(--color-neon-cyan);
}

.industry-card h4 {
  color: #fff;
  margin: 0;
  font-size: 1.05rem;
}

.industry-card p {
  margin: 0;
  color: rgba(168, 179, 207, 0.88) !important;
  font-size: 0.88rem !important;
  line-height: 1.55;
}

.industry-card span {
  margin-top: auto;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 6px;
  color: var(--color-neon-green);
  background: rgba(0, 255, 178, 0.09);
  border: 1px solid rgba(0, 255, 178, 0.18);
  font-size: 0.72rem;
  font-weight: 900;
}

.industry-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 178, 0.28);
  background: rgba(7, 18, 44, 0.88);
}

.industry-view-all {
  border-color: rgba(246, 180, 75, 0.24);
}

.industry-view-all svg,
.industry-view-all span {
  color: var(--color-gold);
}

.ai-roi-live {
  background: rgba(3, 10, 31, 0.4);
  border: 1px solid rgba(0, 217, 255, 0.12);
}

.ai-roi-label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: rgba(168, 179, 207, 0.9);
  font-size: 0.78rem;
  font-weight: 800;
}

.ai-roi-label strong {
  color: #fff;
}

.ai-roi-range {
  width: 100%;
  accent-color: var(--color-neon-green);
  margin-bottom: 12px;
}

.ai-roi-output {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.ai-roi-output span {
  min-height: 62px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.065);
}

.ai-roi-output small {
  color: rgba(168, 179, 207, 0.88);
  font-size: 0.68rem;
  font-weight: 800;
}

.ai-roi-output strong {
  color: var(--color-neon-green);
  font-size: 0.96rem;
}

.ai-queue-list {
  display: grid;
  gap: 7px;
}

.ai-queue-list span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(248, 250, 252, 0.86);
  font-size: 0.72rem;
  font-weight: 800;
}

.ai-queue-list svg {
  width: 14px;
  height: 14px;
  color: var(--color-neon-green);
}

.home-faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: start;
}

.home-faq-layout .section-title {
  margin-bottom: 18px;
}

.home-faq-list {
  display: grid;
  gap: 12px;
}

.home-faq-item {
  border-radius: 8px;
  background: rgba(7, 18, 44, 0.76);
  border: 1px solid rgba(93, 229, 255, 0.14);
  overflow: hidden;
}

.home-faq-item summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 16px 18px;
  color: #fff;
  font-weight: 900;
  list-style: none;
}

.home-faq-item summary::-webkit-details-marker {
  display: none;
}

.home-faq-item summary::after {
  content: '+';
  margin-left: auto;
  color: var(--color-neon-cyan);
  font-size: 1.4rem;
  line-height: 1;
}

.home-faq-item[open] summary::after {
  content: '-';
}

.home-faq-item p {
  margin: 0;
  padding: 0 18px 18px;
  color: rgba(168, 179, 207, 0.9) !important;
  font-size: 0.92rem !important;
}

.back-to-top-btn {
  position: fixed;
  right: 22px;
  bottom: 84px;
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  background: rgba(6, 11, 46, 0.88);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
}

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

.site-sticky-whatsapp {
  z-index: 1048;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes caretBlink {
  0%, 49% { opacity: 0.75; }
  50%, 100% { opacity: 0; }
}

@keyframes trustedMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-120px); }
}

@keyframes barPulse {
  0%, 100% { filter: brightness(1); transform: scaleY(1); }
  50% { filter: brightness(1.25); transform: scaleY(1.06); }
}

.future-platform-section {
  background:
    linear-gradient(180deg, rgba(3, 10, 31, 0.34), rgba(6, 11, 46, 0.72)),
    rgba(3, 10, 31, 0.96);
  border-top: 1px solid rgba(93, 229, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  overflow: hidden;
}

.future-platform-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: end;
  margin-bottom: clamp(28px, 5vw, 48px);
}

.future-platform-head .section-title {
  margin-bottom: 18px;
}

.future-platform-head h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.future-platform-head p {
  margin: 0;
  color: rgba(168, 179, 207, 0.88) !important;
}

.future-platform-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
}

.future-orbit-panel,
.future-benchmark-panel,
.future-capability-card {
  border-radius: 8px;
  border: 1px solid rgba(93, 229, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.024)),
    rgba(7, 18, 44, 0.78);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.future-orbit-panel {
  min-height: 340px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.future-orbit-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(93, 229, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(93, 229, 255, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: radial-gradient(circle at center, #000 0%, rgba(0, 0, 0, 0.64) 48%, transparent 78%);
  mask-image: radial-gradient(circle at center, #000 0%, rgba(0, 0, 0, 0.64) 48%, transparent 78%);
  opacity: 0.8;
}

.future-core {
  width: clamp(170px, 30vw, 230px);
  aspect-ratio: 1;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 5px;
  background:
    radial-gradient(circle, rgba(0, 255, 178, 0.2), rgba(0, 217, 255, 0.11) 48%, rgba(3, 10, 31, 0.86) 75%),
    rgba(6, 11, 46, 0.96);
  border: 1.5px solid rgba(0, 255, 178, 0.34);
  box-shadow:
    0 0 70px rgba(0, 217, 255, 0.2),
    inset 0 0 35px rgba(0, 255, 178, 0.1);
}

.future-core span,
.future-panel-kicker {
  color: var(--color-neon-green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.future-core strong {
  color: #fff;
  font-size: clamp(1.28rem, 2.4vw, 1.85rem);
  line-height: 1.04;
}

.future-core small {
  color: rgba(168, 179, 207, 0.88);
  font-size: 0.78rem;
  font-weight: 700;
}

.future-node {
  position: absolute;
  z-index: 3;
  min-width: 142px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(248, 250, 252, 0.94);
  background: rgba(3, 10, 31, 0.82);
  border: 1px solid rgba(93, 229, 255, 0.18);
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.future-node svg {
  width: 18px;
  height: 18px;
  color: var(--color-neon-cyan);
}

.node-copilot {
  top: 42px;
  left: 44px;
}

.node-data {
  top: 48px;
  right: 46px;
}

.node-builder {
  bottom: 42px;
  left: 64px;
}

.node-ledger {
  right: 54px;
  bottom: 48px;
}

.future-benchmark-panel {
  padding: clamp(24px, 4vw, 34px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.future-benchmark-panel h3 {
  color: #fff;
  font-size: clamp(1.26rem, 2.3vw, 1.74rem);
  line-height: 1.2;
  margin: 12px 0 14px;
}

.future-benchmark-panel p {
  margin: 0;
  color: rgba(168, 179, 207, 0.88) !important;
}

.future-mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.future-mini-metrics span {
  min-height: 68px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(3, 10, 31, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(168, 179, 207, 0.86);
  font-size: 0.78rem;
  font-weight: 800;
}

.future-mini-metrics strong {
  color: var(--color-gold);
  font-size: 1.18rem;
  line-height: 1;
}

.future-capability-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.future-capability-card {
  min-height: 208px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.future-capability-card svg {
  width: 24px;
  height: 24px;
  color: var(--color-neon-cyan);
}

.future-capability-card h4 {
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.28;
  margin: 0;
}

.future-capability-card p {
  margin: 0;
  color: rgba(168, 179, 207, 0.84) !important;
  font-size: 0.82rem !important;
  line-height: 1.58;
}

@media (hover: hover) {
  .future-capability-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 255, 178, 0.28);
    background:
      linear-gradient(180deg, rgba(0, 255, 178, 0.07), rgba(0, 217, 255, 0.035)),
      rgba(7, 18, 44, 0.86);
  }
}

@media (max-width: 991px) {
  .demo-tour-panel {
    grid-template-columns: 1fr;
  }

  .demo-tour-video {
    min-height: 220px;
  }

  .pain-solution-compare,
  .fold-shift-strip {
    grid-template-columns: 1fr;
  }

  .pain-solution-compare > svg,
  .fold-shift-strip > svg {
    transform: rotate(90deg);
  }

  .section-mini-cta,
  .home-faq-layout {
    grid-template-columns: 1fr;
  }

  .section-mini-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .future-platform-head,
  .future-platform-showcase {
    grid-template-columns: 1fr;
  }

  .future-capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .future-orbit-panel {
    min-height: 360px;
  }

  .trust-proof-strip {
    grid-template-columns: 1fr;
  }

  .trust-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .ba-visual-stage {
    min-height: 360px;
  }

  .chaos-sheet {
    width: 132px;
    height: 92px;
  }

  .auto-dashboard-card {
    width: 86%;
  }

  .hero-proof-chips span {
    flex: 1 1 100%;
  }

  .hero-social-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .back-to-top-btn {
    bottom: 74px;
    right: 14px;
  }

  .site-search-form {
    grid-template-columns: 22px minmax(0, 1fr);
  }

  .site-search-form button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .service-filter-tabs {
    justify-content: stretch;
  }

  .service-filter-btn {
    flex: 1 1 calc(50% - 10px);
  }

  .ai-roi-output {
    grid-template-columns: 1fr;
  }

  .future-orbit-panel {
    min-height: auto;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .future-core {
    width: min(100%, 210px);
    margin-bottom: 8px;
  }

  .future-node {
    position: static;
    width: 100%;
    justify-content: flex-start;
  }

  .future-mini-metrics,
  .future-capability-grid {
    grid-template-columns: 1fr;
  }

  .future-capability-card {
    min-height: auto;
  }

  .hero-trust-note {
    font-size: 0.8rem;
  }

  .trust-proof-grid {
    grid-template-columns: 1fr;
  }
}

/* Complete responsive hardening layer */
:root {
  --aevora-safe-x: clamp(16px, 4vw, 32px);
  --aevora-section-y: clamp(56px, 8vw, 96px);
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body * {
  min-width: 0;
}

img,
picture,
video,
canvas,
iframe,
embed,
object {
  max-width: 100%;
}

img,
picture,
video,
canvas {
  height: auto;
}

img {
  object-fit: cover;
}

svg {
  max-width: 100%;
  flex-shrink: 0;
}

.container {
  width: min(calc(100% - (var(--aevora-safe-x) * 2)), 1200px);
  max-width: 1200px;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.aevora-header .nav-shell {
  width: min(calc(100% - 32px), 1280px) !important;
  max-width: 1280px !important;
}

section {
  padding-top: var(--aevora-section-y) !important;
  padding-bottom: var(--aevora-section-y) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
a,
button,
label,
span,
strong,
small {
  overflow-wrap: anywhere;
}

h1,
.hero-title,
.svc-hero h1,
.blogx-hero h1,
.contactx-hero h1 {
  font-size: clamp(2rem, 6vw, 4.2rem);
  line-height: 1.08;
}

h2,
section h2,
.svc-section-head h2,
.svc-final-cta h2,
.blogx-section-head h2,
.blogx-search-intel h2,
.blogx-newsletter h2,
.blogx-footer-grid h2,
.contactx-section-head h2,
.contactx-help h2 {
  font-size: clamp(1.55rem, 4vw, 2.8rem);
  line-height: 1.16;
}

p,
section p,
.hero-text,
.svc-hero p,
.blogx-hero p,
.contactx-hero p {
  font-size: clamp(0.92rem, 1.35vw, 1.1rem);
}

.row,
.row > *,
[class*="col-"],
.glass-card,
.service-card,
.problem-card,
.ba-card,
.pricing-card,
.svc-service-card,
.svc-problem-card,
.svc-why-card,
.blogx-article-card,
.blogx-reader,
.contactx-form-card,
.contactx-contact-panel,
.footer,
.footer * {
  min-width: 0;
}

.btn-primary-neon,
.btn-outline-neon,
.btn-contact-action,
.nav-proof-link,
.aevora-header .nav-cta,
.service-learn-link,
.svc-panel-cta,
.svc-learn-link,
.blogx-card-actions a,
.blogx-newsletter-form button,
.contactx-submit,
.newsletter-btn {
  min-height: 44px;
  max-width: 100%;
  white-space: normal;
  text-align: center;
  line-height: 1.2;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-section,
.dashboard-scene,
.db-mockup-card,
.standing-cards-container,
.svc-dashboard-shell,
.blogx-ai-orbit,
.contactx-visual {
  max-width: 100%;
}

.table-responsive,
.comparison-table-wrap,
.blogx-code-block,
.breakdown-container {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-responsive table,
.comparison-table,
.blogx-code-block pre {
  margin-bottom: 0;
}

.problems-grid,
.agents-grid,
.pricing-grid,
.svc-card-grid,
.svc-problem-grid,
.svc-why-grid,
.blogx-grid,
.blogx-category-grid,
.blogx-ai-feature-grid,
.blogx-trust-grid,
.contactx-trust-grid,
.contactx-process-grid,
.services-grid,
.solutions-grid,
.industry-grid {
  max-width: 100%;
}

.problems-grid,
.agents-grid,
.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.svc-card-grid,
.svc-problem-grid,
.svc-why-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 255px), 1fr));
}

.blogx-category-grid,
.blogx-ai-feature-grid,
.blogx-trust-grid,
.contactx-trust-grid,
.contactx-process-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
}

.footer-cta-band .row,
.footer-bottom,
.footer-bottom-links,
.footer-action-buttons,
.newsletter-form,
.social-links {
  max-width: 100%;
}

.footer-bottom-links,
.footer-action-buttons,
.social-links {
  flex-wrap: wrap;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .services-section .row > [class*="col-"],
  .pricing-section .row > [class*="col-"] {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .svc-card-grid,
  .blogx-ai-feature-grid,
  .blogx-trust-grid,
  .contactx-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .aevora-header .nav-shell {
    width: min(calc(100% - 24px), 1220px) !important;
  }

  .aevora-header .nav-link {
    padding: 0 10px !important;
    font-size: 0.78rem !important;
  }

  .aevora-header .nav-cta {
    padding: 0 14px !important;
    font-size: 0.78rem !important;
  }

  .nav-actions {
    gap: 8px;
    margin-left: 10px;
  }

  .svc-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .navbar.aevora-header {
    height: auto !important;
    min-height: 72px;
  }

  .aevora-header .nav-shell {
    width: min(calc(100% - 24px), 1200px) !important;
  }

  .premium-navbar-collapse {
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-actions {
    align-items: stretch;
  }

  .nav-proof-link,
  .aevora-header .nav-cta {
    min-width: min(100%, 180px);
  }

  .hero-section .row,
  .svc-hero-grid,
  .blogx-hero-grid,
  .contactx-hero-grid,
  .contactx-form-grid,
  .contactx-help-grid,
  .blogx-featured-grid,
  .blogx-search-intel,
  .blogx-newsletter-inner,
  .blogx-footer-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-section .row {
    row-gap: 32px;
  }

  .svc-dashboard-shell,
  .blogx-ai-orbit,
  .contactx-visual {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  :root {
    --aevora-safe-x: 16px;
    --aevora-section-y: 58px;
  }

  .container {
    width: min(calc(100% - 32px), 1200px);
  }

  .hero-section,
  .svc-hero,
  .blogx-hero,
  .contactx-hero {
    min-height: auto !important;
    padding-top: clamp(112px, 24vw, 132px) !important;
  }

  .hero-title,
  .svc-hero h1,
  .blogx-hero h1,
  .contactx-hero h1 {
    font-size: clamp(1.9rem, 8.5vw, 2.35rem) !important;
    line-height: 1.1;
  }

  .hero-text,
  .svc-hero p,
  .blogx-hero p,
  .contactx-hero p {
    line-height: 1.65;
  }

  .hero-section .d-flex,
  .svc-hero-actions,
  .blogx-hero-actions,
  .contactx-hero-actions,
  .contactx-success-actions,
  .final-cta-section .d-flex {
    flex-wrap: wrap;
  }

  .hero-section .btn-primary-neon,
  .hero-section .btn-outline-neon,
  .svc-hero-actions .btn-primary-neon,
  .svc-hero-actions .btn-outline-neon,
  .blogx-hero-actions .btn-primary-neon,
  .blogx-hero-actions .btn-outline-neon,
  .contactx-hero-actions .btn-primary-neon,
  .contactx-hero-actions .btn-outline-neon,
  .contactx-success-actions .btn-primary-neon,
  .contactx-success-actions .btn-outline-neon,
  .final-cta-section .btn-primary-neon,
  .final-cta-section .btn-outline-neon {
    width: 100%;
  }

  .dashboard-scene {
    height: auto !important;
    min-height: 0;
    padding: 18px 0 0 !important;
    overflow: hidden;
  }

  .db-mockup-card {
    width: 100% !important;
    max-width: 100% !important;
  }

  .standing-cards-container {
    width: 100% !important;
    max-width: 100% !important;
  }

  .services-section .row > [class*="col-"],
  .pricing-section .row > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .ba-card,
  .problem-card,
  .demo-cta-box,
  .big-container-card,
  .footer-cta-band,
  .blogx-reader,
  .blogx-newsletter-inner,
  .blogx-footer-grid,
  .contactx-form-card,
  .contactx-contact-panel,
  .contactx-help-grid {
    padding: clamp(20px, 5vw, 28px) !important;
  }

  .process-step-premium {
    gap: 14px;
  }

  .process-step-num {
    width: 48px;
    height: 48px;
  }

  .process-step-content {
    padding: 18px !important;
  }

  .blogx-search {
    width: 100%;
  }

  .blogx-card-actions,
  .blogx-reader-cta,
  .footer-bottom,
  .footer-bottom-links {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-bottom-links {
    gap: 10px;
  }

  .newsletter-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .newsletter-input,
  .newsletter-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --aevora-safe-x: 14px;
    --aevora-section-y: 52px;
  }

  .container {
    width: min(calc(100% - 28px), 1200px);
  }

  .aevora-header .nav-shell {
    width: min(calc(100% - 16px), 1200px) !important;
    border-radius: 14px;
  }

  .btn-primary-neon,
  .btn-outline-neon {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-badge,
  .svc-eyebrow,
  .blogx-eyebrow,
  .contactx-eyebrow {
    max-width: 100%;
    white-space: normal;
  }

  .trust-proof-strip,
  .stats-bar-premium,
  .footer-cta-band,
  .blogx-search-intel,
  .solutions-cta {
    padding: 18px !important;
  }

  .svc-dashboard-shell {
    padding: 14px;
  }

  .svc-dashboard-grid,
  .blogx-stat-strip,
  .contactx-trust-grid,
  .contactx-form-row,
  .contactx-option-grid,
  .contactx-process-grid,
  .contactx-form-badges {
    grid-template-columns: 1fr !important;
  }

  .blogx-ai-orbit {
    min-height: 320px;
  }

  .blogx-knowledge-core {
    width: 160px;
    min-height: 160px;
  }

  .contactx-pipeline-card,
  .contactx-delivery-card,
  .contactx-info-card {
    grid-template-columns: 36px minmax(0, 1fr) !important;
  }

  .footer-badges .badge-chip,
  .footer-action-buttons a,
  .contactx-whatsapp-box .btn-outline-neon {
    width: 100%;
  }

  .table-responsive table,
  .comparison-table {
    min-width: 680px;
  }
}

@media (max-width: 360px) {
  .brand-name {
    font-size: 0.76rem !important;
  }

  .brand-mark,
  .aevora-header .navbar-brand .brand-mark,
  .footer-logo-link .brand-mark {
    width: 24px !important;
    height: 24px !important;
  }

  .premium-nav-toggle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .btn-primary-neon,
  .btn-outline-neon,
  .aevora-header .nav-cta,
  .nav-proof-link {
    font-size: 0.82rem !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .hero-title,
  .svc-hero h1,
  .blogx-hero h1,
  .contactx-hero h1 {
    font-size: clamp(1.72rem, 8.8vw, 2rem) !important;
  }

  .blogx-reader,
  .blogx-newsletter-inner,
  .blogx-footer-grid,
  .contactx-form-card,
  .contactx-contact-panel,
  .contactx-help-grid,
  .svc-showcase-panel,
  .svc-final-cta-inner {
    padding: 18px !important;
  }
}

@media (min-width: 1536px) {
  .container {
    width: min(calc(100% - 64px), 1200px);
  }

  .hero-section .container,
  .svc-hero-grid,
  .blogx-hero-grid,
  .contactx-page .container {
    max-width: min(1460px, calc(100% - 64px)) !important;
  }

  .aevora-header .nav-shell {
    width: min(calc(100vw - 104px), 1600px) !important;
    max-width: min(calc(100vw - 104px), 1600px) !important;
  }
}

/* Mobile overflow containment for fixed chrome and decorative glow layers */
.navbar.aevora-header {
  left: 0 !important;
  right: 0 !important;
  width: 100vw !important;
  max-width: 100vw !important;
  overflow-x: clip;
}

.hero-section,
.svc-page,
.blogx-page,
.contactx-page,
.solutions-hero,
.footer {
  overflow-x: clip;
}

.hero-left-glow,
.hero-right-glow,
.footer-glow-1,
.footer-glow-2,
.dashboard-ambient,
.db-shine {
  max-width: 100vw;
  pointer-events: none;
}

@media (max-width: 991px) {
  .aevora-header .nav-shell {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
  }
}

@media (max-width: 540px) {
  .hero-left-glow {
    left: 0 !important;
    width: 72vw !important;
    height: 72vw !important;
  }

  .hero-right-glow {
    right: 0 !important;
    width: 76vw !important;
    height: 70vw !important;
  }

  .footer-glow-1,
  .footer-glow-2 {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .aevora-header .nav-shell {
    width: calc(100vw - 16px) !important;
    max-width: calc(100vw - 16px) !important;
  }

  .contactx-sticky-whatsapp,
  .blogx-chat-widget {
    right: 12px !important;
    bottom: 12px !important;
  }
}

@media (max-width: 360px) {
  .aevora-header .nav-shell {
    width: calc(100vw - 12px) !important;
    max-width: calc(100vw - 12px) !important;
  }
}
