/* ═══════════════════════════════════════════════════════════════
   361 AI Business OS — Premium Website2
   Design: Dark luxury tech, glassmorphic depth, 3D animations
   ═══════════════════════════════════════════════════════════════ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --bg-primary: #050810;
  --bg-secondary: #0a0f1a;
  --bg-surface: rgba(255,255,255,0.02);
  --bg-surface-hover: rgba(255,255,255,0.04);
  --accent-blue: #0068f9;
  --accent-cyan: #1dd2e9;
  --accent-green: #00e68a;
  --accent-purple: #8b5cf6;
  --accent-orange: #f59e0b;
  --accent-pink: #ec4899;
  
  /* Text */
  --text-primary: #e8edf4;
  --text-secondary: rgba(232,237,244,0.7);
  --text-muted: rgba(232,237,244,0.4);
  
  /* Gradients */
  --gradient-brand: linear-gradient(135deg, #0068f9, #1dd2e9);
  --gradient-warm: linear-gradient(135deg, #f59e0b, #ec4899);
  --gradient-cool: linear-gradient(135deg, #8b5cf6, #06b6d4);
  --gradient-surface: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 100%);
  
  /* Borders */
  --border-subtle: rgba(255,255,255,0.06);
  --border-accent: rgba(0,104,249,0.3);
  --border-glow: rgba(0,104,249,0.4);
  
  /* Effects */
  --glow-blue: 0 0 40px rgba(0,104,249,0.15);
  --glow-cyan: 0 0 40px rgba(29,210,233,0.10);
  --glow-purple: 0 0 40px rgba(139,92,246,0.15);
  --glass-bg: rgba(10,15,26,0.8);
  --glass-border: rgba(255,255,255,0.08);
  
  /* 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;
  
  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  
  /* Typography */
  --font-display: 'IBM Plex Sans', system-ui, sans-serif;
  --font-heading: 'IBM Plex Sans', system-ui, sans-serif;
  --font-body: 'IBM Plex Sans', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  
  /* Transitions */
  --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --transition-base: all 0.3s var(--ease-out);
  --transition-slow: all 0.6s var(--ease-out);
  
  /* Layout */
  --container-max: 1200px;
  --nav-height: 72px;
}

/* Base */
html {
  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;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  -webkit-overflow-scrolling: touch;
}

a {
  color: inherit;
  text-decoration: none;
}

img, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(40px, 6vw, 72px); }
h2 { font-size: clamp(32px, 4vw, 48px); }
h3 { font-size: clamp(24px, 3vw, 32px); }
h4 { font-size: clamp(20px, 2vw, 24px); }

p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Gradient Text */
.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-warm {
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-cool {
  background: var(--gradient-cool);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section Label */
.section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: var(--space-md);
  display: block;
}

/* Section Title */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: var(--space-lg);
}

/* Section Description */
.section-desc {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,104,249,0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.15);
}

.btn-secondary:hover {
  border-color: var(--accent-blue);
  background: rgba(0,104,249,0.08);
  transform: translateY(-2px);
}

.btn-glow {
  box-shadow: 0 0 20px rgba(0,104,249,0.3);
}

.btn-glow:hover {
  box-shadow: 0 0 40px rgba(0,104,249,0.5);
}

/* Cards */
.card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: var(--transition-base);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.card:hover {
  border-color: rgba(0,0,0,0.15);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* Card Text - Beyaz background için koyu renkler */
.card h1, .card h2, .card h3, .card h4, .card h5, .card h6 {
  color: #1a1a2e;
}

.card p, .card span, .card li {
  color: #4a5568;
}

.card-primary {
  background: linear-gradient(180deg, #ffffff 0%, #f0f4ff 100%);
  border: 2px solid rgba(0,104,249,0.25);
  box-shadow: 0 4px 20px rgba(0,104,249,0.15);
}

.card-glow {
  box-shadow: var(--glow-blue);
  border-color: var(--border-glow);
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-md);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  border-radius: var(--radius-full);
  background: rgba(0,104,249,0.1);
  border: 1px solid rgba(0,104,249,0.2);
  color: var(--accent-cyan);
}

.badge-success {
  background: rgba(0,230,138,0.1);
  border-color: rgba(0,230,138,0.2);
  color: var(--accent-green);
}

.badge-warning {
  background: rgba(245,158,11,0.1);
  border-color: rgba(245,158,11,0.2);
  color: var(--accent-orange);
}

/* Input */
.input {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-primary);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.input:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(0,104,249,0.1);
}

.input::placeholder {
  color: var(--text-muted);
}

/* Select */
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23e8edf4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
  padding-right: 48px;
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: var(--transition-base);
}

.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5,8,16,0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: var(--transition-base);
  z-index: -1;
}

.nav.scrolled::before {
  background: rgba(5,8,16,0.9);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border-subtle);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  height: 32px;
  width: auto;
}

.nav-links {
display: flex;
    align-items: center;
    gap: var(--space-xl);
    list-style: none;
    flex: 1;
    justify-content: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-brand);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  font-size: 14px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* Language Dropdown — Fixed */
.lang-dropdown {
  position: relative;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition-base);
}

.lang-toggle:hover {
  border-color: rgba(255,255,255,0.15);
  color: var(--text-primary);
}

.lang-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 120px;
  background: #131c33;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 4px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  z-index: 100;
}

.lang-dropdown:hover .lang-dropdown-menu,
.lang-dropdown.open .lang-dropdown-menu {
  display: block;
}

.lang-dropdown-item {
  padding: 8px 12px;
  font-size: 13px;
  color: var(--text-secondary);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-dropdown-item:hover {
  background: rgba(0,104,249,0.1);
  color: var(--text-primary);
}

.lang-dropdown-item.active {
  color: var(--accent-cyan);
  font-weight: 600;
}

/* Theme Toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: var(--transition-base);
  color: var(--text-secondary);
}

.theme-toggle:hover {
  border-color: rgba(255,255,255,0.15);
  color: var(--text-primary);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* Mobile Menu */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-base);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5,8,16,0.99);
  backdrop-filter: blur(24px);
  z-index: 999;
  padding: var(--space-lg) var(--space-md);
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid var(--border-subtle);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 0 var(--space-md);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.2s ease;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--accent-cyan);
  background: rgba(255,255,255,0.03);
}

.mobile-menu .btn {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-xl);
  width: 100%;
  justify-content: center;
  min-height: 52px;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: var(--space-lg) 0;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.02);
}

.table-responsive table {
  min-width: 500px;
}

@media (max-width: 600px) {
  .table-responsive table {
    font-size: 13px;
  }
}

/* ─── GLOBAL RESPONSIVE GRID ─── */
.grid-res {
  display: grid;
  grid-template-columns: repeat(var(--grid-cols, 4), 1fr);
  gap: var(--grid-gap, var(--space-lg));
}

@media (max-width: 1100px) {
  .grid-res {
    grid-template-columns: repeat(min(var(--grid-cols, 4), 3), 1fr);
  }
}

@media (max-width: 992px) {
  .grid-res {
    grid-template-columns: repeat(min(var(--grid-cols, 4), 2), 1fr);
  }
}

@media (max-width: 576px) {
  .grid-res {
    grid-template-columns: 1fr !important;
    gap: var(--space-md);
  }
}

@media (max-width: 992px) {
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: none; }
  .mobile-menu.open { display: flex; }
  
  section {
    padding: var(--space-3xl) 0;
  }
  
  .hero {
    padding: calc(var(--nav-height) + var(--space-2xl)) var(--space-md) var(--space-2xl);
  }
  
  .container {
    padding: 0 var(--space-md);
  }
  
  .btn {
    padding: 12px 20px;
    font-size: 15px;
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  
  .btn:active {
    transform: scale(0.97);
    opacity: 0.9;
  }
  
  .input, .select, textarea {
    min-height: 48px;
    padding: 14px 16px;
    font-size: 16px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════════════ */
section {
  padding: var(--space-4xl) 0;
  position: relative;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + var(--space-3xl)) var(--space-lg) var(--space-3xl);
  position: relative;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  background: rgba(0,104,249,0.1);
  border: 1px solid rgba(0,104,249,0.25);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-cyan);
  margin-bottom: var(--space-xl);
}

.hero-badge .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
  margin-bottom: var(--space-lg);
}

.hero-sub {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Stats Section */
.stats {
  padding: var(--space-3xl) 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-lg);
}

.stat-item {
  text-align: center;
  padding: var(--space-lg);
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(transparent, var(--border-accent), transparent);
}

.stat-number {
  font-family: var(--font-mono);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: var(--space-xs);
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .stat-item:nth-child(3)::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item::after {
    display: none !important;
  }
  .stat-number {
    font-size: clamp(24px, 6vw, 32px);
  }
  .stat-label {
    font-size: 10px;
  }
}

/* Platform Section - Canvas Backgrounds */
.platform-section {
  position: relative;
  overflow: hidden;
}

.platform-section canvas.bg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

.bg-canvas-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .platform-section canvas.bg-canvas,
  .hero-canvas,
  section canvas {
    display: none !important;
  }
}

.platform-section .container {
  position: relative;
  z-index: 1;
}

/* Section Category Background Colors */
.section-ai {
  background: linear-gradient(180deg, #050810 0%, #0a1428 100%);
}

.section-integration {
  background: linear-gradient(180deg, #041a10 0%, #082820 100%);
}

.section-channels {
  background: linear-gradient(180deg, #1a0a00 0%, #2a1800 100%);
}

.section-security {
  background: linear-gradient(180deg, #0a0514 0%, #180a28 100%);
}

/* How It Works */
.how-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 8px;
  min-width: 40px;
}

.step-connector svg {
  width: 40px;
  height: 20px;
}

.step-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-xl);
  position: relative;
}

.step-number {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-cyan);
  letter-spacing: 2px;
  margin-bottom: var(--space-lg);
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,104,249,0.1);
  border: 1px solid rgba(0,104,249,0.2);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
}

.step-card:hover .step-icon {
  background: rgba(0,104,249,0.15);
  border-color: var(--accent-blue);
  transform: scale(1.05);
}

.step-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--accent-cyan);
  stroke-width: 1.5;
  fill: none;
}

.step-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.step-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-md);
}

.step-connector svg {
  width: 60px;
  height: 24px;
}

.step-connector-line {
  stroke: var(--accent-blue);
  stroke-width: 2;
  stroke-dasharray: 8 4;
  animation: dashMove 1s linear infinite;
}

@keyframes dashMove {
  to { stroke-dashoffset: -24; }
}

@media (max-width: 992px) {
  .how-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    max-width: 500px;
  }
  .step-connector {
    transform: rotate(90deg);
    padding: var(--space-md) 0;
    min-width: 100%;
  }
  .step-connector svg {
    width: 60px;
  }
}

/* Solutions Grid */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.solution-card {
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.solution-card:hover::before {
  transform: scaleX(1);
}

.solution-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,0,0,0.15);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* Solution Card Text - Beyaz background için */
.solution-card h3 {
  color: #1a1a2e;
}

.solution-card p {
  color: #4a5568;
}

.solution-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
}

.solution-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
  fill: none;
}

.solution-icon.blue svg { stroke: #0068f9; }
.solution-icon.green svg { stroke: #00e68a; }
.solution-icon.cyan svg { stroke: #1dd2e9; }

.solution-icon.orange svg { stroke: #ff6d00; }

.solution-icon.purple svg { stroke: #7c4dff; }

.solution-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: #1a1a2e;
}

.solution-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.solution-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-cyan);
  transition: gap 0.3s ease;
}

.solution-link:hover {
  gap: var(--space-sm);
}

.solution-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

@media (max-width: 992px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }
}

/* Why Section */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.why-card {
  padding: var(--space-xl);
}

.why-card.primary {
  background: linear-gradient(180deg, #ffffff 0%, #f0f4ff 100%);
  border: 2px solid rgba(0,104,249,0.25);
  box-shadow: 0 4px 20px rgba(0,104,249,0.15);
}

.why-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
}

.why-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--accent-cyan);
  stroke-width: 1.5;
  fill: none;
}

.why-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.why-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* Vision Card */
.vision-card {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl);
  text-align: center;
  border-radius: var(--radius-xl);
  background: 
    linear-gradient(var(--bg-primary), var(--bg-primary)) padding-box,
    var(--gradient-brand) border-box;
  border: 2px solid transparent;
  box-shadow: 0 0 80px rgba(0,104,249,0.1);
  position: relative;
  overflow: hidden;
}

.vision-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,104,249,0.08), transparent 70%);
  pointer-events: none;
}

.vision-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.25);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--accent-orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-lg);
}

.vision h3 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: var(--space-md);
}

.vision p {
  font-size: 17px;
  margin-bottom: var(--space-xl);
}

/* CTA Band */
.cta-band {
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,104,249,0.1) 0%, rgba(29,210,233,0.05) 100%);
  border-top: 1px solid rgba(0,104,249,0.15);
  border-bottom: 1px solid rgba(0,104,249,0.15);
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: var(--space-md);
}

.cta-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
}

/* ═══ PREMIUM FOOTER ═══ */
.footer-premium {
  position: relative;
  background: #070c18;
  padding: 0;
  font-family: 'IBM Plex Sans', sans-serif;
}

.footer-gradient-line {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #0068f9 30%, #1dd2e9 70%, transparent 100%);
}

.footer-premium .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 0;
}

/* Brand Section */
.footer-brand-section {
  margin-bottom: 48px;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo-link img {
  width: 40px;
  height: 40px;
}

.footer-brand-name {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.footer-brand-tagline {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(232,237,244,0.5);
  margin: 0;
  max-width: 280px;
}

/* Links Grid — 5 columns */
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0 0 20px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(232,237,244,0.55);
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.2s ease;
  line-height: 1.5;
}

.footer-col a:hover {
  color: #ffffff;
}

/* Contact column specifics */
.footer-contact .footer-address {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 4px;
}

.footer-contact .footer-phone {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.3px;
}

.footer-contact .footer-email {
  font-size: 13px;
}

/* ISO Certifications Row */
.footer-iso-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-iso-row img {
  width: 64px;
  height: 64px;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.footer-iso-row img:hover {
  opacity: 1;
}

/* Bottom Bar */
.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.footer-copyright {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: rgba(232,237,244,0.35);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(232,237,244,0.4);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.footer-social a:hover {
  color: #ffffff;
  border-color: rgba(0,104,249,0.4);
  background: rgba(0,104,249,0.08);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

/* Footer Responsive */
@media (max-width: 992px) {
  .footer-links-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .footer-iso-row {
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-iso-row img {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 480px) {
  .footer-premium .container {
    padding: 40px 16px 0;
  }
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-bottom-bar {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .footer-iso-row img {
    width: 48px;
    height: 48px;
  }
}

/* KVKK Form Checkbox */
.form-kvkk {
  margin: 16px 0;
}
.kvkk-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(232,237,244,0.7);
  cursor: pointer;
  line-height: 1.5;
}
.kvkk-label input[type="checkbox"] {
  margin-top: 3px;
  accent-color: #0068f9;
  min-width: 16px;
  min-height: 16px;
}
.kvkk-label a {
  color: #1dd2e9;
  text-decoration: underline;
}
.kvkk-label a:hover {
  color: #0068f9;
}

/* ═══════════════════════════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════════════════════════ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-md); }
.mt-2 { margin-top: var(--space-xl); }
.mt-3 { margin-top: var(--space-2xl); }
.mt-4 { margin-top: var(--space-3xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-md); }
.mb-2 { margin-bottom: var(--space-xl); }
.mb-3 { margin-bottom: var(--space-2xl); }
.mb-4 { margin-bottom: var(--space-3xl); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: var(--space-sm); }
.gap-2 { gap: var(--space-md); }
.gap-3 { gap: var(--space-lg); }
.gap-4 { gap: var(--space-xl); }

.hidden { display: none; }
.visible { visibility: visible; }

/* Focus States */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 4px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ═══════════════════════════════════════════════════════════════
   INFOGRAPHIC VISUAL DESIGNS - SmartArt Style
   Rich, diverse infographic patterns like PowerPoint SmartArt
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   1. HORIZONTAL PROCESS - Yatay Süreç (Temiz)
   ═══════════════════════════════════════════════════════════════ */
.horizontal-process {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 220px;
  padding: 24px 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.process-step:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 50px rgba(0, 104, 249, 0.2);
  border-color: rgba(0, 104, 249, 0.3);
}

.process-step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0068f9, #1dd2e9);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 104, 249, 0.35);
}

.process-step-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 104, 249, 0.1);
  margin-bottom: 16px;
}

.process-step-icon svg {
  width: 28px;
  height: 28px;
  stroke: #0068f9;
  stroke-width: 1.5;
  fill: none;
}

.process-step h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13px;
  color: #4a5568;
  line-height: 1.5;
}

.process-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
}

.process-connector svg {
  width: 32px;
  height: 32px;
  stroke: #1dd2e9;
  stroke-width: 2;
  fill: none;
}

/* ═══════════════════════════════════════════════════════════════
   2. VERTICAL LIST - Dikey Liste (Temiz)
   ═══════════════════════════════════════════════════════════════ */
.vertical-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.list-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.list-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #0068f9;
  border-radius: 4px 0 0 4px;
}

.list-item:nth-child(2)::before { background: #1dd2e9; }
.list-item:nth-child(3)::before { background: #00e68a; }
.list-item:nth-child(4)::before { background: #7c4dff; }
.list-item:nth-child(5)::before { background: #ff6d00; }
.list-item:nth-child(6)::before { background: #00bcd4; }

.list-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 30px rgba(0, 104, 249, 0.12);
  border-color: rgba(0, 104, 249, 0.15);
}

.list-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 104, 249, 0.1);
  flex-shrink: 0;
}

.list-item:nth-child(2) .list-icon { background: rgba(29, 210, 233, 0.1); }
.list-item:nth-child(3) .list-icon { background: rgba(0, 230, 138, 0.1); }
.list-item:nth-child(4) .list-icon { background: rgba(124, 77, 255, 0.1); }
.list-item:nth-child(5) .list-icon { background: rgba(255, 109, 0, 0.1); }
.list-item:nth-child(6) .list-icon { background: rgba(0, 188, 212, 0.1); }

.list-icon svg {
  width: 24px;
  height: 24px;
  stroke: #0068f9;
  stroke-width: 1.5;
  fill: none;
}

.list-item:nth-child(2) .list-icon svg { stroke: #1dd2e9; }
.list-item:nth-child(3) .list-icon svg { stroke: #00e68a; }
.list-item:nth-child(4) .list-icon svg { stroke: #7c4dff; }
.list-item:nth-child(5) .list-icon svg { stroke: #ff6d00; }
.list-item:nth-child(6) .list-icon svg { stroke: #00bcd4; }

.list-content {
  flex: 1;
}

.list-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.list-content p {
  font-size: 13px;
  color: #4a5568;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════
   2. CIRCLE PROCESS - Dairesel Süreç
   ═══════════════════════════════════════════════════════════════ */
.circle-process {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.circle-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 160px;
}

.circle-icon-wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 3px solid #0068f9;
  box-shadow: 0 8px 30px rgba(0, 104, 249, 0.2);
  margin-bottom: 20px;
  position: relative;
  transition: all 0.4s ease;
}

.circle-icon-wrap::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 104, 249, 0.3);
}

.circle-step:hover .circle-icon-wrap {
  transform: scale(1.15);
  box-shadow: 0 12px 40px rgba(0, 104, 249, 0.35);
}

.circle-icon-wrap svg {
  width: 40px;
  height: 40px;
  stroke: #0068f9;
  stroke-width: 1.5;
  fill: none;
}

.circle-step h4 {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 6px;
}

.circle-step p {
  font-size: 12px;
  color: #4a5568;
  line-height: 1.4;
}

.circle-arrow {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-arrow svg {
  width: 30px;
  height: 30px;
  stroke: #1dd2e9;
  stroke-width: 2;
  fill: none;
}

/* ═══════════════════════════════════════════════════════════════
   3. PYRAMID - Piramit Yapısı
   ═══════════════════════════════════════════════════════════════ */
.pyramid-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.pyramid-level {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

.pyramid-level:nth-child(1) {
  width: 100%;
  background: linear-gradient(135deg, #0068f9, #1dd2e9);
  border-radius: 16px 16px 0 0;
  clip-path: polygon(10% 0, 90% 0, 100% 100%, 0% 100%);
}

.pyramid-level:nth-child(2) {
  width: 85%;
  background: linear-gradient(135deg, #00e68a, #00c853);
  margin-top: -30px;
}

.pyramid-level:nth-child(3) {
  width: 70%;
  background: linear-gradient(135deg, #ff6d00, #ff9100);
  margin-top: -30px;
  border-radius: 0 0 16px 16px;
}

.pyramid-level:hover {
  transform: scale(1.03);
}

.pyramid-level h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.pyramid-level p {
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   4. QUADRANT MATRIX - 4 Çeyrek Matris
   ═══════════════════════════════════════════════════════════════ */
.quadrant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.quadrant-grid::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(0, 104, 249, 0.2);
}

.quadrant-grid::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(0, 104, 249, 0.2);
}

.quadrant-item {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.quadrant-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
}

.quadrant-item:nth-child(1)::before { background: #0068f9; }
.quadrant-item:nth-child(2)::before { background: #1dd2e9; }
.quadrant-item:nth-child(3)::before { background: #00e68a; }
.quadrant-item:nth-child(4)::before { background: #ff6d00; }

.quadrant-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 104, 249, 0.15);
}

.quadrant-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.quadrant-item:nth-child(1) .quadrant-icon { background: rgba(0, 104, 249, 0.15); }
.quadrant-item:nth-child(2) .quadrant-icon { background: rgba(29, 210, 233, 0.15); }
.quadrant-item:nth-child(3) .quadrant-icon { background: rgba(0, 230, 138, 0.15); }
.quadrant-item:nth-child(4) .quadrant-icon { background: rgba(255, 109, 0, 0.15); }

.quadrant-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.5;
  fill: none;
}

.quadrant-item:nth-child(1) .quadrant-icon svg { stroke: #0068f9; }
.quadrant-item:nth-child(2) .quadrant-icon svg { stroke: #1dd2e9; }
.quadrant-item:nth-child(3) .quadrant-icon svg { stroke: #00e68a; }
.quadrant-item:nth-child(4) .quadrant-icon svg { stroke: #ff6d00; }

.quadrant-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.quadrant-item p {
  font-size: 13px;
  color: #4a5568;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════
   5. STEP PYRAMID - Basamaklı Yapı
   ═══════════════════════════════════════════════════════════════ */
.step-pyramid {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.step-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 24px 16px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.step-block:nth-child(1) {
  width: 140px;
  height: 180px;
  background: linear-gradient(180deg, #0068f9, #004dc4);
  border-radius: 12px 12px 0 0;
}

.step-block:nth-child(2) {
  width: 160px;
  height: 220px;
  background: linear-gradient(180deg, #1dd2e9, #00a8cc);
  border-radius: 12px 12px 0 0;
}

.step-block:nth-child(3) {
  width: 180px;
  height: 260px;
  background: linear-gradient(180deg, #00e68a, #00b368);
  border-radius: 12px 12px 0 0;
}

.step-block:nth-child(4) {
  width: 160px;
  height: 220px;
  background: linear-gradient(180deg, #7c4dff, #5c35cc);
  border-radius: 12px 12px 0 0;
}

.step-block:nth-child(5) {
  width: 140px;
  height: 180px;
  background: linear-gradient(180deg, #ff6d00, #cc5500);
  border-radius: 12px 12px 0 0;
}

.step-block:hover {
  transform: translateY(-10px) scale(1.05);
}

.step-block h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.step-block p {
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  margin-top: 6px;
}

/* ═══════════════════════════════════════════════════════════════
   6. FUNNEL - Huni
   ═══════════════════════════════════════════════════════════════ */
.funnel-process {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
}

.funnel-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.funnel-stage:nth-child(1) {
  width: 100%;
  background: linear-gradient(135deg, #0068f9, #1dd2e9);
  clip-path: polygon(5% 0, 95% 0, 100% 100%, 0% 100%);
}

.funnel-stage:nth-child(2) {
  width: 85%;
  background: linear-gradient(135deg, #1dd2e9, #00e68a);
  margin-top: -20px;
  clip-path: polygon(5% 0, 95% 0, 100% 100%, 0% 100%);
}

.funnel-stage:nth-child(3) {
  width: 70%;
  background: linear-gradient(135deg, #00e68a, #ff6d00);
  margin-top: -20px;
  clip-path: polygon(5% 0, 95% 0, 100% 100%, 0% 100%);
}

.funnel-stage:nth-child(4) {
  width: 55%;
  background: linear-gradient(135deg, #ff6d00, #7c4dff);
  margin-top: -20px;
  border-radius: 0 0 12px 12px;
}

.funnel-stage:hover {
  transform: scale(1.02);
}

.funnel-stage h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.funnel-stage p {
  font-size: 12px;
  color: rgba(255,255,255,0.9);
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   7. GEAR MECHANISM - Dişli Mekanizması
   ═══════════════════════════════════════════════════════════════ */
.gear-array {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}

.gear-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.gear-wheel {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s ease;
}

.gear-wheel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 8px dashed;
}

.gear-item:nth-child(1) .gear-wheel {
  background: linear-gradient(135deg, #0068f9, #1dd2e9);
}

.gear-item:nth-child(1) .gear-wheel::before {
  border-color: rgba(0, 104, 249, 0.3);
}

.gear-item:nth-child(2) .gear-wheel {
  background: linear-gradient(135deg, #00e68a, #1dd2e9);
}

.gear-item:nth-child(2) .gear-wheel::before {
  border-color: rgba(0, 230, 138, 0.3);
}

.gear-item:nth-child(3) .gear-wheel {
  background: linear-gradient(135deg, #ff6d00, #ff9100);
}

.gear-item:nth-child(3) .gear-wheel::before {
  border-color: rgba(255, 109, 0, 0.3);
}

.gear-item:nth-child(4) .gear-wheel {
  background: linear-gradient(135deg, #7c4dff, #b388ff);
}

.gear-item:nth-child(4) .gear-wheel::before {
  border-color: rgba(124, 77, 255, 0.3);
}

.gear-item:hover .gear-wheel {
  transform: rotate(15deg) scale(1.1);
}

.gear-wheel svg {
  width: 40px;
  height: 40px;
  stroke: #fff;
  stroke-width: 1.5;
  fill: none;
  z-index: 1;
}

.gear-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  margin-top: 16px;
}

.gear-item p {
  font-size: 11px;
  color: #4a5568;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   8. CLEAN LIST - Temiz Liste (Nested Cards yerine)
   ═══════════════════════════════════════════════════════════════ */
.clean-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 650px;
  margin: 0 auto;
}

.clean-item {
  display: flex;
  align-items: stretch;
  gap: 0;
  min-height: 80px;
  position: relative;
}

.clean-item-number {
  width: 36px;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.clean-item-number span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0068f9, #1dd2e9);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(0, 104, 249, 0.3);
}

.clean-item-number::after {
  content: '';
  position: absolute;
  top: 32px;
  bottom: -20px;
  width: 2px;
  background: linear-gradient(180deg, #0068f9, #1dd2e9);
}

.clean-item:last-child .clean-item-number::after {
  display: none;
}

.clean-item-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 16px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.clean-item-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(0, 104, 249, 0.12);
  border-color: rgba(0, 104, 249, 0.15);
}

.clean-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 104, 249, 0.1);
  flex-shrink: 0;
}

.clean-item-icon svg {
  width: 22px;
  height: 22px;
  stroke: #0068f9;
  stroke-width: 1.5;
  fill: none;
}

.clean-item-content h4 {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.clean-item-content p {
  font-size: 13px;
  color: #4a5568;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════════
   9. RADIAL PIE - Dairesel Pasta
   ═══════════════════════════════════════════════════════════════ */
.radial-pie {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.pie-chart {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: conic-gradient(
    #0068f9 0deg 90deg,
    #1dd2e9 90deg 180deg,
    #00e68a 180deg 270deg,
    #ff6d00 270deg 360deg
  );
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.pie-chart::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: #050810;
  border-radius: 50%;
}

.pie-legend {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pie-legend-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pie-legend-color {
  width: 16px;
  height: 16px;
  border-radius: 4px;
}

.pie-legend-item:nth-child(1) .pie-legend-color { background: #0068f9; }
.pie-legend-item:nth-child(2) .pie-legend-color { background: #1dd2e9; }
.pie-legend-item:nth-child(3) .pie-legend-color { background: #00e68a; }
.pie-legend-item:nth-child(4) .pie-legend-color { background: #ff6d00; }

.pie-legend-text h5 {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
}

.pie-legend-text p {
  font-size: 12px;
  color: #4a5568;
}

/* ═══════════════════════════════════════════════════════════════
   10. CARD STACK - Kart Yığını
   ═══════════════════════════════════════════════════════════════ */
.card-stack {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
}

.stack-card {
  width: 280px;
  padding: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 20px;
  position: absolute;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.stack-card:nth-child(1) {
  transform: translateX(-60px) rotate(-5deg);
  z-index: 1;
}

.stack-card:nth-child(2) {
  transform: translateX(0) rotate(0deg);
  z-index: 2;
}

.stack-card:nth-child(3) {
  transform: translateX(60px) rotate(5deg);
  z-index: 1;
}

.stack-card:hover {
  transform: translateX(0) rotate(0deg) scale(1.1) !important;
  z-index: 10;
  box-shadow: 0 20px 50px rgba(0, 104, 249, 0.2);
}

.stack-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.stack-card h4 {
  font-size: 17px;
  font-weight: 600;
  color: #1a1a2e;
}

.stack-card-badge {
  padding: 4px 12px;
  background: rgba(0, 104, 249, 0.1);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: #0068f9;
}

.stack-card p {
  font-size: 13px;
  color: #4a5568;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 992px) {
  .timeline-process {
    flex-direction: column;
    gap: 30px;
  }
  
  .timeline-process::before {
    display: none;
  }
  
  .circle-process {
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .circle-arrow {
    display: none;
  }
  
  .quadrant-grid {
    grid-template-columns: 1fr;
  }
  
  .step-pyramid {
    flex-wrap: wrap;
  }
  
  .step-block {
    width: 45% !important;
    height: 150px !important;
  }
  
  .radial-pie {
    flex-direction: column;
  }
  
  .card-stack {
    flex-direction: column;
    gap: 20px;
  }
  
  .stack-card {
    position: relative;
    transform: none !important;
  }
}

@media (max-width: 576px) {
  .step-block {
    width: 100% !important;
  }
  
  .gear-array {
    gap: 15px;
  }
  
  .gear-wheel {
    width: 80px;
    height: 80px;
  }
  
  .nested-card:not(:first-child) {
    margin-left: 20px;
    margin-top: -30px;
  }
}

.flow-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.flow-step::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -30px;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-cyan), transparent);
  z-index: 1;
}

.flow-step:last-child::before {
  display: none;
}

.flow-step:hover {
  transform: translateY(-8px);
  background: linear-gradient(180deg, #f0f4ff 0%, #e8f0ff 100%);
  border-color: rgba(0,104,249,0.4);
  box-shadow: 0 20px 60px rgba(0,104,249,0.2);
}

.flow-step-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0,104,249,0.15), rgba(29,210,233,0.08));
  border: 2px solid rgba(0,104,249,0.25);
  border-radius: 50%;
  margin-bottom: 24px;
  position: relative;
  transition: all 0.3s ease;
}

.flow-step:hover .flow-step-icon {
  background: linear-gradient(135deg, rgba(0,104,249,0.3), rgba(29,210,233,0.15));
  border-color: rgba(0,104,249,0.5);
  transform: scale(1.05);
}

.flow-step-icon::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px dashed rgba(0,104,249,0.2);
  border-radius: 50%;
  animation: pulse-ring 3s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.2; }
}

.flow-step-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--accent-cyan);
  stroke-width: 1.5;
  fill: none;
}

.flow-step-number {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-cyan);
  letter-spacing: 3px;
  margin-bottom: 12px;
  padding: 6px 16px;
  background: rgba(0,104,249,0.1);
  border-radius: 20px;
}

.flow-step-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1a1a2e;
}

.flow-step-desc {
  font-size: 13px;
  color: #4a5568;
  line-height: 1.6;
  max-width: 220px;
}

/* ─── HUB SPOKE RADIAL - Hub and Spoke Diagram ─── */
.hub-spoke {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 400px;
  padding: 40px;
}

.hub-center {
  position: relative;
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 60px rgba(0,104,249,0.4);
}

.hub-center svg {
  width: 48px;
  height: 48px;
  stroke: #fff;
  stroke-width: 1.5;
  fill: none;
  margin-bottom: 4px;
}

.hub-center span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 1px;
}

.spoke-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 50%;
  pointer-events: none;
}

.spoke-ring.ring-1 { width: 280px; height: 280px; }
.spoke-ring.ring-2 { width: 420px; height: 420px; }
.spoke-ring.ring-3 { width: 560px; height: 560px; }

.spoke-item {
  position: absolute;
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.spoke-item:hover {
  transform: scale(1.1);
  background: rgba(0,104,249,0.15);
  border-color: var(--accent-blue);
  box-shadow: 0 10px 40px rgba(0,104,249,0.2);
}

.spoke-item svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent-cyan);
  stroke-width: 1.5;
  fill: none;
  margin-bottom: 6px;
}

.spoke-item span {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: center;
}

/* Spoke positions - 8 items */
.spoke-item:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.spoke-item:nth-child(2) { top: 15%; right: 10%; }
.spoke-item:nth-child(3) { top: 50%; right: 0; transform: translateY(-50%); }
.spoke-item:nth-child(4) { bottom: 15%; right: 10%; }
.spoke-item:nth-child(5) { bottom: 0; left: 50%; transform: translateX(-50%); }
.spoke-item:nth-child(6) { bottom: 15%; left: 10%; }
.spoke-item:nth-child(7) { top: 50%; left: 0; transform: translateY(-50%); }
.spoke-item:nth-child(8) { top: 15%; left: 10%; }

/* ─── NETWORK GRID - Connected Nodes Grid ─── */
.network-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.network-node {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  position: relative;
  transition: all 0.3s ease;
}

.network-node::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -20px;
  width: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,230,138,0.3));
}

.network-node:first-child::before {
  display: none;
}

.network-node:hover {
  background: rgba(0,230,138,0.05);
  border-color: rgba(0,230,138,0.2);
  transform: translateX(4px);
}

.network-node-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,230,138,0.1);
  border-radius: 12px;
  flex-shrink: 0;
}

.network-node-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent-green);
  stroke-width: 1.5;
  fill: none;
}

.network-node-content h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.network-node-content p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ─── LAYER SHIELD - Concentric Layers ─── */
.layer-shield {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.layer-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  background: linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  width: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.layer-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent-purple, #7c4dff);
  border-radius: 4px 0 0 4px;
}

.layer-item:nth-child(1) { margin-left: 0; }
.layer-item:nth-child(2) { margin-left: 30px; }
.layer-item:nth-child(3) { margin-left: 60px; }
.layer-item:nth-child(4) { margin-left: 90px; }
.layer-item:nth-child(5) { margin-left: 120px; }

.layer-item:hover {
  transform: translateX(8px);
  background: linear-gradient(90deg, rgba(124,77,255,0.08), rgba(255,255,255,0.02));
  border-color: rgba(124,77,255,0.3);
}

.layer-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124,77,255,0.15);
  border-radius: 12px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-purple, #7c4dff);
  flex-shrink: 0;
}

.layer-content {
  flex: 1;
}

.layer-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.layer-content p {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ─── CONNECTED CARDS - Linked Cards ─── */
.connected-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.connected-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.connected-card::after {
  content: '';
  position: absolute;
  left: 52px;
  bottom: -16px;
  width: 2px;
  height: 16px;
  background: linear-gradient(180deg, rgba(0,104,249,0.3), transparent);
}

.connected-card:last-child::after {
  display: none;
}

.connected-card:hover {
  background: linear-gradient(180deg, #f0f4ff 0%, #e8f0ff 100%);
  border-color: rgba(0,104,249,0.4);
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(0,104,249,0.15);
}

.connected-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0,104,249,0.15), rgba(29,210,233,0.08));
  border-radius: 14px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.connected-card:hover .connected-icon {
  background: linear-gradient(135deg, rgba(0,104,249,0.3), rgba(29,210,233,0.15));
  transform: scale(1.1);
}

.connected-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-cyan);
  stroke-width: 1.5;
  fill: none;
}

.connected-content h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1a1a2e;
}

.connected-content p {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.5;
}

/* ─── RADIAL SECTOR - Circular Sector Layout ─── */
.radial-sectors {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.radial-sector {
  width: 200px;
  padding: 28px 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.radial-sector::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.radial-sector:hover {
  transform: translateY(-8px) scale(1.02);
  background: linear-gradient(180deg, #f0f4ff 0%, #e8f0ff 100%);
  border-color: rgba(0,104,249,0.4);
  box-shadow: 0 20px 60px rgba(0,104,249,0.2);
}

.radial-sector:hover::before {
  opacity: 1;
}

.radial-sector-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,104,249,0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.radial-sector:hover .radial-sector-icon {
  background: rgba(0,104,249,0.25);
  transform: scale(1.1);
}

.radial-sector-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent-cyan);
  stroke-width: 1.5;
  fill: none;
}

.radial-sector h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a1a2e;
}

.radial-sector p {
  font-size: 12px;
  color: #4a5568;
  line-height: 1.5;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 992px) {
  .flow-process {
    flex-direction: column;
    gap: 24px;
  }
  
  .flow-step::before {
    display: none;
  }
  
  .hub-spoke {
    min-height: auto;
    flex-direction: column;
  }
  
  .spoke-ring { display: none; }
  
  .spoke-item {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
  }
  
  .hub-spoke .spoke-item {
    display: inline-flex;
    margin: 8px;
  }
  
  .layer-item:nth-child(n) {
    margin-left: 0;
  }
  
  .radial-sector {
    width: 160px;
  }
}

@media (max-width: 576px) {
  .flow-step {
    padding: 24px 16px;
  }
  
  .network-node {
    flex-direction: column;
    text-align: center;
  }
  
  .network-node::before {
    display: none;
  }
  
  .radial-sector {
    width: 100%;
    max-width: 280px;
  }
}
/* ═══════════════════════════════════════════════════════════════
   361 AI Business OS — Components
   Reusable UI components for website2
   ═══════════════════════════════════════════════════════════════ */

/* ─── Form Components ─── */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.form-label.required::after {
  content: '*';
  color: var(--accent-pink);
  margin-left: 4px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 4px rgba(0,104,249,0.1);
  background: var(--bg-surface-hover);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23e8edf4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
  padding-right: 48px;
}

.form-hint {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: var(--space-xs);
}

.form-error {
  font-size: 13px;
  color: var(--accent-pink);
  margin-top: var(--space-xs);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Checkbox & Radio */
.form-check {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  cursor: pointer;
}

.form-check-input {
  width: 20px;
  height: 20px;
  accent-color: var(--accent-blue);
  cursor: pointer;
}

.form-check-label {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ─── Tabs ─── */
.tabs {
  display: flex;
  gap: var(--space-xs);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: var(--space-xl);
}

.tab-btn {
  padding: var(--space-md) var(--space-lg);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  transition: var(--transition-base);
  cursor: pointer;
}

.tab-btn:hover {
  color: var(--text-primary);
}

.tab-btn.active {
  color: var(--accent-cyan);
  border-bottom-color: var(--accent-cyan);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* ─── Accordion ─── */
.accordion {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid var(--border-subtle);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-surface);
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
}

.accordion-header:hover {
  background: var(--bg-surface-hover);
}

.accordion-header svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-secondary);
  transition: transform 0.3s ease;
}

.accordion-item.open .accordion-header svg {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-item.open .accordion-content {
  max-height: 500px;
}

.accordion-body {
  padding: var(--space-lg);
  padding-top: 0;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── Modal ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5,8,16,0.9);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transform: scale(0.95) translateY(20px);
  transition: var(--transition-base);
}

.modal-overlay.open .modal {
  transform: scale(1) translateY(0);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid var(--border-subtle);
}

.modal-title {
  font-size: 20px;
  font-weight: 600;
}

.modal-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-base);
}

.modal-close:hover {
  border-color: var(--accent-blue);
  background: rgba(0,104,249,0.1);
}

.modal-close svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-secondary);
}

.modal-body {
  padding: var(--space-xl);
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  border-top: 1px solid var(--border-subtle);
}

/* ─── Tooltip ─── */
.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip-content {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) scale(0.95);
  padding: var(--space-sm) var(--space-md);
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-secondary);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
  z-index: 100;
}

.tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--border-subtle);
}

.tooltip:hover .tooltip-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1);
}

/* ─── Progress Bar ─── */
.progress {
  width: 100%;
  height: 8px;
  background: var(--bg-surface);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--gradient-brand);
  border-radius: var(--radius-full);
  transition: width 1s ease;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-xs);
  font-size: 13px;
}

.progress-value {
  color: var(--accent-cyan);
  font-family: var(--font-mono);
}

/* ─── Skeleton Loader ─── */
.skeleton {
  background: linear-gradient(
    90deg,
    var(--bg-surface) 0%,
    rgba(255,255,255,0.05) 50%,
    var(--bg-surface) 100%
  );
  background-size: 200% 100%;
  animation: skeleton 1.5s ease-in-out infinite;
  border-radius: var(--radius-sm);
}

@keyframes skeleton {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-text {
  height: 16px;
  margin-bottom: var(--space-sm);
}

.skeleton-title {
  height: 28px;
  width: 60%;
  margin-bottom: var(--space-md);
}

.skeleton-image {
  height: 200px;
  border-radius: var(--radius-md);
}

/* ─── Breadcrumb ─── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}

.breadcrumb a {
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--accent-cyan);
}

.breadcrumb svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-muted);
}

.breadcrumb span {
  color: var(--text-primary);
}

/* ─── Pagination ─── */
.pagination {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.pagination-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-base);
}

.pagination-btn:hover {
  border-color: var(--accent-blue);
  color: var(--text-primary);
}

.pagination-btn.active {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: #fff;
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ─── Alert / Notification ─── */
.alert {
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.alert svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.alert-info {
  background: rgba(0,104,249,0.1);
  border: 1px solid rgba(0,104,249,0.2);
}
.alert-info svg { stroke: var(--accent-blue); }

.alert-success {
  background: rgba(0,230,138,0.1);
  border: 1px solid rgba(0,230,138,0.2);
}
.alert-success svg { stroke: var(--accent-green); }

.alert-warning {
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.2);
}
.alert-warning svg { stroke: var(--accent-orange); }

.alert-error {
  background: rgba(236,72,153,0.1);
  border: 1px solid rgba(236,72,153,0.2);
}
.alert-error svg { stroke: var(--accent-pink); }

.alert-title {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.alert-message {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ─── Badge Variants ─── */
.badge-blue {
  background: rgba(0,104,249,0.15);
  border-color: rgba(0,104,249,0.3);
  color: #4d9aff;
}

.badge-green {
  background: rgba(0,230,138,0.15);
  border-color: rgba(0,230,138,0.3);
  color: var(--accent-green);
}

.badge-cyan {
  background: rgba(29,210,233,0.15);
  border-color: rgba(29,210,233,0.3);
  color: var(--accent-cyan);
}

.badge-orange {
  background: rgba(245,158,11,0.15);
  border-color: rgba(245,158,11,0.3);
  color: var(--accent-orange);
}

.badge-purple {
  background: rgba(139,92,246,0.15);
  border-color: rgba(139,92,246,0.3);
  color: var(--accent-purple);
}

.badge-pink {
  background: rgba(236,72,153,0.15);
  border-color: rgba(236,72,153,0.3);
  color: var(--accent-pink);
}

/* ─── Card Components ─── */
.card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
}

.card-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.5;
  fill: none;
}

.card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.card-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

/* ─── Feature Grid (ozellikler sayfası için) ─── */
.feature-category {
  margin-bottom: 60px;
}

.category-header {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.category-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 24px;
}

.category-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
}

.category-desc {
  font-size: 14px;
  color: var(--text-secondary);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.feature-item {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: rgba(0,104,249,0.3);
  transform: translateY(-4px);
}

.feature-item .icon {
  font-size: 28px;
  margin-bottom: var(--space-md);
}

.feature-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.feature-item p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.feature-item .status-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  color: var(--accent-green);
  background: rgba(0,230,138,0.1);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
}

/* ─── Feature List ─── */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.feature-list .feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.feature-item svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent-green);
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item span {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ─── Stats Card ─── */
.stats-card {
  padding: var(--space-xl);
  text-align: center;
}

.stats-card .stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,104,249,0.1);
  border-radius: var(--radius-md);
}

.stats-card .stat-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-cyan);
}

.stats-card .stat-value {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.stats-card .stat-label {
  font-size: 14px;
  color: var(--text-muted);
}

/* ─── Timeline Component ─── */
.timeline {
  position: relative;
  padding-left: var(--space-xl);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-blue), var(--accent-cyan));
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-2xl);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-xl) + 4px);
  top: 4px;
  width: 10px;
  height: 10px;
  background: var(--accent-blue);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,104,249,0.5);
}

.timeline-date {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-cyan);
  margin-bottom: var(--space-sm);
}

.timeline-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.timeline-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── Language Selector ─── */
.lang-dropdown {
  position: relative;
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 150px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition-base);
  z-index: 100;
}

.lang-dropdown.open .lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-base);
}

.lang-dropdown-item:hover {
  background: var(--bg-surface);
  color: var(--text-primary);
}

.lang-dropdown-item.active {
  color: var(--accent-cyan);
}

.lang-dropdown-item .flag {
  font-size: 16px;
}

/* ─── Animated Counter Component ─── */
.counter {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 700;
}

.counter[data-suffix]::after {
  content: attr(data-suffix);
}

.counter[data-prefix]::before {
  content: attr(data-prefix);
}

/* ─── 3D Card Effect ─── */
.card-3d {
  transform-style: preserve-3d;
  transition: transform 0.4s ease;
}

.card-3d:hover {
  transform: perspective(1000px) rotateX(2deg) rotateY(-2deg);
}

.card-3d-content {
  transform: translateZ(20px);
}

/* ─── Glass Card ─── */
.glass-card {
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
}

/* ─── Gradient Border Card ─── */
.gradient-border {
  position: relative;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
}

.gradient-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: var(--gradient-brand);
  z-index: -1;
  opacity: 0.5;
}

/* ─── Interactive Icons ─── */
.icon-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-base);
}

.icon-btn:hover {
  border-color: var(--accent-blue);
  background: rgba(0,104,249,0.1);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-secondary);
  transition: stroke 0.2s ease;
}

.icon-btn:hover svg {
  stroke: var(--accent-cyan);
}

/* ─── Scroll to Top ─── */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-brand);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-base);
  z-index: 100;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,104,249,0.4);
}

.scroll-top svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
}

/* ─── Loading Spinner ─── */
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border-subtle);
  border-top-color: var(--accent-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.spinner-sm {
  width: 20px;
  height: 20px;
  border-width: 2px;
}

.spinner-lg {
  width: 60px;
  height: 60px;
  border-width: 4px;
}

/* ─── Dot Navigation (for hero) ─── */
.dot-nav {
  position: fixed;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  z-index: 100;
}

.dot-nav-item {
  width: 12px;
  height: 12px;
  background: var(--bg-surface);
  border: 2px solid var(--border-subtle);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-base);
}

.dot-nav-item:hover,
.dot-nav-item.active {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
}

@media (max-width: 768px) {
  .dot-nav {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════
   Social Proof Section
   ═══════════════════════════════════════════════════════════════ */
.social-proof {
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.social-proof-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(232,237,244,0.4);
  margin-bottom: 24px;
}

.social-proof-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.social-proof-logo {
  font-size: 15px;
  font-weight: 600;
  color: rgba(232,237,244,0.35);
  white-space: nowrap;
}

.social-proof-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 24px;
}

.social-proof-stat {
  text-align: center;
}

.social-proof-stat-value {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}

.social-proof-stat-label {
  font-size: 11px;
  color: rgba(232,237,244,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ═══════════════════════════════════════════════════════════════
   Product Screenshot Section
   ═══════════════════════════════════════════════════════════════ */
.screenshot-wrap {
  max-width: 960px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.screenshot-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.screenshot-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.screenshot-tab {
  padding: 8px 16px;
  background: #131c33;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  font-size: 12px;
  color: rgba(232,237,244,0.6);
}
/* ═══════════════════════════════════════════════════════════════
   361 SmartArt Components
   Premium infographic-style layouts — PowerPoint SmartArt for the web
   Dark glassmorphic theme, responsive, scroll-animated
   ═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────
   1. CHEVRON FLOW — Horizontal process with arrow-shaped steps
   Usage: "How It Works", any 3-5 step process
   ───────────────────────────────────────────────────────────── */
.chevron-flow {
  display: flex;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
  gap: 0;
  position: relative;
}

.chevron-step {
  flex: 1;
  position: relative;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 40px 40px 52px;
  margin-left: -20px;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.chevron-step:first-child {
  margin-left: 0;
  padding-left: 40px;
}

/* Chevron shape — outer (gradient border) */
.chevron-step::before {
  content: '';
  position: absolute;
  inset: 0;
  clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 50%, calc(100% - 32px) 100%, 0 100%, 32px 50%);
  background: linear-gradient(135deg, rgba(0,104,249,0.5), rgba(29,210,233,0.3));
  z-index: -2;
  transition: all 0.5s ease;
}

.chevron-step:first-child::before {
  clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 50%, calc(100% - 32px) 100%, 0 100%);
  border-radius: 16px 0 0 16px;
}

.chevron-step:last-child::before {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 32px 50%);
  border-radius: 0 16px 16px 0;
}

/* Chevron shape — inner (raised card fill) */
.chevron-step::after {
  content: '';
  position: absolute;
  inset: 2px;
  clip-path: polygon(0 0, calc(100% - 31px) 0, calc(100% - 1px) 50%, calc(100% - 31px) 100%, 0 100%, 31px 50%);
  background: linear-gradient(180deg, #111a30 0%, #0d1424 100%);
  z-index: -1;
  transition: all 0.5s ease;
}

.chevron-step:first-child::after {
  clip-path: polygon(0 0, calc(100% - 31px) 0, calc(100% - 1px) 50%, calc(100% - 31px) 100%, 0 100%);
  border-radius: 14px 0 0 14px;
}

.chevron-step:last-child::after {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 31px 50%);
  border-radius: 0 14px 14px 0;
}

/* Hover — glow effect */
.chevron-step:hover {
  z-index: 2;
}

.chevron-step:hover::before {
  background: linear-gradient(135deg, rgba(0,104,249,0.6), rgba(29,210,233,0.3));
  filter: drop-shadow(0 0 20px rgba(0,104,249,0.3));
}

/* Chevron content */
.chevron-number {
  font-family: var(--font-mono, 'IBM Plex Mono', monospace);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #0068f9, #1dd2e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  opacity: 0.7;
}

.chevron-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.chevron-icon svg {
  width: 32px;
  height: 32px;
  stroke: #1dd2e9;
  stroke-width: 1.5;
  fill: none;
}

.chevron-title {
  font-size: 22px;
  font-weight: 700;
  color: #f0f4fa;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.chevron-desc {
  font-size: 15px;
  color: rgba(232,237,244,0.75);
  line-height: 1.6;
  max-width: 260px;
}

/* Chevron responsive */
@media (max-width: 900px) {
  .chevron-flow {
    flex-direction: column;
    max-width: 480px;
    gap: 12px;
  }

  .chevron-step {
    margin-left: 0;
    min-height: auto;
    padding: 32px 36px;
    flex-direction: row;
    text-align: left;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
  }

  /* Mobile: rounded cards instead of chevrons */
  .chevron-step::before,
  .chevron-step::after {
    clip-path: none;
    border-radius: 16px;
  }

  .chevron-step:first-child::before,
  .chevron-step:first-child::after,
  .chevron-step:last-child::before,
  .chevron-step:last-child::after {
    clip-path: none;
    border-radius: 16px;
  }

  .chevron-number {
    font-size: 36px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .chevron-icon {
    display: none;
  }

  .chevron-desc {
    max-width: none;
  }
}

/* Mobile arrow connectors */
.chevron-flow-arrow {
  display: none;
}

@media (max-width: 900px) {
  .chevron-flow-arrow {
    display: flex;
    justify-content: center;
    padding: 4px 0;
    color: rgba(29,210,233,0.4);
  }

  .chevron-flow-arrow svg {
    width: 24px;
    height: 24px;
    transform: rotate(90deg);
  }
}


/* ─────────────────────────────────────────────────────────────
   2. NUMBERED CASCADE — Timeline with expanding cards
   Usage: Feature lists, "Why Us", capabilities
   ───────────────────────────────────────────────────────────── */
.numbered-cascade {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 80px;
}

/* Timeline spine */
.numbered-cascade::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, #0068f9 0%, #1dd2e9 50%, rgba(29,210,233,0.1) 100%);
}

.cascade-item {
  position: relative;
  margin-bottom: 20px;
  display: flex;
  align-items: stretch;
  gap: 0;
}

.cascade-item:last-child {
  margin-bottom: 0;
}

/* Number circle on timeline */
.cascade-number {
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0068f9, #1dd2e9);
  color: #fff;
  font-family: var(--font-mono, 'IBM Plex Mono', monospace);
  font-size: 16px;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 0 20px rgba(0,104,249,0.4), 0 0 60px rgba(0,104,249,0.1);
  transition: all 0.4s ease;
}

/* Horizontal connector line */
.cascade-number::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, #0068f9, rgba(0,104,249,0.1));
}

.cascade-item:hover .cascade-number {
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 0 30px rgba(0,104,249,0.6), 0 0 80px rgba(0,104,249,0.2);
}

/* Card */
.cascade-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  background: #131c33;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.04);
}

.cascade-card:hover {
  background: #182240;
  border-color: rgba(0,104,249,0.35);
  transform: translateX(8px);
  box-shadow: 0 8px 40px rgba(0,104,249,0.15), 0 4px 24px rgba(0,0,0,0.4);
}

.cascade-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,104,249,0.15);
  border: 1px solid rgba(0,104,249,0.15);
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.cascade-card:hover .cascade-icon {
  background: rgba(0,104,249,0.2);
  border-color: rgba(0,104,249,0.25);
}

.cascade-icon svg {
  width: 24px;
  height: 24px;
  stroke: #1dd2e9;
  stroke-width: 1.5;
  fill: none;
}

.cascade-content h4 {
  font-size: 19px;
  font-weight: 700;
  color: #f0f4fa;
  margin-bottom: 6px;
}

.cascade-content p {
  font-size: 15px;
  color: rgba(232,237,244,0.75);
  line-height: 1.6;
}

/* Color variants */
.cascade-item[data-color="green"] .cascade-number { background: linear-gradient(135deg, #00e68a, #00c853); box-shadow: 0 0 20px rgba(0,230,138,0.4); }
.cascade-item[data-color="green"] .cascade-icon { background: rgba(0,230,138,0.1); }
.cascade-item[data-color="green"] .cascade-icon svg { stroke: #00e68a; }
.cascade-item[data-color="green"] .cascade-number::after { background: linear-gradient(90deg, #00e68a, rgba(0,230,138,0.1)); }

.cascade-item[data-color="purple"] .cascade-number { background: linear-gradient(135deg, #7c4dff, #b388ff); box-shadow: 0 0 20px rgba(124,77,255,0.4); }
.cascade-item[data-color="purple"] .cascade-icon { background: rgba(124,77,255,0.1); }
.cascade-item[data-color="purple"] .cascade-icon svg { stroke: #b388ff; }
.cascade-item[data-color="purple"] .cascade-number::after { background: linear-gradient(90deg, #7c4dff, rgba(124,77,255,0.1)); }

.cascade-item[data-color="orange"] .cascade-number { background: linear-gradient(135deg, #ff6d00, #ffab40); box-shadow: 0 0 20px rgba(255,109,0,0.4); }
.cascade-item[data-color="orange"] .cascade-icon { background: rgba(255,109,0,0.1); }
.cascade-item[data-color="orange"] .cascade-icon svg { stroke: #ffab40; }
.cascade-item[data-color="orange"] .cascade-number::after { background: linear-gradient(90deg, #ff6d00, rgba(255,109,0,0.1)); }

.cascade-item[data-color="cyan"] .cascade-number { background: linear-gradient(135deg, #1dd2e9, #06b6d4); box-shadow: 0 0 20px rgba(29,210,233,0.4); }
.cascade-item[data-color="cyan"] .cascade-icon { background: rgba(29,210,233,0.1); }
.cascade-item[data-color="cyan"] .cascade-icon svg { stroke: #1dd2e9; }
.cascade-item[data-color="cyan"] .cascade-number::after { background: linear-gradient(90deg, #1dd2e9, rgba(29,210,233,0.1)); }

/* Cascade responsive */
@media (max-width: 768px) {
  .numbered-cascade {
    padding-left: 56px;
  }

  .numbered-cascade::before {
    left: 20px;
  }

  .cascade-number {
    left: -56px;
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .cascade-number::after {
    width: 20px;
  }

  .cascade-card {
    padding: 20px 24px;
    gap: 16px;
  }

  .cascade-icon {
    width: 40px;
    height: 40px;
  }

  .cascade-content h4 {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .numbered-cascade {
    padding-left: 48px;
  }

  .numbered-cascade::before {
    left: 16px;
  }

  .cascade-number {
    left: -48px;
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .cascade-number::after {
    width: 16px;
  }

  .cascade-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
}


/* ─────────────────────────────────────────────────────────────
   3. STAT BANNER — Full-width animated statistics band
   Usage: Key metrics, social proof numbers
   ───────────────────────────────────────────────────────────── */
.stat-banner {
  padding: 48px 0;
  background: linear-gradient(180deg, rgba(0,104,249,0.04) 0%, transparent 100%);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}

.stat-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,104,249,0.4), transparent);
}

.stat-banner-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.stat-banner-item {
  flex: 1;
  text-align: center;
  padding: 16px 24px;
  position: relative;
}

/* Vertical dividers */
.stat-banner-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(0,104,249,0.25), transparent);
}

.stat-banner-value {
  font-family: var(--font-mono, 'IBM Plex Mono', monospace);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #e8edf4, rgba(232,237,244,0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-banner-value .accent {
  background: linear-gradient(135deg, #0068f9, #1dd2e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-banner-label {
  font-family: var(--font-mono, 'IBM Plex Mono', monospace);
  font-size: 11px;
  font-weight: 500;
  color: rgba(232,237,244,0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media (max-width: 768px) {
  .stat-banner-grid {
    flex-wrap: wrap;
  }

  .stat-banner-item {
    flex: 0 0 33.333%;
    padding: 12px 16px;
  }

  .stat-banner-item:nth-child(3)::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .stat-banner-item {
    flex: 0 0 50%;
  }

  .stat-banner-item:nth-child(2n)::after {
    display: none;
  }

  .stat-banner-value {
    font-size: 28px;
  }
}


/* ─────────────────────────────────────────────────────────────
   4. FEATURE SHOWCASE — Large cards grid with color accents
   Usage: Solutions, sector features, capabilities
   ───────────────────────────────────────────────────────────── */
.feature-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.showcase-card {
  position: relative;
  padding: 36px 32px;
  border-radius: 20px;
  background: #131c33;
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: block;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.04);
}

/* Top accent line */
.showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--card-accent, #0068f9), transparent);
  opacity: 0.6;
  transition: opacity 0.4s ease;
}

/* Ambient glow */
.showcase-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, var(--card-glow, rgba(0,104,249,0.06)) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity 0.5s ease;
  opacity: 0;
}

.showcase-card:hover {
  background: #182240;
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px var(--card-glow, rgba(0,104,249,0.12));
}

.showcase-card:hover::before {
  opacity: 1;
}

.showcase-card:hover::after {
  opacity: 1;
}

/* Color variants */
.showcase-card.blue { --card-accent: #0068f9; --card-glow: rgba(0,104,249,0.08); }
.showcase-card.green { --card-accent: #00e68a; --card-glow: rgba(0,230,138,0.08); }
.showcase-card.orange { --card-accent: #ff6d00; --card-glow: rgba(255,109,0,0.08); }
.showcase-card.purple { --card-accent: #7c4dff; --card-glow: rgba(124,77,255,0.08); }
.showcase-card.cyan { --card-accent: #1dd2e9; --card-glow: rgba(29,210,233,0.08); }

.showcase-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: rgba(0,104,249,0.1);
  border: 1px solid rgba(0,104,249,0.12);
}

.showcase-card.green .showcase-icon { background: rgba(0,230,138,0.1); border-color: rgba(0,230,138,0.12); }
.showcase-card.orange .showcase-icon { background: rgba(255,109,0,0.1); border-color: rgba(255,109,0,0.12); }
.showcase-card.purple .showcase-icon { background: rgba(124,77,255,0.1); border-color: rgba(124,77,255,0.12); }

.showcase-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--card-accent, #1dd2e9);
  stroke-width: 1.5;
  fill: none;
}

.showcase-title {
  font-size: 24px;
  font-weight: 700;
  color: #f0f4fa;
  margin-bottom: 10px;
}

.showcase-desc {
  font-size: 15px;
  color: rgba(232,237,244,0.7);
  line-height: 1.65;
  margin-bottom: 20px;
}

.showcase-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--card-accent, #1dd2e9);
  transition: gap 0.3s ease;
}

.showcase-link:hover {
  gap: 10px;
}

.showcase-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* Feature showcase — 4 columns variant */
.feature-showcase.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {
  .feature-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .feature-showcase.cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .feature-showcase,
  .feature-showcase.cols-4 {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .showcase-card {
    padding: 28px 24px;
  }
}


/* ─────────────────────────────────────────────────────────────
   5. HUB SPOKE — Central node with radial connections
   Usage: Platform providers, ecosystem, channels
   ───────────────────────────────────────────────────────────── */
.hub-spoke {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  aspect-ratio: 1;
}

/* Central hub */
.hub-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,104,249,0.15), rgba(29,210,233,0.08));
  border: 2px solid rgba(0,104,249,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 0 60px rgba(0,104,249,0.2), 0 0 120px rgba(0,104,249,0.05);
}

.hub-center-icon {
  font-size: 36px;
  margin-bottom: 4px;
}

.hub-center-label {
  font-size: 14px;
  font-weight: 700;
  color: #e8edf4;
  text-align: center;
}

/* Spoke nodes */
.spoke-node {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.4s ease;
  backdrop-filter: blur(4px);
}

.spoke-node:hover {
  border-color: rgba(0,104,249,0.3);
  background: linear-gradient(135deg, rgba(0,104,249,0.1), rgba(29,210,233,0.05));
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(0,104,249,0.2);
}

.spoke-node-icon {
  font-size: 24px;
  margin-bottom: 4px;
}

.spoke-node-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(232,237,244,0.7);
  text-align: center;
  line-height: 1.2;
}

/* Spoke positions (8 nodes around circle) */
.spoke-node:nth-child(2)  { top: 2%;   left: 50%; transform: translateX(-50%); }
.spoke-node:nth-child(3)  { top: 12%;  right: 8%; }
.spoke-node:nth-child(4)  { top: 42%;  right: 0;  transform: translateY(-50%); }
.spoke-node:nth-child(5)  { bottom: 12%; right: 8%; }
.spoke-node:nth-child(6)  { bottom: 2%; left: 50%; transform: translateX(-50%); }
.spoke-node:nth-child(7)  { bottom: 12%; left: 8%; }
.spoke-node:nth-child(8)  { top: 42%;  left: 0;   transform: translateY(-50%); }
.spoke-node:nth-child(9)  { top: 12%;  left: 8%; }

/* Connecting lines (SVG overlay) */
.hub-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hub-lines line {
  stroke: rgba(0,104,249,0.15);
  stroke-width: 1;
  stroke-dasharray: 6 4;
}

/* Hub spoke responsive — convert to grid on mobile */
@media (max-width: 700px) {
  .hub-spoke {
    aspect-ratio: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 400px;
  }

  .hub-center {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    grid-column: 1 / -1;
    width: 100%;
    height: auto;
    border-radius: 16px;
    padding: 24px;
    flex-direction: row;
    gap: 12px;
  }

  .spoke-node {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 16px;
    padding: 20px 16px;
    inset: auto;
    transform: none;
  }

  .spoke-node:hover {
    transform: translateY(-4px);
  }

  .hub-lines {
    display: none;
  }
}


/* ─────────────────────────────────────────────────────────────
   6. COMPARISON MATRIX — Grid comparison cards
   Usage: Feature comparison, sector overview
   ───────────────────────────────────────────────────────────── */
.comparison-matrix {
  display: grid;
  grid-template-columns: repeat(var(--grid-cols, 3), 1fr);
  gap: 1px;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

@media (max-width: 992px) {
  .comparison-matrix {
    grid-template-columns: repeat(var(--grid-cols, 3), 180px);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
  }
  
  .matrix-cell {
    padding: 20px 16px;
  }
}

.matrix-cell {
  padding: 32px 28px;
  background: rgba(5,8,16,0.9);
  text-align: center;
  transition: all 0.3s ease;
}

.matrix-cell:hover {
  background: rgba(0,104,249,0.06);
}

/* Header row */
.matrix-cell.header {
  background: rgba(0,104,249,0.08);
  border-bottom: 1px solid rgba(0,104,249,0.15);
}

.matrix-cell.header h4 {
  font-size: 16px;
  font-weight: 700;
  color: #e8edf4;
  margin: 0;
}

.matrix-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.matrix-title {
  font-size: 15px;
  font-weight: 600;
  color: #e8edf4;
  margin-bottom: 6px;
}

.matrix-value {
  font-family: var(--font-mono, 'IBM Plex Mono', monospace);
  font-size: 24px;
  font-weight: 700;
  color: #1dd2e9;
  margin-bottom: 6px;
}

.matrix-desc {
  font-size: 13px;
  color: rgba(232,237,244,0.45);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .comparison-matrix {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .comparison-matrix {
    grid-template-columns: 1fr;
  }

  .matrix-cell {
    padding: 24px 20px;
  }
}


/* ─────────────────────────────────────────────────────────────
   7. SECTION HEADERS — Consistent section introductions
   ───────────────────────────────────────────────────────────── */
.sa-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.04);
}

/* Canvas animation backgrounds */
.sa-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 768px) {
  .sa-canvas { display: none; }
}

.sa-section .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.sa-header {
  text-align: center;
  margin-bottom: 72px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.sa-label {
  font-family: var(--font-mono, 'IBM Plex Mono', monospace);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(29,210,233,0.7);
  margin-bottom: 16px;
  display: block;
}

.sa-title {
  font-family: var(--font-heading, 'IBM Plex Sans', sans-serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: #e8edf4;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

/* Visual hierarchy for title lines */
.sa-title-line {
  display: block;
  white-space: nowrap;
}

.sa-title-line.secondary {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
  color: rgba(232,237,244,0.6);
  letter-spacing: 0;
  margin-bottom: 4px;
}

.sa-title-line.primary {
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.sa-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(232,237,244,0.65);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}


/* ─────────────────────────────────────────────────────────────
   8. VISION CARD — Dramatic feature teaser
   ───────────────────────────────────────────────────────────── */
.vision-teaser {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 48px;
  text-align: center;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(#0e1528, #0e1528) padding-box,
    linear-gradient(135deg, #0068f9, #1dd2e9, #7c4dff) border-box;
  border: 2px solid transparent;
  box-shadow: 0 8px 48px rgba(0,104,249,0.1), 0 4px 24px rgba(0,0,0,0.4);
}

/* Top glow */
.vision-teaser::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 10%;
  right: 10%;
  height: 80px;
  background: radial-gradient(ellipse, rgba(0,104,249,0.15), transparent 70%);
  pointer-events: none;
}

.vision-teaser-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.25);
  font-family: var(--font-mono, 'IBM Plex Mono', monospace);
  font-size: 11px;
  font-weight: 600;
  color: #f59e0b;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.vision-teaser h3 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: #e8edf4;
  line-height: 1.2;
  margin-bottom: 16px;
}

.vision-teaser p {
  font-size: 17px;
  color: rgba(232,237,244,0.7);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 28px;
}


/* ─────────────────────────────────────────────────────────────
   9. CTA BAND — Bold call-to-action section
   ───────────────────────────────────────────────────────────── */
.cta-section {
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(0,104,249,0.08), transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #e8edf4;
  margin-bottom: 12px;
}

.cta-section .cta-sub {
  font-size: 18px;
  color: rgba(232,237,244,0.65);
  margin-bottom: 32px;
}


/* ─────────────────────────────────────────────────────────────
   10. SCROLL REVEAL ANIMATIONS
   ───────────────────────────────────────────────────────────── */
.sa-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.sa-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for children */
.sa-reveal.delay-1 { transition-delay: 0.1s; }
.sa-reveal.delay-2 { transition-delay: 0.2s; }
.sa-reveal.delay-3 { transition-delay: 0.3s; }
.sa-reveal.delay-4 { transition-delay: 0.4s; }
.sa-reveal.delay-5 { transition-delay: 0.5s; }

/* Chevron entrance — slide from left */
.chevron-step.sa-reveal {
  opacity: 0;
  transform: translateX(-40px);
}

.chevron-step.sa-reveal.visible {
  opacity: 1;
  transform: translateX(0);
}

.chevron-step.sa-reveal:first-child { transition-delay: 0s; }
.chevron-step.sa-reveal:nth-child(2) { transition-delay: 0.15s; }
.chevron-step.sa-reveal:nth-child(3) { transition-delay: 0.3s; }
.chevron-step.sa-reveal:nth-child(4) { transition-delay: 0.45s; }
.chevron-step.sa-reveal:nth-child(5) { transition-delay: 0.6s; }

/* Cascade entrance — slide from right */
.cascade-item.sa-reveal {
  opacity: 0;
  transform: translateX(30px);
}

.cascade-item.sa-reveal.visible {
  opacity: 1;
  transform: translateX(0);
}

.cascade-item.sa-reveal:nth-child(1) { transition-delay: 0s; }
.cascade-item.sa-reveal:nth-child(2) { transition-delay: 0.1s; }
.cascade-item.sa-reveal:nth-child(3) { transition-delay: 0.2s; }
.cascade-item.sa-reveal:nth-child(4) { transition-delay: 0.3s; }
.cascade-item.sa-reveal:nth-child(5) { transition-delay: 0.35s; }
.cascade-item.sa-reveal:nth-child(6) { transition-delay: 0.4s; }

/* Showcase cards — scale up */
.showcase-card.sa-reveal {
  opacity: 0;
  transform: scale(0.95) translateY(20px);
}

.showcase-card.sa-reveal.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.showcase-card.sa-reveal:nth-child(1) { transition-delay: 0s; }
.showcase-card.sa-reveal:nth-child(2) { transition-delay: 0.1s; }
.showcase-card.sa-reveal:nth-child(3) { transition-delay: 0.2s; }
.showcase-card.sa-reveal:nth-child(4) { transition-delay: 0.3s; }

/* Stat banner — count up from zero */
.stat-banner-item.sa-reveal {
  opacity: 0;
  transform: translateY(20px);
}

.stat-banner-item.sa-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ─────────────────────────────────────────────────────────────
   11. GRADIENT BACKGROUNDS — Section ambient colors
   ───────────────────────────────────────────────────────────── */
.sa-bg-blue {
  background: linear-gradient(180deg, #050810 0%, #0a1428 50%, #050810 100%);
}

.sa-bg-green {
  background: linear-gradient(180deg, #050810 0%, #041a10 50%, #050810 100%);
}

.sa-bg-orange {
  background: linear-gradient(180deg, #050810 0%, #1a0a00 50%, #050810 100%);
}

.sa-bg-purple {
  background: linear-gradient(180deg, #050810 0%, #0a0514 50%, #050810 100%);
}

.sa-bg-neutral {
  background: var(--bg-primary, #050810);
}

/* Mesh gradient overlay for hero */
.sa-mesh {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,104,249,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(29,210,233,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(124,77,255,0.06) 0%, transparent 50%),
    var(--bg-primary, #050810);
}


/* ─────────────────────────────────────────────────────────────
   12. UTILITY CLASSES
   ───────────────────────────────────────────────────────────── */
.sa-gradient-text {
  background: linear-gradient(135deg, #0068f9, #1dd2e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sa-text-center { text-align: center; }
.sa-mt-4 { margin-top: 40px; }
.sa-mt-6 { margin-top: 60px; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .sa-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .chevron-step.sa-reveal,
  .cascade-item.sa-reveal,
  .showcase-card.sa-reveal,
  .stat-banner-item.sa-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ═══════════════════════════════════════════════════════════════
   NEW SMARTART COMPONENTS — Section-specific layouts
   ═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────
   13. ALTERNATING ZIGZAG — Left/right feature spotlight
   Usage: Why 361, Feature lists with descriptions
   ───────────────────────────────────────────────────────────── */
.zigzag {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.zigzag-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 32px 36px;
  background: #131c33;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.zigzag-item:nth-child(even) {
  flex-direction: row-reverse;
  text-align: right;
}

.zigzag-item:hover {
  border-color: rgba(0,104,249,0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.zigzag-visual {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,104,249,0.1);
  border: 1px solid rgba(0,104,249,0.12);
  position: relative;
}

.zigzag-visual .number {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0068f9, #1dd2e9);
  color: #fff;
  font-family: var(--font-mono, 'IBM Plex Mono', monospace);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,104,249,0.4);
}

.zigzag-visual svg {
  width: 36px;
  height: 36px;
  stroke: #1dd2e9;
  stroke-width: 1.5;
  fill: none;
}

.zigzag-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #f0f4fa;
  margin-bottom: 8px;
}

.zigzag-content p {
  font-size: 15px;
  color: rgba(232,237,244,0.75);
  line-height: 1.6;
}

/* Zigzag color variants */
.zigzag-item[data-color="green"] .zigzag-visual { background: rgba(0,230,138,0.1); border-color: rgba(0,230,138,0.12); }
.zigzag-item[data-color="green"] .zigzag-visual svg { stroke: #00e68a; }
.zigzag-item[data-color="green"] .zigzag-visual .number { background: linear-gradient(135deg, #00e68a, #00c853); }

.zigzag-item[data-color="purple"] .zigzag-visual { background: rgba(124,77,255,0.1); border-color: rgba(124,77,255,0.12); }
.zigzag-item[data-color="purple"] .zigzag-visual svg { stroke: #b388ff; }
.zigzag-item[data-color="purple"] .zigzag-visual .number { background: linear-gradient(135deg, #7c4dff, #b388ff); }

.zigzag-item[data-color="orange"] .zigzag-visual { background: rgba(255,109,0,0.1); border-color: rgba(255,109,0,0.12); }
.zigzag-item[data-color="orange"] .zigzag-visual svg { stroke: #ffab40; }
.zigzag-item[data-color="orange"] .zigzag-visual .number { background: linear-gradient(135deg, #ff6d00, #ffab40); }

.zigzag-item[data-color="cyan"] .zigzag-visual { background: rgba(29,210,233,0.1); border-color: rgba(29,210,233,0.12); }
.zigzag-item[data-color="cyan"] .zigzag-visual svg { stroke: #1dd2e9; }

@media (max-width: 640px) {
  .zigzag-item, .zigzag-item:nth-child(even) {
    flex-direction: column;
    text-align: center;
  }
  .zigzag-visual { width: 64px; height: 64px; }
}


/* ─────────────────────────────────────────────────────────────
   14. HEXAGON GRID — Honeycomb item showcase
   Usage: Providers, tools, ecosystem items
   ───────────────────────────────────────────────────────────── */
.hex-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.hex-item {
  width: 120px;
  padding: 20px 12px;
  text-align: center;
  background: #131c33;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.hex-item:hover {
  background: #182240;
  border-color: rgba(0,104,249,0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,104,249,0.12);
}

.hex-item-icon {
  font-size: 28px;
  margin-bottom: 8px;
  display: block;
}

.hex-item-name {
  font-size: 13px;
  font-weight: 600;
  color: #f0f4fa;
  margin-bottom: 4px;
}

.hex-item-desc {
  font-size: 11px;
  color: rgba(232,237,244,0.5);
}

/* Offset every other row for honeycomb effect */
.hex-grid.honeycomb .hex-item:nth-child(n+5):nth-child(-n+8) { margin-left: 66px; }
.hex-grid.honeycomb .hex-item:nth-child(n+9):nth-child(-n+12) { margin-left: 0; }

@media (max-width: 600px) {
  .hex-item { width: 100px; padding: 16px 8px; }
  .hex-grid.honeycomb .hex-item { margin-left: 0 !important; }
}


/* ─────────────────────────────────────────────────────────────
   15. HORIZONTAL TIMELINE — Phases on a line
   Usage: Roadmaps, phase plans
   ───────────────────────────────────────────────────────────── */
.h-timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px 0;
}

/* Horizontal line */
.h-timeline::before {
  content: '';
  position: absolute;
  top: 56px;
  left: 60px;
  right: 60px;
  height: 3px;
  background: linear-gradient(90deg, #0068f9, #1dd2e9, #7c4dff);
  border-radius: 2px;
}

.h-timeline-item {
  flex: 1;
  text-align: center;
  position: relative;
  max-width: 180px;
}

.h-timeline-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0068f9, #1dd2e9);
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 15px rgba(0,104,249,0.4);
}

.h-timeline-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(0,104,249,0.2);
}

.h-timeline-date {
  font-family: var(--font-mono, 'IBM Plex Mono', monospace);
  font-size: 11px;
  font-weight: 600;
  color: rgba(29,210,233,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.h-timeline-title {
  font-size: 16px;
  font-weight: 700;
  color: #f0f4fa;
  margin-bottom: 6px;
}

.h-timeline-desc {
  font-size: 13px;
  color: rgba(232,237,244,0.6);
  line-height: 1.5;
}

.h-timeline-item.completed .h-timeline-dot {
  background: #00e68a;
  border-color: rgba(0,230,138,0.3);
}
.h-timeline-item.completed .h-timeline-dot::after {
  border-color: rgba(0,230,138,0.3);
}

.badge-completed {
  display: inline-block;
  background: rgba(0,230,138,0.15);
  color: #00e68a;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  margin-left: 6px;
  letter-spacing: 0.5px;
  vertical-align: middle;
}

@media (max-width: 800px) {
  .h-timeline {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding-left: 50px;
  }
  .h-timeline::before {
    top: 0; bottom: 0; left: 20px; right: auto;
    width: 3px; height: auto;
  }
  .h-timeline-item {
    text-align: left;
    max-width: none;
    padding-left: 20px;
  }
  .h-timeline-dot {
    position: absolute;
    left: -40px;
    top: 4px;
    margin: 0;
  }
}


/* ─────────────────────────────────────────────────────────────
   16. BENTO GRID — Mixed-size card grid
   Usage: Innovations, mixed feature showcase
   ───────────────────────────────────────────────────────────── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.bento-card {
  padding: 32px 28px;
  background: #131c33;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.bento-card:hover {
  border-color: rgba(0,104,249,0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

/* Featured card — spans 2 columns */
.bento-card.featured {
  grid-column: span 2;
  padding: 40px 36px;
  background: linear-gradient(135deg, #0e1628 0%, #131c33 100%);
  border-color: rgba(0,104,249,0.2);
}

/* Full-width card */
.bento-card.full { grid-column: 1 / -1; }

.bento-label {
  font-family: var(--font-mono, 'IBM Plex Mono', monospace);
  font-size: 10px;
  font-weight: 600;
  color: rgba(29,210,233,0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.bento-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.bento-title {
  font-size: 20px;
  font-weight: 700;
  color: #f0f4fa;
  margin-bottom: 8px;
}

.bento-card.featured .bento-title { font-size: 24px; }

.bento-desc {
  font-size: 14px;
  color: rgba(232,237,244,0.7);
  line-height: 1.6;
}

.bento-badge {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(0,104,249,0.1);
  border: 1px solid rgba(0,104,249,0.2);
  color: rgba(29,210,233,0.8);
}

@media (max-width: 768px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.featured { grid-column: span 1; }
}


/* ─────────────────────────────────────────────────────────────
   17. SHIELD STACK — Layered security visualization
   Usage: Security features, trust layers
   ───────────────────────────────────────────────────────────── */
.shield-stack {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.shield-layer {
  width: 100%;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: #131c33;
  border: 1px solid rgba(124,77,255,0.12);
  transition: all 0.3s ease;
  position: relative;
}

/* Nesting effect — each layer slightly wider */
.shield-layer:nth-child(1) { width: 60%; border-radius: 16px 16px 4px 4px; border-bottom: none; background: #161f38; }
.shield-layer:nth-child(2) { width: 70%; border-radius: 4px; border-bottom: none; }
.shield-layer:nth-child(3) { width: 80%; border-radius: 4px; border-bottom: none; }
.shield-layer:nth-child(4) { width: 90%; border-radius: 4px; border-bottom: none; }
.shield-layer:nth-child(5) { width: 95%; border-radius: 4px; border-bottom: none; }
.shield-layer:nth-child(6) { width: 100%; border-radius: 4px 4px 16px 16px; }

.shield-layer:hover {
  background: #1a2545;
  border-color: rgba(124,77,255,0.25);
  z-index: 2;
  box-shadow: 0 0 30px rgba(124,77,255,0.1);
}

.shield-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124,77,255,0.12);
  flex-shrink: 0;
}

.shield-icon svg {
  width: 20px;
  height: 20px;
  stroke: #b388ff;
  stroke-width: 1.5;
  fill: none;
}

.shield-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: #f0f4fa;
  margin-bottom: 2px;
}

.shield-content p {
  font-size: 13px;
  color: rgba(232,237,244,0.65);
  line-height: 1.5;
}

.shield-layer-label {
  font-family: var(--font-mono, 'IBM Plex Mono', monospace);
  font-size: 10px;
  font-weight: 600;
  color: rgba(124,77,255,0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 640px) {
  .shield-layer,
  .shield-layer:nth-child(1),
  .shield-layer:nth-child(2),
  .shield-layer:nth-child(3),
  .shield-layer:nth-child(4),
  .shield-layer:nth-child(5),
  .shield-layer:nth-child(6) {
    width: 100%;
    border-radius: 0;
  }
  .shield-layer:first-child { border-radius: 16px 16px 0 0; }
  .shield-layer:last-child { border-radius: 0 0 16px 16px; }
  .shield-layer-label { display: none; }
}


/* ─────────────────────────────────────────────────────────────
   18. METRIC CARDS — Large stat-focused cards
   Usage: Benefits, KPIs, advantages with numbers
   ───────────────────────────────────────────────────────────── */
.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.metric-card {
  padding: 32px 28px;
  background: #131c33;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  transition: all 0.4s ease;
  text-align: center;
}

.metric-card:hover {
  border-color: rgba(0,104,249,0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.metric-value {
  font-family: var(--font-mono, 'IBM Plex Mono', monospace);
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1;
}

.metric-value .unit {
  font-size: 24px;
  color: rgba(29,210,233,0.7);
}

.metric-title {
  font-size: 17px;
  font-weight: 700;
  color: #f0f4fa;
  margin-bottom: 8px;
}

.metric-desc {
  font-size: 14px;
  color: rgba(232,237,244,0.65);
  line-height: 1.5;
}

/* Color variants */
.metric-card.blue .metric-value { color: #1dd2e9; }
.metric-card.green .metric-value { color: #00e68a; }
.metric-card.orange .metric-value { color: #ffab40; }
.metric-card.purple .metric-value { color: #b388ff; }

@media (max-width: 560px) {
  .metric-grid { grid-template-columns: 1fr; }
}


/* ─────────────────────────────────────────────────────────────
   19. ICON RING — Circular item display
   Usage: Channels, integrations
   ───────────────────────────────────────────────────────────── */
.icon-ring {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  margin: 0 auto;
}

.icon-ring-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #131c33;
  border: 2px solid rgba(0,104,249,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 40px rgba(0,104,249,0.15);
}

.icon-ring-center-value {
  font-family: var(--font-mono, 'IBM Plex Mono', monospace);
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
}

.icon-ring-center-label {
  font-size: 11px;
  color: rgba(232,237,244,0.5);
}

.icon-ring-node {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #131c33;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  z-index: 2;
}

.icon-ring-node:hover {
  background: #182240;
  border-color: rgba(0,104,249,0.3);
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 0 20px rgba(0,104,249,0.2);
}

.icon-ring-node-icon { font-size: 22px; }
.icon-ring-node-label { font-size: 9px; font-weight: 600; color: rgba(232,237,244,0.7); margin-top: 2px; }

/* Ring connector lines (SVG) */
.icon-ring-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.icon-ring-lines line {
  stroke: rgba(0,104,249,0.1);
  stroke-width: 1;
  stroke-dasharray: 4 4;
}

/* Position nodes in a circle via inline style: top/left percentages */

@media (max-width: 500px) {
  .icon-ring {
    aspect-ratio: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  .icon-ring-center {
    position: relative;
    top: auto; left: auto;
    transform: none;
    width: 100%;
    height: auto;
    border-radius: 16px;
    padding: 16px;
    flex-direction: row;
    gap: 8px;
  }
  .icon-ring-node {
    position: relative;
    transform: none;
    width: 64px; height: 64px;
  }
  .icon-ring-node:hover { transform: scale(1.1); }
  .icon-ring-lines { display: none; }
}


/* ─────────────────────────────────────────────────────────────
   Scroll reveal for NEW components
   ───────────────────────────────────────────────────────────── */
.zigzag-item.sa-reveal { opacity: 0; transform: translateX(-30px); }
.zigzag-item:nth-child(even).sa-reveal { transform: translateX(30px); }
.zigzag-item.sa-reveal.visible { opacity: 1; transform: translateX(0); }
.zigzag-item.sa-reveal:nth-child(1) { transition-delay: 0s; }
.zigzag-item.sa-reveal:nth-child(2) { transition-delay: 0.1s; }
.zigzag-item.sa-reveal:nth-child(3) { transition-delay: 0.2s; }
.zigzag-item.sa-reveal:nth-child(4) { transition-delay: 0.3s; }
.zigzag-item.sa-reveal:nth-child(5) { transition-delay: 0.35s; }
.zigzag-item.sa-reveal:nth-child(6) { transition-delay: 0.4s; }

.bento-card.sa-reveal { opacity: 0; transform: scale(0.95); }
.bento-card.sa-reveal.visible { opacity: 1; transform: scale(1); }
.bento-card.sa-reveal:nth-child(1) { transition-delay: 0s; }
.bento-card.sa-reveal:nth-child(2) { transition-delay: 0.1s; }
.bento-card.sa-reveal:nth-child(3) { transition-delay: 0.15s; }
.bento-card.sa-reveal:nth-child(4) { transition-delay: 0.2s; }
.bento-card.sa-reveal:nth-child(5) { transition-delay: 0.25s; }
.bento-card.sa-reveal:nth-child(6) { transition-delay: 0.3s; }
.bento-card.sa-reveal:nth-child(7) { transition-delay: 0.35s; }

.shield-layer.sa-reveal { opacity: 0; transform: translateY(15px) scaleX(0.95); }
.shield-layer.sa-reveal.visible { opacity: 1; transform: translateY(0) scaleX(1); }
.shield-layer.sa-reveal:nth-child(1) { transition-delay: 0s; }
.shield-layer.sa-reveal:nth-child(2) { transition-delay: 0.08s; }
.shield-layer.sa-reveal:nth-child(3) { transition-delay: 0.16s; }
.shield-layer.sa-reveal:nth-child(4) { transition-delay: 0.24s; }
.shield-layer.sa-reveal:nth-child(5) { transition-delay: 0.32s; }
.shield-layer.sa-reveal:nth-child(6) { transition-delay: 0.4s; }

.h-timeline-item.sa-reveal { opacity: 0; transform: translateY(20px); }
.h-timeline-item.sa-reveal.visible { opacity: 1; transform: translateY(0); }
.h-timeline-item.sa-reveal:nth-child(1) { transition-delay: 0s; }
.h-timeline-item.sa-reveal:nth-child(2) { transition-delay: 0.1s; }
.h-timeline-item.sa-reveal:nth-child(3) { transition-delay: 0.2s; }
.h-timeline-item.sa-reveal:nth-child(4) { transition-delay: 0.3s; }
.h-timeline-item.sa-reveal:nth-child(5) { transition-delay: 0.4s; }
.h-timeline-item.sa-reveal:nth-child(6) { transition-delay: 0.5s; }

.metric-card.sa-reveal { opacity: 0; transform: translateY(20px); }
.metric-card.sa-reveal.visible { opacity: 1; transform: translateY(0); }
.metric-card.sa-reveal:nth-child(1) { transition-delay: 0s; }
.metric-card.sa-reveal:nth-child(2) { transition-delay: 0.1s; }
.metric-card.sa-reveal:nth-child(3) { transition-delay: 0.15s; }
.metric-card.sa-reveal:nth-child(4) { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
  .zigzag-item.sa-reveal,
  .bento-card.sa-reveal,
  .shield-layer.sa-reveal,
  .h-timeline-item.sa-reveal,
  .metric-card.sa-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* ═══════════════════════════════════════════════════════════════
   361 AI Business OS — Animations
   GSAP-style keyframe animations, scroll triggers, 3D effects
   ═══════════════════════════════════════════════════════════════ */

/* ─── Fade Animations ─── */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ─── Scale Animations ─── */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes scaleInUp {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ─── Float Animations ─── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes floatRotate {
  0%, 100% { 
    transform: translateY(0) rotate(0deg); 
  }
  25% { 
    transform: translateY(-8px) rotate(2deg); 
  }
  50% { 
    transform: translateY(0) rotate(0deg); 
  }
  75% { 
    transform: translateY(8px) rotate(-2deg); 
  }
}

/* ─── Pulse Animations ─── */
@keyframes pulse {
  0%, 100% { 
    opacity: 1;
    transform: scale(1);
  }
  50% { 
    opacity: 0.7;
    transform: scale(1.05);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0,104,249,0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(0,104,249,0.6);
  }
}

@keyframes pulseDot {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(0,230,138,0.5);
  }
  50% {
    opacity: 0.8;
    box-shadow: 0 0 0 8px rgba(0,230,138,0);
  }
}

/* ─── Rotate Animations ─── */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spinReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

/* ─── Gradient Animations ─── */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes gradientFlow {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 200%; }
}

/* ─── Wave Animations ─── */
@keyframes wave {
  0%, 100% { transform: translateY(0); }
  25% { transform: translateY(-5px); }
  75% { transform: translateY(5px); }
}

@keyframes waveHorizontal {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(5px); }
  75% { transform: translateX(-5px); }
}

/* ─── Draw Animations ─── */
@keyframes drawLine {
  from { stroke-dashoffset: 1000; }
  to { stroke-dashoffset: 0; }
}

@keyframes drawCircle {
  from {
    stroke-dashoffset: 1000;
    opacity: 0;
  }
  to {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

/* ─── Particle Animations ─── */
@keyframes particleFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  25% {
    transform: translate(10px, -15px) scale(1.1);
    opacity: 0.8;
  }
  50% {
    transform: translate(-5px, 10px) scale(0.9);
    opacity: 0.4;
  }
  75% {
    transform: translate(15px, 5px) scale(1.05);
    opacity: 0.7;
  }
}

@keyframes particleOrbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ─── Hero Specific ─── */
@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-40px, 30px) scale(0.95); }
  66% { transform: translate(20px, -20px) scale(1.05); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, 20px) scale(1.05); }
  66% { transform: translate(-30px, -30px) scale(0.9); }
}

/* ─── Neural Network Pulse ─── */
@keyframes neuralPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes neuralConnection {
  0% { stroke-dashoffset: 200; }
  100% { stroke-dashoffset: 0; }
}

/* ─── DNA Helix ─── */
@keyframes dnaRotate {
  from { transform: rotateY(0deg); }
  to { transform: rotateY(360deg); }
}

@keyframes dnaFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-3px) rotate(1deg); }
  50% { transform: translateY(0) rotate(0deg); }
  75% { transform: translateY(3px) rotate(-1deg); }
}

/* ─── Timeline ─── */
@keyframes timelineProgress {
  from { height: 0; }
  to { height: 100%; }
}

@keyframes timelineDot {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

/* ─── Counter Animation ─── */
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Card Hover Effects ─── */
@keyframes cardHoverGlow {
  0% { box-shadow: 0 0 0 rgba(0,104,249,0); }
  50% { box-shadow: 0 0 30px rgba(0,104,249,0.2); }
  100% { box-shadow: 0 0 0 rgba(0,104,249,0); }
}

/* ─── Mesh Network ─── */
@keyframes meshNode {
  0%, 100% { 
    transform: scale(1);
    opacity: 0.6;
  }
  50% { 
    transform: scale(1.3);
    opacity: 1;
  }
}

/* ─── Scroll Reveal Classes ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for grid items */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }
.stagger-7 { transition-delay: 0.7s; }
.stagger-8 { transition-delay: 0.8s; }

/* ─── Infinite Animations ─── */
.animate-float { animation: float 4s ease-in-out infinite; }
.animate-float-rotate { animation: floatRotate 6s ease-in-out infinite; }
.animate-pulse { animation: pulse 2s ease-in-out infinite; }
.animate-pulse-glow { animation: pulseGlow 2s ease-in-out infinite; }
.animate-spin { animation: spin 8s linear infinite; }
.animate-spin-slow { animation: spinSlow 20s linear infinite; }
.animate-spin-reverse { animation: spinReverse 12s linear infinite; }
.animate-wave { animation: wave 2s ease-in-out infinite; }
.animate-wave-horizontal { animation: waveHorizontal 2s ease-in-out infinite; }

/* ─── 3D Transforms ─── */
.perspective-1000 {
  perspective: 1000px;
}

.preserve-3d {
  transform-style: preserve-3d;
}

.backface-hidden {
  backface-visibility: hidden;
}

/* ─── Gradient Backgrounds ─── */
.gradient-mesh {
  background: 
    radial-gradient(ellipse at 20% 30%, rgba(0,104,249,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(29,210,233,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(139,92,246,0.08) 0%, transparent 60%);
}

.gradient-orbs {
  background: 
    radial-gradient(circle at 20% 20%, rgba(0,104,249,0.2) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(29,210,233,0.15) 0%, transparent 40%),
    radial-gradient(circle at 60% 30%, rgba(0,230,138,0.1) 0%, transparent 30%);
}

/* ─── Loading Animation ─── */
@keyframes loading {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border-subtle);
  border-top-color: var(--accent-blue);
  border-radius: 50%;
  animation: loading 1s linear infinite;
}

/* ─── Shimmer Effect ─── */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.shimmer {
  background: linear-gradient(
    90deg,
    var(--bg-surface) 0%,
    rgba(255,255,255,0.05) 50%,
    var(--bg-surface) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

/* ─── Typewriter Effect ─── */
@keyframes typewriter {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink {
  50% { border-color: transparent; }
}

.typewriter {
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid var(--accent-cyan);
  animation: 
    typewriter 3s steps(40, end),
    blink 0.75s step-end infinite;
}

/* ─── Path Drawing (SVG) ─── */
.draw-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawLine 2s ease forwards;
}

.draw-circle {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawCircle 2s ease forwards;
}

/* ─── Particle System Base ─── */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.particle-blue {
  background: radial-gradient(circle, rgba(0,104,249,0.6), transparent 70%);
}

.particle-cyan {
  background: radial-gradient(circle, rgba(29,210,233,0.6), transparent 70%);
}

.particle-green {
  background: radial-gradient(circle, rgba(0,230,138,0.6), transparent 70%);
}

/* ─── Intersection Observer Target ─── */
.reveal-once {
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-once.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-once.hidden {
  opacity: 0;
  transform: translateY(40px);
}

/* Solutions Filter Styles */
.filter-container {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 100px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(232,237,244,0.8);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-btn:hover {
  background: rgba(0,104,249,0.1);
  border-color: rgba(0,104,249,0.3);
  color: #fff;
}

.filter-btn.active {
  background: #0068f9;
  border-color: #0068f9;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0,104,249,0.3);
}

.showcase-card {
  transition: opacity 0.4s ease, transform 0.4s ease !important;
}

/* Roadmap Generator Styles */
.roadmap-generator {
  max-width: 800px;
  margin: 40px auto;
  padding: 40px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  text-align: center;
}

.roadmap-selector {
  margin-bottom: 40px;
}

.roadmap-display {
  text-align: left;
  min-height: 200px;
  position: relative;
}

.roadmap-phase {
  margin-bottom: 24px;
  padding-left: 24px;
  border-left: 2px solid #0068f9;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.5s ease;
}

.roadmap-phase.visible {
  opacity: 1;
  transform: translateX(0);
}

.roadmap-phase-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  color: #1dd2e9;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.roadmap-phase-desc {
  font-size: 18px;
  font-weight: 600;
  color: #e8edf4;
}

/* ═══════════════════════════════════════════════════════════════
   SOCIAL PROOF BAR — Key Stats Strip after Hero
   ═══════════════════════════════════════════════════════════════ */

.social-proof-bar {
  position: relative;
  padding: 32px 0;
  background: rgba(5,8,16,0.6);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.social-proof-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(0,104,249,0.04) 0%,
    rgba(29,210,233,0.06) 50%,
    rgba(0,104,249,0.04) 100%);
  pointer-events: none;
}

.social-proof-bar .container {
  position: relative;
  z-index: 1;
}

.social-proof-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.sp-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
}

.sp-stat:hover {
  background: rgba(0,104,249,0.06);
  border-color: rgba(0,104,249,0.15);
}

.sp-stat-value {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(135deg, #0068f9, #1dd2e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.sp-stat-label {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(232,237,244,0.6);
  white-space: nowrap;
}

.sp-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

.sp-stat-value[data-target] {
  transition: opacity 0.3s ease;
}

@media (max-width: 900px) {
  .social-proof-stats { gap: 8px; }
  .sp-stat { padding: 8px 16px; }
  .sp-stat-value { font-size: 18px; }
  .sp-stat-label { font-size: 12px; }
  .sp-divider { display: none; }
}

@media (max-width: 500px) {
  .social-proof-stats { gap: 6px; justify-content: center; }
  .sp-stat { padding: 6px 12px; border-radius: 8px; }
  .sp-stat-value { font-size: 16px; }
}
