/* ================= ICONOS PROFESIONALES 2026 ================= */
/* Estilo outline moderno con glow azul - visible en ambos modos */
.icon-svg-glass {
  width: 3.2em;
  aspect-ratio: 1/1;
  display: inline-block;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(10,22,40,0.95), rgba(18,48,91,0.9));
  box-shadow: 
    0 0 0 2px rgba(74,198,254,0.4),
    0 0 20px rgba(74,198,254,0.3),
    0 8px 32px -8px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(74,198,254,0.1);
  padding: 0.6em;
  border: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

/* Light mode - fondo oscuro para contraste */
/* Light mode - fondo claro profesional para contraste */
[data-theme="light"] .icon-svg-glass {
  background: linear-gradient(145deg, #f6fbff 80%, #e3f0fa 100%);
  box-shadow: 
    0 0 0 2px rgba(35,139,231,0.18),
    0 0 18px rgba(35,139,231,0.10),
    0 8px 32px -8px rgba(180,200,230,0.12);
  border: 1.5px solid #e3f0fa;
}

/* Dark mode - más glow */
[data-theme="dark"] .icon-svg-glass {
  background: linear-gradient(145deg, rgba(5,10,18,0.95), rgba(10,22,40,0.9));
  box-shadow: 
    0 0 0 2px rgba(74,198,254,0.5),
    0 0 30px rgba(74,198,254,0.35),
    0 8px 32px -8px rgba(0,0,0,0.5);
}

.icon-svg-glass:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 
    0 0 0 3px rgba(74,198,254,0.6),
    0 0 40px rgba(74,198,254,0.5),
    0 12px 40px -8px rgba(0,0,0,0.4);
}

/* El SVG dentro del contenedor */
.icon-svg-glass img {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 0 8px rgba(74,198,254,0.4));
  transition: filter 0.3s ease;
}

.icon-svg-glass:hover img {
  filter: drop-shadow(0 0 12px rgba(74,198,254,0.6));
}
/* ===============================================================
   NUWWE - Enterprise SaaS Landing Page
   Premium Design System 2026
   =============================================================== */

/* ================= CSS VARIABLES & DESIGN TOKENS ================= */
:root {
  /* --- Core Brand Colors (from logo) --- */
  --nw-dark-blue: #0A1628;
  --nw-deep-blue: #12305B;
  --nw-mid-blue: #1863A0;
  --nw-primary: #238BE7;
  --nw-accent: #4AC6FE;
  --nw-light-accent: #7DD8FF;
  --nw-glow: #4AC6FE;
  
  /* --- Light Mode --- */
  --bg-primary: #FAFCFF;
  --bg-secondary: #F0F6FF;
  --bg-tertiary: #E8F1FC;
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-card-hover: rgba(255, 255, 255, 0.95);
  --bg-glass: rgba(255, 255, 255, 0.72);
  --bg-glass-strong: rgba(255, 255, 255, 0.88);
  
  --text-primary: #0A1628;
  --text-secondary: #1863A0;
  --text-tertiary: #5A7A9A;
  --text-muted: #8BA3BB;
  
  --border-light: rgba(35, 139, 231, 0.12);
  --border-medium: rgba(35, 139, 231, 0.22);
  
  /* --- Shadows --- */
  --shadow-sm: 0 2px 8px -2px rgba(10, 22, 40, 0.08);
  --shadow-md: 0 8px 24px -8px rgba(10, 22, 40, 0.12);
  --shadow-lg: 0 16px 48px -12px rgba(10, 22, 40, 0.16);
  --shadow-xl: 0 24px 64px -16px rgba(10, 22, 40, 0.20);
  --shadow-glow: 0 0 40px -10px var(--nw-accent);
  --shadow-glow-strong: 0 0 60px -10px var(--nw-accent);
  
  /* --- Glass Effects --- */
  --glass-blur: 20px;
  --glass-blur-strong: 32px;
  
  /* --- Border Radius --- */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-2xl: 36px;
  --radius-full: 9999px;
  
  /* --- Typography --- */
  --font-display: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  
  /* --- Spacing --- */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  
  /* --- Transitions --- */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 0.15s;
  --duration-normal: 0.3s;
  --duration-slow: 0.5s;
  --duration-slower: 0.8s;
}

/* ================= DARK MODE ================= */
[data-theme="dark"] {
  --bg-primary: #050A12;
  --bg-secondary: #0A1628;
  --bg-tertiary: #0F1E32;
  --bg-card: rgba(15, 30, 50, 0.75);
  --bg-card-hover: rgba(20, 40, 65, 0.85);
  --bg-glass: rgba(10, 22, 40, 0.72);
  --bg-glass-strong: rgba(10, 22, 40, 0.88);
  
  --text-primary: #F0F6FF;
  --text-secondary: #7DD8FF;
  --text-tertiary: #8BA3BB;
  --text-muted: #5A7A9A;
  
  --border-light: rgba(74, 198, 254, 0.12);
  --border-medium: rgba(74, 198, 254, 0.25);
  
  --shadow-sm: 0 2px 8px -2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px -8px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 48px -12px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 24px 64px -16px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 50px -10px rgba(74, 198, 254, 0.4);
  --shadow-glow-strong: 0 0 80px -10px rgba(74, 198, 254, 0.5);
}

/* ================= BASE RESET ================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  transition: background var(--duration-slow) var(--ease-out-expo),
              color var(--duration-slow) var(--ease-out-expo);
}

/* Background Gradient Mesh */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(35, 139, 231, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(74, 198, 254, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 50% 80%, rgba(24, 99, 160, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
  transition: opacity var(--duration-slow) var(--ease-out-expo);
}

[data-theme="dark"] body::before {
  background: 
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(35, 139, 231, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(74, 198, 254, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 50% 80%, rgba(24, 99, 160, 0.08) 0%, transparent 50%);
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ================= TYPOGRAPHY ================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(135deg, var(--nw-primary) 0%, var(--nw-accent) 50%, var(--nw-light-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-subtle {
  background: linear-gradient(135deg, var(--nw-mid-blue) 0%, var(--nw-primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ================= LAYOUT ================= */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

@media (max-width: 768px) {
  .container { padding: 0 var(--space-md); }
}

section {
  position: relative;
  padding: var(--space-4xl) 0;
}

@media (max-width: 768px) {
  section { padding: var(--space-3xl) 0; }
}
/* ================= HEADER ================= */
.nw-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
  background: var(--bg-glass);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid var(--border-light);
  transition: all var(--duration-normal) var(--ease-out-expo);
}

.nw-header.scrolled {
  padding: var(--space-sm) 0;
  background: var(--bg-glass-strong);
  box-shadow: var(--shadow-md);
}

.nw-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

.nw-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nw-logo img {
  height: 44px;
  width: auto;
  transition: transform var(--duration-normal) var(--ease-out-back);
}

.nw-logo:hover img {
  transform: scale(1.05);
}

.nw-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nw-links a {
  position: relative;
  font-weight: 600;
  font-size: 0.925rem;
  color: var(--text-secondary);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast) var(--ease-out-expo);
}

.nw-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--nw-primary), var(--nw-accent));
  border-radius: var(--radius-full);
  transition: all var(--duration-normal) var(--ease-out-expo);
  transform: translateX(-50%);
}

.nw-links a:hover {
  color: var(--nw-primary);
}

.nw-links a:hover::after {
  width: 60%;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* Theme Toggle */
.theme-toggle {
  position: relative;
  width: 48px;
  height: 28px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out-expo);
  overflow: hidden;
}

.theme-toggle::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--nw-primary), var(--nw-accent));
  border-radius: 50%;
  transition: all var(--duration-normal) var(--ease-out-back);
  box-shadow: 0 2px 8px rgba(35, 139, 231, 0.3);
}

[data-theme="dark"] .theme-toggle::before {
  transform: translateX(20px);
  background: linear-gradient(135deg, var(--nw-accent), var(--nw-light-accent));
}

.theme-toggle:hover {
  border-color: var(--nw-primary);
  box-shadow: var(--shadow-glow);
}

/* Theme Icons */
.theme-toggle .sun-icon,
.theme-toggle .moon-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  transition: all var(--duration-normal) var(--ease-out-expo);
}

.theme-toggle .sun-icon {
  left: 6px;
  opacity: 1;
}

.theme-toggle .moon-icon {
  right: 6px;
  opacity: 0.5;
}

[data-theme="dark"] .theme-toggle .sun-icon {
  opacity: 0.5;
}

[data-theme="dark"] .theme-toggle .moon-icon {
  opacity: 1;
}

/* CTA Button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  font-weight: 700;
  font-size: 0.925rem;
  color: #fff;
  background: linear-gradient(135deg, var(--nw-primary) 0%, var(--nw-accent) 100%);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md), 0 0 20px -5px var(--nw-accent);
  transition: all var(--duration-normal) var(--ease-out-back);
  white-space: nowrap;
}

.cta-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.cta-btn:active {
  transform: translateY(0) scale(0.98);
}

.cta-btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--duration-normal) var(--ease-out-expo);
}

.cta-btn:hover svg {
  transform: translateX(4px);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: var(--radius-full);
  transition: all var(--duration-normal) var(--ease-out-expo);
}

@media (max-width: 1024px) {
  .nw-links { display: none; }
  .mobile-menu-btn { display: flex; }
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--bg-glass-strong);
  backdrop-filter: blur(var(--glass-blur-strong));
  -webkit-backdrop-filter: blur(var(--glass-blur-strong));
  padding: var(--space-4xl) var(--space-xl);
  transition: right var(--duration-slow) var(--ease-out-expo);
  z-index: 1001;
  border-left: 1px solid var(--border-light);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out-expo);
}

.mobile-nav-close:hover {
  background: var(--nw-primary);
  color: #fff;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.mobile-nav-links a {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  transition: all var(--duration-fast) var(--ease-out-expo);
}

.mobile-nav-links a:hover {
  background: var(--bg-card);
  color: var(--nw-primary);
  transform: translateX(8px);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-normal) var(--ease-out-expo);
  z-index: 1000;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}
/* ================= HERO SECTION ================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

/* Hero Background Effects */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -1;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  animation: orbFloat 20s ease-in-out infinite;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--nw-primary) 0%, transparent 70%);
  top: -20%;
  right: -10%;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--nw-accent) 0%, transparent 70%);
  bottom: -10%;
  left: -5%;
  animation-delay: -5s;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--nw-mid-blue) 0%, transparent 70%);
  top: 40%;
  left: 30%;
  animation-delay: -10s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(20px, 10px) scale(1.02); }
}

/* Hero Grid Pattern */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(var(--border-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-light) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
  opacity: 0.5;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.hero-text {
  max-width: 640px;
}

@media (max-width: 1024px) {
  .hero-text {
    max-width: 100%;
    margin: 0 auto;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) var(--space-md);
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--nw-primary);
  margin-bottom: var(--space-lg);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.2s forwards;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.4s forwards;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--text-tertiary);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.6s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.8s forwards;
}

@media (max-width: 1024px) {
  .hero-actions { justify-content: center; }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(135deg, var(--nw-primary) 0%, var(--nw-accent) 100%);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg), 0 0 30px -5px var(--nw-accent);
  transition: all var(--duration-normal) var(--ease-out-back);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-xl), var(--shadow-glow-strong);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  transition: all var(--duration-normal) var(--ease-out-expo);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--nw-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(50px);
  animation: fadeInRight 1s var(--ease-out-expo) 0.6s forwards;
}

@media (max-width: 1024px) {
  .hero-visual { display: none; }
}

.hero-logo-main {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-main img {
  width: 280px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(35, 139, 231, 0.3));
  animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Animated Rings */
.hero-ring {
  position: absolute;
  border: 2px solid var(--border-medium);
  border-radius: 50%;
  animation: ringPulse 4s ease-in-out infinite;
}

.hero-ring-1 {
  width: 320px;
  height: 320px;
  animation-delay: 0s;
}

.hero-ring-2 {
  width: 380px;
  height: 380px;
  animation-delay: -1s;
  border-style: dashed;
}

.hero-ring-3 {
  width: 440px;
  height: 440px;
  animation-delay: -2s;
}

@keyframes ringPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.02); }
}

/* Floating Icons */
.hero-float-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  background: var(--bg-glass-strong);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  animation: iconFloat 5s ease-in-out infinite;
}

.hero-float-icon:nth-child(1) { top: 10%; left: 0; animation-delay: 0s; }
.hero-float-icon:nth-child(2) { top: 30%; right: -5%; animation-delay: -1s; }
.hero-float-icon:nth-child(3) { bottom: 30%; left: -5%; animation-delay: -2s; }
.hero-float-icon:nth-child(4) { bottom: 10%; right: 10%; animation-delay: -3s; }

@keyframes iconFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  to { opacity: 1; transform: translateX(0); }
}

/* ================= SECTION STYLES ================= */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-3xl);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) var(--space-md);
  background: linear-gradient(135deg, rgba(35, 139, 231, 0.1) 0%, rgba(74, 198, 254, 0.1) 100%);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--nw-primary);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-tertiary);
  line-height: 1.7;
}

/* ================= PROBLEMS SECTION ================= */
.problems {
  background: var(--bg-secondary);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

@media (max-width: 1024px) {
  .problems-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .problems-grid { grid-template-columns: 1fr; }
}

.problem-card {
  position: relative;
  padding: var(--space-2xl);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  transition: all var(--duration-normal) var(--ease-out-expo);
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--nw-primary), var(--nw-accent));
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out-expo);
}

.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--border-medium);
}

.problem-card:hover::before {
  opacity: 1;
}

.problem-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(35, 139, 231, 0.1) 0%, rgba(74, 198, 254, 0.1) 100%);
  border-radius: var(--radius-lg);
  font-size: 2rem;
  margin-bottom: var(--space-lg);
  transition: all var(--duration-normal) var(--ease-out-expo);
}

.problem-card:hover .problem-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--nw-primary), var(--nw-accent));
}

.problem-card h3 {
  font-size: 1.375rem;
  margin-bottom: var(--space-sm);
}

.problem-card p {
  color: var(--text-tertiary);
  line-height: 1.7;
}

/* ================= SOLUTION SECTION ================= */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 1024px) {
  .solution-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .solution-grid { grid-template-columns: 1fr; }
}

.solution-card {
  position: relative;
  padding: var(--space-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: all var(--duration-normal) var(--ease-out-expo);
  overflow: hidden;
}

.solution-card.featured {
  background: linear-gradient(135deg, var(--nw-primary) 0%, var(--nw-mid-blue) 100%);
  border: none;
  color: #fff;
}

.solution-card.glass {
  background: var(--bg-glass);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

.solution-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.solution-card.featured:hover {
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.solution-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
}

/* ================= BENEFITS SECTION ================= */
.benefits {
  background: var(--bg-secondary);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

.benefit-card {
  position: relative;
  padding: var(--space-2xl);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  transition: all var(--duration-normal) var(--ease-out-expo);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--nw-primary);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--nw-primary), var(--nw-accent));
  border-radius: var(--radius-md);
  font-size: 1.75rem;
  margin-bottom: var(--space-lg);
  box-shadow: 0 8px 20px -8px var(--nw-accent);
}

.benefit-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.benefit-card p {
  color: var(--text-tertiary);
  line-height: 1.7;
}

/* ================= DIFFERENTIATORS SECTION ================= */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 1024px) {
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .diff-grid { grid-template-columns: 1fr; }
}

.diff-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--bg-glass);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: all var(--duration-normal) var(--ease-out-expo);
}

.diff-card:hover {
  background: var(--bg-card-hover);
  transform: translateX(8px);
  border-color: var(--nw-primary);
}

.diff-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.diff-card span:last-child {
  font-weight: 600;
  line-height: 1.4;
}

/* ================= FEATURES SECTION ================= */
.features {
  background: var(--bg-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 1200px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
}

.feature-card {
  position: relative;
  padding: var(--space-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  transition: all var(--duration-normal) var(--ease-out-expo);
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--nw-primary), var(--nw-accent));
  transform: scaleX(0);
  transition: transform var(--duration-normal) var(--ease-out-expo);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  display: block;
}

.feature-card h4 {
  font-size: 1.125rem;
  margin-bottom: var(--space-xs);
}

.feature-card small {
  color: var(--text-muted);
  font-size: 0.875rem;;
}

/* ================= VIDEO SECTION ================= */
.video-container {
  max-width: 800px;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  padding: var(--space-4xl) var(--space-2xl);
  background: var(--bg-glass);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border-light);
  border-radius: var(--radius-2xl);
  text-align: center;
  overflow: hidden;
}

.video-play-btn {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--nw-primary), var(--nw-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out-back);
}

.video-play-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl), var(--shadow-glow-strong);
}

.video-play-btn svg {
  width: 32px;
  height: 32px;
  fill: #fff;
  margin-left: 4px;
}

.video-wrapper h3 {
  font-size: 1.25rem;
  color: var(--text-secondary);
}

/* ================= IMPLEMENTATION SECTION ================= */
.implementation {
  background: var(--bg-secondary);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .steps-grid { grid-template-columns: 1fr; }
}

.step-card {
  position: relative;
  padding: var(--space-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: all var(--duration-normal) var(--ease-out-expo);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--nw-primary);
}

.step-number {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--nw-primary), var(--nw-accent));
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto var(--space-md);
  box-shadow: 0 8px 20px -8px var(--nw-accent);
}

.step-card h4 {
  font-size: 1rem;
  font-weight: 700;
}

/* ================= CTA SECTION ================= */
.cta-section {
  background: linear-gradient(135deg, var(--nw-primary) 0%, var(--nw-mid-blue) 50%, var(--nw-deep-blue) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(74, 198, 254, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta-section .section-title {
  color: #fff;
}

.cta-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-2xl);
}

.cta-btn-large {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-2xl);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--nw-primary);
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  transition: all var(--duration-normal) var(--ease-out-back);
}

.cta-btn-large:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
}

.cta-btn-large svg {
  width: 24px;
  height: 24px;
  transition: transform var(--duration-normal) var(--ease-out-expo);
}

.cta-btn-large:hover svg {
  transform: translateX(6px);
}

/* ================= FOOTER ================= */
.nw-footer {
  background: var(--bg-glass);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-top: 1px solid var(--border-light);
  padding: var(--space-2xl) 0;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.footer-logo img {
  height: 36px;
}

.footer-copy {
  color: var(--text-tertiary);
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: var(--space-lg);
}

.footer-links a {
  font-weight: 600;
  color: var(--text-secondary);
  transition: color var(--duration-fast) var(--ease-out-expo);
}

.footer-links a:hover {
  color: var(--nw-primary);
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

/* ================= NIA CHATBOT ================= */
.nia-chatbot {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  z-index: 999;
}

.nia-trigger {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--nw-primary), var(--nw-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transition: all var(--duration-normal) var(--ease-out-back);
  border: none;
}

.nia-trigger:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl), var(--shadow-glow-strong);
}

.nia-trigger svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.nia-trigger .close-icon {
  display: none;
}

.nia-chatbot.active .nia-trigger .chat-icon { display: none; }
.nia-chatbot.active .nia-trigger .close-icon { display: block; }

/* Chat Window */
.nia-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 400px;
  max-width: calc(100vw - 40px);
  height: 550px;
  max-height: calc(100vh - 150px);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all var(--duration-normal) var(--ease-out-back);
}

.nia-chatbot.active .nia-window {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Chat Header */
.nia-header {
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--nw-primary), var(--nw-mid-blue));
  color: #fff;
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nia-avatar {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.nia-info h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.nia-info span {
  font-size: 0.875rem;
  opacity: 0.9;
}

.nia-status {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nia-status::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

/* Chat Messages */
.nia-messages {
  flex: 1;
  padding: var(--space-lg);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.nia-message {
  max-width: 85%;
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  line-height: 1.5;
  font-size: 0.9375rem;
  animation: messageIn 0.3s var(--ease-out-expo);
}

@keyframes messageIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.nia-message.bot {
  background: var(--bg-secondary);
  color: var(--text-primary);
  align-self: flex-start;
  border-bottom-left-radius: var(--radius-xs);
}

.nia-message.user {
  background: linear-gradient(135deg, var(--nw-primary), var(--nw-accent));
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: var(--radius-xs);
}

.nia-typing {
  display: flex;
  gap: 4px;
  padding: var(--space-md);
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  width: fit-content;
}

.nia-typing span {
  width: 8px;
  height: 8px;
  background: var(--nw-primary);
  border-radius: 50%;
  animation: typingBounce 1.4s ease-in-out infinite;
}

.nia-typing span:nth-child(2) { animation-delay: 0.2s; }
.nia-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-6px); }
}

/* Chat Input */
.nia-input-area {
  padding: var(--space-md);
  border-top: 1px solid var(--border-light);
  display: flex;
  gap: var(--space-sm);
}

.nia-input {
  flex: 1;
  padding: var(--space-md);
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--text-primary);
  outline: none;
  transition: all var(--duration-fast) var(--ease-out-expo);
}

.nia-input:focus {
  border-color: var(--nw-primary);
  box-shadow: 0 0 0 3px rgba(35, 139, 231, 0.15);
}

.nia-input::placeholder {
  color: var(--text-muted);
}

.nia-send {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--nw-primary), var(--nw-accent));
  border: none;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out-expo);
}

.nia-send:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.nia-send:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.nia-send svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

/* ================= SCROLL ANIMATIONS ================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out-expo);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s var(--ease-out-expo);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s var(--ease-out-expo);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s var(--ease-out-expo);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Staggered animations */
.stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s var(--ease-out-expo);
}

.stagger.active > *:nth-child(1) { transition-delay: 0.1s; }
.stagger.active > *:nth-child(2) { transition-delay: 0.2s; }
.stagger.active > *:nth-child(3) { transition-delay: 0.3s; }
.stagger.active > *:nth-child(4) { transition-delay: 0.4s; }
.stagger.active > *:nth-child(5) { transition-delay: 0.5s; }
.stagger.active > *:nth-child(6) { transition-delay: 0.6s; }
.stagger.active > *:nth-child(7) { transition-delay: 0.7s; }
.stagger.active > *:nth-child(8) { transition-delay: 0.8s; }

.stagger.active > * {
  opacity: 1;
  transform: translateY(0);
}

/* ================= SCROLLBAR ================= */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--border-medium);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--nw-primary);
}

/* ================= SELECTION ================= */
::selection {
  background: var(--nw-primary);
  color: #fff;
}

/* ================= UTILITIES ================= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ================= GLASSMORPHISM 2.0 ICONS ================= */
.glass-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(
    135deg,
    rgba(74, 198, 254, 0.15) 0%,
    rgba(35, 139, 231, 0.08) 50%,
    rgba(125, 216, 255, 0.12) 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(74, 198, 254, 0.25);
  box-shadow: 
    0 8px 32px -8px rgba(35, 139, 231, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-out-expo);
}

.glass-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.glass-icon:hover::before {
  left: 100%;
}

.glass-icon::after {
  font-size: 22px;
  background: linear-gradient(135deg, var(--nw-primary) 0%, var(--nw-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(35, 139, 231, 0.3));
}

/* Dark mode adjustments */
[data-theme="dark"] .glass-icon {
  background: linear-gradient(
    135deg,
    rgba(74, 198, 254, 0.12) 0%,
    rgba(35, 139, 231, 0.06) 50%,
    rgba(125, 216, 255, 0.1) 100%
  );
  border-color: rgba(74, 198, 254, 0.2);
  box-shadow: 
    0 8px 32px -8px rgba(74, 198, 254, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

/* Individual Icon Designs using SVG backgrounds */
.glass-icon-rocket::after {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23238BE7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 0 0-2.91-.09z'/%3E%3Cpath d='m12 15-3-3a22 22 0 0 1 2-3.95A12.88 12.88 0 0 1 22 2c0 2.72-.78 7.5-6 11a22.35 22.35 0 0 1-4 2z'/%3E%3Cpath d='M9 12H4s.55-3.03 2-4c1.62-1.08 5 0 5 0'/%3E%3Cpath d='M12 15v5s3.03-.55 4-2c1.08-1.62 0-5 0-5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.glass-icon-building::after {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23238BE7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='2' width='16' height='20' rx='2' ry='2'/%3E%3Cpath d='M9 22v-4h6v4'/%3E%3Cpath d='M8 6h.01'/%3E%3Cpath d='M16 6h.01'/%3E%3Cpath d='M12 6h.01'/%3E%3Cpath d='M12 10h.01'/%3E%3Cpath d='M12 14h.01'/%3E%3Cpath d='M16 10h.01'/%3E%3Cpath d='M16 14h.01'/%3E%3Cpath d='M8 10h.01'/%3E%3Cpath d='M8 14h.01'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.glass-icon-chart::after {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234AC6FE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 3v18h18'/%3E%3Cpath d='m19 9-5 5-4-4-3 3'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.glass-icon-bolt::after {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237DD8FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='13 2 3 14 12 14 11 22 21 10 12 10 13 2'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.glass-icon-link::after {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23238BE7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71'/%3E%3Cpath d='M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.glass-icon-clock::after {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23238BE7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.glass-icon-lock::after {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234AC6FE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.glass-icon-database::after {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237DD8FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cellipse cx='12' cy='5' rx='9' ry='3'/%3E%3Cpath d='M21 12c0 1.66-4 3-9 3s-9-1.34-9-3'/%3E%3Cpath d='M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.glass-icon-speed::after {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23238BE7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2v4'/%3E%3Cpath d='m4.93 4.93 2.83 2.83'/%3E%3Cpath d='M2 12h4'/%3E%3Cpath d='m4.93 19.07 2.83-2.83'/%3E%3Cpath d='M12 18v4'/%3E%3Cpath d='m19.07 19.07-2.83-2.83'/%3E%3Cpath d='M22 12h-4'/%3E%3Cpath d='m19.07 4.93-2.83 2.83'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.glass-icon-trending::after {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234AC6FE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='22 7 13.5 15.5 8.5 10.5 2 17'/%3E%3Cpolyline points='16 7 22 7 22 13'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.glass-icon-automation::after {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237DD8FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='10' rx='2'/%3E%3Ccircle cx='12' cy='5' r='2'/%3E%3Cpath d='M12 7v4'/%3E%3Cline x1='8' y1='16' x2='8' y2='16'/%3E%3Cline x1='16' y1='16' x2='16' y2='16'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.glass-icon-scale::after {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23238BE7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 21H3V3'/%3E%3Cpath d='M21 9l-6-6v6h6z'/%3E%3Cpath d='M21 13v8h-8l8-8z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.glass-icon-integration::after {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234AC6FE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 6H3'/%3E%3Cpath d='M21 12H8'/%3E%3Cpath d='M21 18H8'/%3E%3Cpath d='M3 12v6'/%3E%3Ccircle cx='6' cy='18' r='2'/%3E%3Ccircle cx='17' cy='6' r='2'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.glass-icon-shield::after {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237DD8FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.glass-icon-satellite::after {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23238BE7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 7 9 3 5 7l4 4'/%3E%3Cpath d='m17 11 4 4-4 4-4-4'/%3E%3Cpath d='m8 12 4 4 6-6-4-4Z'/%3E%3Cpath d='m16 8 3-3'/%3E%3Cpath d='M9 21a6 6 0 0 0-6-6'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.glass-icon-check::after {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234AC6FE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.glass-icon-support::after {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237DD8FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 16.98h-5.99c-1.1 0-1.95.68-2.95 1.39C8.07 19.14 6.84 20 5 20c-1 0-2-1.01-2-3v-8a8 8 0 0 1 16 0v8h2'/%3E%3Cpath d='M7 9h0'/%3E%3Cpath d='M11 9h0'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.glass-icon-wave::after {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23238BE7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12c.5-3 2.5-5 5-5 3 0 4 2 6 2s3-2 6-2c2.5 0 4.5 2 5 5'/%3E%3Cpath d='M2 17c.5-3 2.5-5 5-5 3 0 4 2 6 2s3-2 6-2c2.5 0 4.5 2 5 5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.glass-icon-contract::after {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234AC6FE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpolyline points='14 2 14 8 20 8'/%3E%3Cline x1='16' y1='13' x2='8' y2='13'/%3E%3Cline x1='16' y1='17' x2='8' y2='17'/%3E%3Cpolyline points='10 9 9 9 8 9'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.glass-icon-handshake::after {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237DD8FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m11 17 2 2a1 1 0 1 0 3-3'/%3E%3Cpath d='m14 14 2.5 2.5a1 1 0 1 0 3-3l-3.88-3.88a3 3 0 0 0-4.24 0l-.88.88a1 1 0 1 1-3-3l2.81-2.81a5.79 5.79 0 0 1 7.06-.87l.47.28a2 2 0 0 0 1.42.25L21 4'/%3E%3Cpath d='m21 3 1 11h-2'/%3E%3Cpath d='M3 3 2 14l6.5 6.5a1 1 0 1 0 3-3'/%3E%3Cpath d='M3 4h8'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.glass-icon-dashboard::after {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23238BE7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='7' height='9'/%3E%3Crect x='14' y='3' width='7' height='5'/%3E%3Crect x='14' y='12' width='7' height='9'/%3E%3Crect x='3' y='16' width='7' height='5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.glass-icon-wallet::after {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234AC6FE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 12V7H5a2 2 0 0 1 0-4h14v4'/%3E%3Cpath d='M3 5v14a2 2 0 0 0 2 2h16v-5'/%3E%3Cpath d='M18 12a2 2 0 0 0 0 4h4v-4Z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.glass-icon-workflow::after {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237DD8FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='6' height='6' rx='1'/%3E%3Crect x='15' y='3' width='6' height='6' rx='1'/%3E%3Crect x='9' y='15' width='6' height='6' rx='1'/%3E%3Cpath d='M6 9v3a1 1 0 0 0 1 1h4'/%3E%3Cpath d='M18 9v3a1 1 0 0 1-1 1h-4'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.glass-icon-headset::after {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23238BE7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 18v-6a9 9 0 0 1 18 0v6'/%3E%3Cpath d='M21 19a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3zM3 19a2 2 0 0 0 2 2h1a2 2 0 0 0 2-2v-3a2 2 0 0 0-2-2H3z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.glass-icon-api::after {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234AC6FE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m8 3 4 8 5-5 5 15H2L8 3z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Special NIA Icon - Premium Glassmorphism */
.glass-icon-nia {
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    rgba(74, 198, 254, 0.25) 0%,
    rgba(35, 139, 231, 0.15) 30%,
    rgba(125, 216, 255, 0.2) 70%,
    rgba(74, 198, 254, 0.25) 100%
  );
  border-width: 2px;
  border-color: rgba(74, 198, 254, 0.4);
  box-shadow: 
    0 12px 40px -8px rgba(35, 139, 231, 0.35),
    inset 0 2px 0 rgba(255, 255, 255, 0.4),
    inset 0 -2px 0 rgba(0, 0, 0, 0.08),
    0 0 20px rgba(74, 198, 254, 0.2);
  animation: niaGlow 3s ease-in-out infinite;
}

.glass-icon-nia::after {
  content: '';
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234AC6FE' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2a4 4 0 0 1 4 4v2a4 4 0 0 1-8 0V6a4 4 0 0 1 4-4z'/%3E%3Cpath d='M12 12c-4.4 0-8 2.2-8 5v3h16v-3c0-2.8-3.6-5-8-5z'/%3E%3Ccircle cx='12' cy='6' r='1' fill='%234AC6FE'/%3E%3Cpath d='M7 3c-1.5 1-2 3-2 5'/%3E%3Cpath d='M17 3c1.5 1 2 3 2 5'/%3E%3Cpath d='M9 22v-2'/%3E%3Cpath d='M15 22v-2'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.glass-icon-nia-small {
  width: 32px;
  height: 32px;
  background: linear-gradient(
    135deg,
    rgba(74, 198, 254, 0.3) 0%,
    rgba(35, 139, 231, 0.2) 50%,
    rgba(125, 216, 255, 0.25) 100%
  );
  border-radius: var(--radius-sm);
}

.glass-icon-nia-small::after {
  content: '';
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234AC6FE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2a4 4 0 0 1 4 4v2a4 4 0 0 1-8 0V6a4 4 0 0 1 4-4z'/%3E%3Cpath d='M12 12c-4.4 0-8 2.2-8 5v3h16v-3c0-2.8-3.6-5-8-5z'/%3E%3Ccircle cx='12' cy='6' r='1' fill='%234AC6FE'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@keyframes niaGlow {
  0%, 100% {
    box-shadow: 
      0 12px 40px -8px rgba(35, 139, 231, 0.35),
      inset 0 2px 0 rgba(255, 255, 255, 0.4),
      inset 0 -2px 0 rgba(0, 0, 0, 0.08),
      0 0 20px rgba(74, 198, 254, 0.2);
  }
  50% {
    box-shadow: 
      0 12px 40px -8px rgba(35, 139, 231, 0.5),
      inset 0 2px 0 rgba(255, 255, 255, 0.5),
      inset 0 -2px 0 rgba(0, 0, 0, 0.08),
      0 0 35px rgba(74, 198, 254, 0.4);
  }
}

/* ================= NIA PROMO SECTION ================= */
.nia-promo {
  padding: var(--space-3xl) 0;
  background: transparent;
}

.nia-promo-card {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  padding: var(--space-xl) var(--space-2xl);
  background: linear-gradient(
    135deg,
    rgba(74, 198, 254, 0.08) 0%,
    rgba(35, 139, 231, 0.04) 50%,
    rgba(125, 216, 255, 0.06) 100%
  );
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(74, 198, 254, 0.2);
  border-radius: var(--radius-xl);
  box-shadow: 
    0 16px 48px -12px rgba(35, 139, 231, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .nia-promo-card {
  background: linear-gradient(
    135deg,
    rgba(74, 198, 254, 0.06) 0%,
    rgba(35, 139, 231, 0.03) 50%,
    rgba(125, 216, 255, 0.05) 100%
  );
  border-color: rgba(74, 198, 254, 0.15);
}

.nia-promo-icon {
  flex-shrink: 0;
  font-size: 3rem;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(74, 198, 254, 0.15), rgba(35, 139, 231, 0.1));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(74, 198, 254, 0.25);
}

.nia-promo-content {
  flex: 1;
}

.nia-promo-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.nia-promo-content p {
  font-size: 0.95rem;
  color: var(--text-tertiary);
}

.nia-promo-content strong {
  color: var(--nw-accent);
  font-weight: 700;
}

.nia-promo-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-weight: 700;
  font-size: 0.925rem;
  color: #fff;
  background: linear-gradient(135deg, var(--nw-primary) 0%, var(--nw-accent) 100%);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md), 0 0 20px -5px var(--nw-accent);
  transition: all var(--duration-normal) var(--ease-out-back);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.nia-promo-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.nia-promo-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

@media (max-width: 768px) {
  .nia-promo-card {
    flex-direction: column;
    text-align: center;
    padding: var(--space-xl);
  }
  
  .nia-promo-content {
    text-align: center;
  }
}

/* ================= CTA TOOLTIP & INFO BADGE ================= */
.cta-tooltip-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.cta-info-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-tertiary);
  background: var(--bg-glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
}

/* Tooltip for buttons */
[data-tooltip] {
  position: relative;
}

[data-tooltip]::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  padding: var(--space-sm) var(--space-md);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-primary);
  background: var(--bg-glass-strong);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-normal) var(--ease-out-expo);
  z-index: 100;
  box-shadow: var(--shadow-md);
}

[data-tooltip]::after {
  content: '';
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--bg-glass-strong);
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-normal) var(--ease-out-expo);
  z-index: 100;
}

[data-tooltip]:hover::before,
[data-tooltip]:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

[data-tooltip]:hover::after {
  transform: translateX(-50%);
}