/* ========================================
   vRobotPlatform - Premium RPA Website
   Modern, Animated, Professional Design
   ======================================== */

:root {
  --bg-dark: #0a0a0f;
  --bg-gradient: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0f0f1a 100%);
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-hover: rgba(255, 255, 255, 0.08);
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --text-primary: #ffffff;
  --text-secondary: #a0aec0;
  --text-muted: #718096;
  --primary: #6366f1;
  --primary-light: #818cf8;
  --secondary: #10b981;
  --secondary-light: #34d399;
  --accent: #06b6d4;
  --accent-light: #22d3ee;
  --warning: #f59e0b;
  --danger: #ef4444;
  --purple: #8b5cf6;
  --pink: #ec4899;
  --gradient-primary: linear-gradient(135deg, #6366f1, #8b5cf6, #06b6d4);
  --gradient-secondary: linear-gradient(135deg, #10b981, #06b6d4);
  --gradient-accent: linear-gradient(135deg, #ec4899, #8b5cf6);
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);
  --shadow-glow-green: 0 0 40px rgba(16, 185, 129, 0.3);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1400px;
  --nav-height: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: 
    radial-gradient(ellipse 80% 50% at 20% -20%, rgba(99, 102, 241, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 80% 0%, rgba(139, 92, 246, 0.1), transparent),
    radial-gradient(ellipse 50% 30% at 10% 100%, rgba(16, 185, 129, 0.1), transparent);
  pointer-events: none;
  z-index: -1;
}

a { color: inherit; text-decoration: none; transition: var(--transition-fast); }
img, svg { max-width: 100%; display: block; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p { color: var(--text-secondary); }

/* NAVIGATION */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-normal);
}

.nav.scrolled { background: rgba(10, 10, 15, 0.95); box-shadow: var(--shadow-md); }

.logo {
  font-size: 1.5rem; font-weight: 800; letter-spacing: -0.03em;
  display: flex; align-items: center; gap: 4px;
}

.logo span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-icon {
  width: 40px; height: 40px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-right: 10px;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(99, 102, 241, 0.4); }
  50% { box-shadow: 0 0 40px rgba(99, 102, 241, 0.6); }
}

.nav-links { display: flex; align-items: center; gap: 8px; }

.nav-links a {
  padding: 10px 18px; border-radius: var(--radius-md);
  font-weight: 500; font-size: 0.9rem;
  color: var(--text-secondary);
  position: relative; overflow: hidden;
}

.nav-links a::before {
  content: '';
  position: absolute; bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-normal);
  transform: translateX(-50%);
}

.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::before { width: 60%; }

.nav-links a.active {
  color: var(--text-primary);
  background: var(--glass);
  border: 1px solid var(--glass-border);
}

.nav-cta {
  padding: 10px 24px !important;
  background: var(--gradient-primary) !important;
  color: white !important;
  border-radius: var(--radius-md) !important;
  font-weight: 600 !important;
  box-shadow: var(--shadow-glow);
}

.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(99, 102, 241, 0.5); }

.nav-toggle {
  display: none;
  background: none; border: none;
  color: var(--text-primary);
  font-size: 1.5rem; cursor: pointer;
  padding: 8px; border-radius: var(--radius-sm);
}

.nav-toggle:hover { background: var(--glass); }

@media (max-width: 1024px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: var(--nav-height); left: 0; right: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px; gap: 10px;
    transform: translateY(-100%);
    opacity: 0; visibility: hidden;
    transition: var(--transition-normal);
    border-bottom: 1px solid var(--glass-border);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-links a { width: 100%; text-align: center; padding: 15px; }
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: calc(var(--nav-height) + 60px) 5% 80px;
  position: relative; overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 80%; height: 150%;
  background: radial-gradient(ellipse, rgba(99, 102, 241, 0.08), transparent 60%);
  animation: hero-glow 8s ease-in-out infinite;
}

@keyframes hero-glow {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  50% { transform: translate(-5%, 5%) scale(1.1); opacity: 0.8; }
}

.hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease-out;
}

.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-title { margin-bottom: 24px; animation: fadeInUp 0.6s ease-out 0.1s both; }

.hero-title .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 540px;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-stats { display: flex; gap: 48px; animation: fadeInUp 0.6s ease-out 0.4s both; }

.stat-item { text-align: left; }

.stat-value {
  font-size: 2.5rem; font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label { font-size: 0.9rem; color: var(--text-muted); margin-top: 4px; }

.hero-visual { position: relative; animation: fadeInRight 0.8s ease-out 0.3s both; }

.hero-demo-container {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-demo-container::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 600; font-size: 1rem;
  border: none; cursor: pointer;
  transition: var(--transition-normal);
  position: relative; overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: var(--transition-slow);
}

.btn:hover::before { left: 100%; }

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 50px rgba(99, 102, 241, 0.5); }

.btn-secondary {
  background: var(--gradient-secondary);
  color: white;
  box-shadow: var(--shadow-glow-green);
}

.btn-secondary:hover { transform: translateY(-3px); box-shadow: 0 0 50px rgba(16, 185, 129, 0.5); }

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--glass-border);
}

.btn-outline:hover { background: var(--glass); border-color: var(--primary); transform: translateY(-3px); }

.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

/* CARDS */
.card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition-normal);
  position: relative; overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
  opacity: 0;
  transition: var(--transition-normal);
}

.card:hover {
  transform: translateY(-8px);
  background: var(--card-hover);
  box-shadow: var(--shadow-lg);
  border-color: rgba(99, 102, 241, 0.3);
}

.card:hover::before {
  opacity: 1;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.card-glass { background: var(--glass); backdrop-filter: blur(20px); }

.card-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 20px;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-glow);
}

.card-icon.green { background: var(--gradient-secondary); box-shadow: var(--shadow-glow-green); }
.card-icon.purple { background: var(--gradient-accent); }
.card h3 { margin-bottom: 12px; }
.card p { font-size: 0.95rem; }

.feature-card { position: relative; padding: 40px; }

.feature-number {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 4rem; font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
}

/* SECTIONS */
.section { padding: 120px 5%; position: relative; }

.section-header { text-align: center; max-width: 800px; margin: 0 auto 80px; }

.section-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-title { margin-bottom: 20px; }
.section-description { font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.container { max-width: var(--max-width); margin: 0 auto; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 1200px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 992px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .hero-container { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { order: -1; }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .section { padding: 80px 5%; }
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes slideInFromLeft {
  from { transform: translateX(-100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes typewriter { from { width: 0; } to { width: 100%; } }

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

/* DEMO SECTION */
.demo-section { background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.05), transparent); }

.demo-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 48px; flex-wrap: wrap; }

.demo-tab {
  padding: 12px 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-normal);
  font-weight: 500;
  color: var(--text-secondary);
}

.demo-tab:hover { background: var(--card-hover); color: var(--text-primary); }

.demo-tab.active {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}

.demo-content { display: none; animation: fadeInUp 0.5s ease-out; }
.demo-content.active { display: block; }

.demo-screen {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.demo-header {
  display: flex; align-items: center; gap: 8px;
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--glass-border);
}

.demo-dot { width: 12px; height: 12px; border-radius: 50%; }
.demo-dot.red { background: #ef4444; }
.demo-dot.yellow { background: #f59e0b; }
.demo-dot.green { background: #10b981; }

.demo-body { padding: 32px; min-height: 400px; }

/* WhatsApp Demo */
.whatsapp-demo { max-width: 400px; margin: 0 auto; }
.whatsapp-chat { display: flex; flex-direction: column; gap: 16px; }

.chat-message {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 0.95rem;
  animation: slideInMessage 0.4s ease-out both;
}

.chat-message.user {
  align-self: flex-end;
  background: var(--gradient-secondary);
  color: white;
  border-bottom-right-radius: 4px;
}

.chat-message.bot {
  align-self: flex-start;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-bottom-left-radius: 4px;
}

@keyframes slideInMessage {
  from { opacity: 0; transform: translateY(20px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.chat-message.delay-1 { animation-delay: 0.5s; }
.chat-message.delay-2 { animation-delay: 1s; }
.chat-message.delay-3 { animation-delay: 1.5s; }
.chat-message.delay-4 { animation-delay: 2s; }

/* Dashboard Demo */
.dashboard-demo { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

@media (max-width: 768px) { .dashboard-demo { grid-template-columns: 1fr; } }

.dashboard-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 20px;
}

.dashboard-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }

.dashboard-card-title {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dashboard-card-value {
  font-size: 2rem; font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dashboard-card-change { display: flex; align-items: center; gap: 4px; font-size: 0.85rem; color: var(--secondary); }
.dashboard-card-change.negative { color: var(--danger); }

.chart-bars { display: flex; align-items: flex-end; gap: 8px; height: 100px; margin-top: 16px; }

.chart-bar {
  flex: 1;
  background: var(--gradient-primary);
  border-radius: 4px 4px 0 0;
  animation: growUp 1s ease-out both;
}

@keyframes growUp { from { height: 0; } }

.chart-bar:nth-child(1) { animation-delay: 0.1s; }
.chart-bar:nth-child(2) { animation-delay: 0.2s; }
.chart-bar:nth-child(3) { animation-delay: 0.3s; }
.chart-bar:nth-child(4) { animation-delay: 0.4s; }
.chart-bar:nth-child(5) { animation-delay: 0.5s; }
.chart-bar:nth-child(6) { animation-delay: 0.6s; }
.chart-bar:nth-child(7) { animation-delay: 0.7s; }

/* PROCESS FLOW */
.process-flow { position: relative; padding: 40px 0; }

.process-line {
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 2px;
  background: var(--glass-border);
  transform: translateY(-50%);
  z-index: 0;
}

.process-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 100%; width: 0;
  background: var(--gradient-primary);
  animation: processLineGrow 3s ease-out forwards;
}

@keyframes processLineGrow { to { width: 100%; } }

.process-steps { display: flex; justify-content: space-between; position: relative; z-index: 1; }

.process-step { display: flex; flex-direction: column; align-items: center; gap: 16px; flex: 1; max-width: 200px; }

.process-step-icon {
  width: 80px; height: 80px;
  background: var(--card-bg);
  border: 2px solid var(--glass-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  transition: var(--transition-normal);
  position: relative;
}

.process-step-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--gradient-primary);
  opacity: 0;
  z-index: -1;
  transition: var(--transition-normal);
}

.process-step:hover .process-step-icon { transform: scale(1.1); border-color: var(--primary); }
.process-step:hover .process-step-icon::after { opacity: 0.3; }
.process-step-title { font-weight: 600; text-align: center; }
.process-step-desc { font-size: 0.85rem; color: var(--text-muted); text-align: center; }

@media (max-width: 992px) {
  .process-flow { padding: 20px 0; }
  .process-line { display: none; }
  .process-steps { flex-direction: column; gap: 32px; align-items: center; }
  .process-step { max-width: 100%; }
}

/* STATS */
.stats-section { background: linear-gradient(180deg, rgba(99, 102, 241, 0.05), transparent); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }

.stats-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: var(--transition-normal);
}

.stats-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.stats-card-icon { font-size: 3rem; margin-bottom: 16px; }

.stats-card-value {
  font-size: 3rem; font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.stats-card-label { font-size: 1rem; color: var(--text-secondary); margin-top: 8px; }

@media (max-width: 992px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .stats-grid { grid-template-columns: 1fr; } }

/* TESTIMONIALS */
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
}

.testimonial-quote {
  font-size: 4rem;
  position: absolute;
  top: 20px; left: 30px;
  color: var(--primary);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text { font-size: 1.1rem; font-style: italic; margin-bottom: 24px; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 16px; }

.testimonial-avatar {
  width: 56px; height: 56px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.2rem;
}

.testimonial-info h4 { font-size: 1rem; margin-bottom: 4px; }
.testimonial-info p { font-size: 0.85rem; color: var(--text-muted); }

/* INTEGRATION LOGOS */
.integration-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin-top: 48px; }

.integration-logo {
  width: 120px; height: 60px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition-normal);
}

.integration-logo:hover {
  background: var(--card-hover);
  border-color: var(--primary);
  color: var(--text-primary);
  transform: scale(1.05);
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(99, 102, 241, 0.1), transparent 60%);
  animation: float 10s ease-in-out infinite;
}

.cta-content { text-align: center; position: relative; z-index: 1; }
.cta-title { margin-bottom: 20px; }
.cta-description { font-size: 1.2rem; max-width: 600px; margin: 0 auto 40px; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* FOOTER */
.footer {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid var(--glass-border);
  padding: 80px 5% 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto 60px;
}

@media (max-width: 992px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 576px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { max-width: 320px; }
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p { margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }

.footer-social a {
  width: 44px; height: 44px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition-normal);
}

.footer-social a:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-4px); }
.footer-column h4 { font-size: 1rem; margin-bottom: 24px; color: var(--text-primary); }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--text-secondary); font-size: 0.95rem; }
.footer-links a:hover { color: var(--primary-light); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid var(--glass-border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}

.footer-bottom p { font-size: 0.9rem; color: var(--text-muted); }

/* PAGE HERO */
.page-hero {
  padding: calc(var(--nav-height) + 80px) 5% 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 150%; height: 100%;
  background: radial-gradient(ellipse 50% 80% at 50% 0%, rgba(99, 102, 241, 0.15), transparent);
}

.page-hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }

/* CONTACT FORM */
.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 48px;
}

.form-group { margin-bottom: 24px; }
.form-label { display: block; font-size: 0.9rem; font-weight: 500; color: var(--text-secondary); margin-bottom: 8px; }

.form-input, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 1rem;
  transition: var(--transition-normal);
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.form-textarea { min-height: 150px; resize: vertical; }

/* BADGES */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-primary { background: rgba(99, 102, 241, 0.2); color: var(--primary-light); border: 1px solid rgba(99, 102, 241, 0.3); }
.badge-success { background: rgba(16, 185, 129, 0.2); color: var(--secondary-light); border: 1px solid rgba(16, 185, 129, 0.3); }
.badge-warning { background: rgba(245, 158, 11, 0.2); color: var(--warning); border: 1px solid rgba(245, 158, 11, 0.3); }

/* CHECKLIST */
.checklist { list-style: none; }

.checklist li { position: relative; padding-left: 32px; margin-bottom: 16px; color: var(--text-secondary); }

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  width: 24px; height: 24px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  color: white;
  font-weight: 700;
}

/* PRICING */
.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  transition: var(--transition-normal);
  position: relative;
}

.pricing-card.featured {
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.1), var(--card-bg));
  border-color: var(--primary);
  transform: scale(1.05);
}

.pricing-card.featured::before {
  content: 'Önerilen';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: var(--gradient-primary);
  border-radius: 50px;
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase;
}

.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pricing-card.featured:hover { transform: scale(1.05) translateY(-8px); }
.pricing-name { font-size: 1.25rem; margin-bottom: 8px; }

.pricing-price {
  font-size: 3rem; font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.pricing-period { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 32px; }
.pricing-features { text-align: left; margin-bottom: 32px; }

/* FLOW DIAGRAM */
.flow-diagram { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; align-items: center; }

.flow-item {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  text-align: center;
  min-width: 140px;
  transition: var(--transition-normal);
}

.flow-item:hover { border-color: var(--primary); transform: translateY(-4px); }
.flow-item-icon { font-size: 2rem; margin-bottom: 8px; }
.flow-item-title { font-size: 0.9rem; font-weight: 600; }

.flow-arrow {
  font-size: 1.5rem;
  color: var(--primary);
  animation: arrowPulse 1.5s ease-in-out infinite;
}

@keyframes arrowPulse {
  0%, 100% { opacity: 1; transform: translateX(0); }
  50% { opacity: 0.5; transform: translateX(5px); }
}

@media (max-width: 768px) { .flow-arrow { transform: rotate(90deg); } }

/* UTILITIES */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--glass-border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

::selection { background: var(--primary); color: white; }

/* SCENARIO CARDS */
.scenario-card {
  background: linear-gradient(135deg, var(--card-bg), rgba(99, 102, 241, 0.05));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.scenario-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--gradient-primary);
}

.scenario-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }

.scenario-avatar {
  width: 64px; height: 64px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}

.scenario-info h3 { margin-bottom: 4px; }
.scenario-info p { font-size: 0.9rem; color: var(--text-muted); }
.scenario-timeline { display: flex; flex-direction: column; gap: 16px; }

.timeline-item {
  display: flex; gap: 16px;
  padding: 16px;
  background: var(--glass);
  border-radius: var(--radius-md);
  border-left: 3px solid transparent;
  transition: var(--transition-normal);
}

.timeline-item:hover { border-left-color: var(--primary); background: var(--card-hover); }
.timeline-time { font-weight: 700; color: var(--primary-light); min-width: 60px; }
.timeline-content { flex: 1; }
.timeline-content strong { color: var(--text-primary); }

/* FAQ */
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none; border: none;
  color: var(--text-primary);
  font-size: 1rem; font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: var(--transition-normal);
}

.faq-question:hover { background: var(--glass); }
.faq-icon { font-size: 1.5rem; transition: var(--transition-normal); }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer-content { padding: 0 24px 20px; color: var(--text-secondary); }

/* ROBOT ANIMATION */
.robot-animation { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.robot-icon { font-size: 4rem; animation: robotBounce 2s ease-in-out infinite; }
@keyframes robotBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.robot-status {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: var(--glass);
  border-radius: 50px;
  font-size: 0.9rem;
}

.robot-status-dot {
  width: 8px; height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  animation: blink 1s ease-in-out infinite;
}

/* LIVE TYPING */
.typing-indicator {
  display: flex; gap: 4px; padding: 12px 16px;
}

.typing-dot {
  width: 8px; height: 8px;
  background: var(--text-muted);
  border-radius: 50%;
  animation: typingBounce 1.4s ease-in-out infinite;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-8px); }
}

/* COUNTER ANIMATION */
.counter { display: inline-block; }

/* GLOW EFFECTS */
.glow-box {
  position: relative;
}

.glow-box::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient-primary);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  filter: blur(20px);
  transition: var(--transition-normal);
}

.glow-box:hover::after { opacity: 0.5; }

/* PARTICLES */
.particles {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.3;
  animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.3; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* MARQUEE */
.marquee {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* COMPARISON */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
}

.comparison-table th, .comparison-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--glass-border);
}

.comparison-table th { background: var(--glass); font-weight: 600; color: var(--text-primary); }
.comparison-table tr:hover td { background: var(--glass); }
.comparison-check { color: var(--secondary); font-size: 1.2rem; }
.comparison-cross { color: var(--danger); font-size: 1.2rem; }
