:root {
  --bg: #0a0e27;
  --bg-secondary: #0f1435;
  --surface: #151c3f;
  --surface-light: rgba(255, 255, 255, 0.05);
  --surface-lighter: rgba(255, 255, 255, 0.02);
  --accent-purple: #7c3cff;
  --accent-cyan: #2bd1ff;
  --accent-violet: #a855ff;
  --accent-pink: #ff1493;
  --accent-blue: #00d4ff;
  --text-primary: #f5f7ff;
  --text-secondary: #a0aad9;
  --text-muted: #7d8ab3;
  --border: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.03);
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 12px;
  --spacing-lg: 16px;
  --spacing-xl: 24px;
  --spacing-2xl: 32px;
  --spacing-3xl: 48px;
  --spacing-4xl: 64px;
  --spacing-5xl: 80px;
  --spacing-6xl: 100px;
  --spacing-7xl: 120px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.25);
  --shadow-2xl: 0 20px 60px rgba(0, 0, 0, 0.3);
  --transition-fast: 0.15s ease-out;
  --transition-base: 0.3s ease-out;
  --transition-slow: 0.6s ease-out;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  width: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: linear-gradient(135deg, var(--bg) 0%, #0d1130 50%, var(--bg) 100%);
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(42px, 10vw, 84px);
  color: var(--text-primary);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

h2 {
  font-size: clamp(32px, 7vw, 64px);
  color: var(--text-primary);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

h3 {
  font-size: clamp(24px, 5vw, 40px);
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h4 {
  font-size: 20px;
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: -0.015em;
}

p {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
  letter-spacing: -0.005em;
}

/* Navigation Bar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 14, 39, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  transition: all var(--transition-base);
}

.navbar:hover {
  background: rgba(10, 14, 39, 0.8);
  border-bottom: 1px solid rgba(124, 60, 255, 0.2);
}

.navbar-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-2xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.navbar-brand {
  font-size: 26px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-base);
  letter-spacing: -0.02em;
}

.navbar-brand:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.navbar-nav {
  display: flex;
  gap: var(--spacing-2xl);
  flex: 1;
  margin-left: var(--spacing-3xl);
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all var(--transition-base);
  position: relative;
  letter-spacing: -0.005em;
}

.nav-link:hover {
  color: var(--accent-cyan);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
  transition: width var(--transition-base);
  border-radius: 1px;
}

.nav-link:hover::after {
  width: 100%;
}

.btn-cta {
  margin-left: auto;
  padding: 10px 24px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-violet));
  color: white;
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: 0 4px 12px rgba(124, 60, 255, 0.3);
  letter-spacing: -0.005em;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124, 60, 255, 0.5);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-5xl) var(--spacing-2xl);
  overflow: hidden;
}

.hero-content {
  max-width: 1000px;
  text-align: center;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out;
}

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

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

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(124, 60, 255, 0.2), 0 0 40px rgba(43, 209, 255, 0.1);
  }
  50% {
    box-shadow: 0 0 40px rgba(124, 60, 255, 0.4), 0 0 80px rgba(43, 209, 255, 0.3);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse-subtle {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.85;
  }
}

.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(124, 60, 255, 0.12);
  border: 1px solid rgba(124, 60, 255, 0.3);
  border-radius: var(--radius-2xl);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-cyan);
  margin-bottom: var(--spacing-2xl);
  backdrop-filter: blur(10px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition-base);
}

.hero-badge:hover {
  background: rgba(124, 60, 255, 0.2);
  border-color: rgba(124, 60, 255, 0.5);
  transform: translateY(-2px);
}

.hero-title {
  background: linear-gradient(90deg, #f5f7ff 0%, var(--accent-cyan) 50%, var(--accent-purple) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--spacing-2xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-2xl);
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.9;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s ease-out;
}

/* Buttons */
.btn {
  padding: 14px 32px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  position: relative;
  overflow: hidden;
  letter-spacing: -0.005em;
  font-family: inherit;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), height 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn:active::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-violet));
  color: white;
  box-shadow: 0 4px 12px rgba(124, 60, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124, 60, 255, 0.5);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--accent-cyan);
  color: var(--accent-cyan);
  transition: all var(--transition-base);
}

.btn-secondary:hover {
  background: rgba(43, 209, 255, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(43, 209, 255, 0.25);
}

.btn-primary-large {
  padding: 16px 40px;
  font-size: 16px;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--text-secondary);
  color: var(--text-secondary);
  transition: all var(--transition-base);
}

.btn-outline:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  background: rgba(43, 209, 255, 0.08);
}

/* Hero Glow Effects */
.hero-glow-1 {
  position: absolute;
  top: -20%;
  left: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 60, 255, 0.15) 0%, transparent 70%);
  filter: blur(60px);
  animation: float 8s ease-in-out infinite;
}

.hero-glow-2 {
  position: absolute;
  bottom: -10%;
  right: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(43, 209, 255, 0.1) 0%, transparent 70%);
  filter: blur(60px);
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(30px);
  }
}

/* Trust Section */
.trust-section {
  padding: var(--spacing-5xl) var(--spacing-2xl);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, 
    rgba(255, 255, 255, 0.02) 0%, 
    rgba(124, 60, 255, 0.04) 50%, 
    rgba(255, 255, 255, 0.01) 100%);
  position: relative;
  overflow: hidden;
}

.trust-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(124, 60, 255, 0.1), transparent),
              radial-gradient(circle at 80% 50%, rgba(43, 209, 255, 0.05), transparent);
  pointer-events: none;
}

.trust-inner {
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.trust-label {
  font-size: 13px;
  color: var(--accent-cyan);
  margin-bottom: var(--spacing-3xl);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  animation: fadeInUp 0.8s ease-out;
}

.trust-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--spacing-xl);
  margin: 0 auto;
}

.trust-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-2xl) var(--spacing-xl);
  background: linear-gradient(135deg, rgba(124, 60, 255, 0.08), rgba(43, 209, 255, 0.04));
  border: 1px solid rgba(124, 60, 255, 0.15);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  animation: scaleIn 0.6s ease-out;
  position: relative;
  overflow: hidden;
}

.trust-metric:nth-child(1) { animation-delay: 0s; }
.trust-metric:nth-child(2) { animation-delay: 0.1s; }
.trust-metric:nth-child(3) { animation-delay: 0.2s; }
.trust-metric:nth-child(4) { animation-delay: 0.3s; }

.trust-metric::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(124, 60, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.trust-metric:hover::after {
  opacity: 1;
}

.trust-metric:hover {
  background: linear-gradient(135deg, rgba(124, 60, 255, 0.15), rgba(43, 209, 255, 0.08));
  border-color: rgba(124, 60, 255, 0.35);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(124, 60, 255, 0.2);
}

.metric-value {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metric-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-card {
  padding: 32px 24px;
  background: linear-gradient(135deg, 
    rgba(124, 60, 255, 0.08) 0%, 
    rgba(43, 209, 255, 0.04) 100%);
  border: 1px solid rgba(124, 60, 255, 0.15);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
}

.trust-card:nth-child(1) { animation-delay: 0.1s; }
.trust-card:nth-child(2) { animation-delay: 0.2s; }
.trust-card:nth-child(3) { animation-delay: 0.3s; }

.trust-card:hover {
  border-color: rgba(124, 60, 255, 0.3);
  background: linear-gradient(135deg, 
    rgba(124, 60, 255, 0.15) 0%, 
    rgba(43, 209, 255, 0.08) 100%);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(124, 60, 255, 0.15);
}

.trust-stat {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}

.trust-card p {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 8px;
}

.trust-card span {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: block;
}

/* Services Section */
.services-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: var(--spacing-6xl) var(--spacing-2xl);
}

.services-header {
  text-align: center;
  margin-bottom: var(--spacing-5xl);
  position: relative;
  padding-bottom: var(--spacing-xl);
}

.services-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
  border-radius: 2px;
  opacity: 0.8;
}

.services-header h2 {
  margin-bottom: var(--spacing-lg);
  animation: slideInRight 0.6s ease-out;
}

.services-header p {
  font-size: 18px;
  color: var(--text-secondary);
  animation: slideInRight 0.8s ease-out;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-2xl);
}

.services-grid-2col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: var(--spacing-3xl);
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  padding: var(--spacing-2xl);
  background: linear-gradient(135deg, rgba(124, 60, 255, 0.08), rgba(43, 209, 255, 0.03));
  border: 1px solid rgba(124, 60, 255, 0.15);
  border-radius: var(--radius-xl);
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-base);
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out;
}

.service-card:nth-child(1) { animation-delay: 0s; }
.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.2s; }
.service-card:nth-child(4) { animation-delay: 0.3s; }
.service-card:nth-child(5) { animation-delay: 0.4s; }
.service-card:nth-child(6) { animation-delay: 0.5s; }

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

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  border-color: rgba(124, 60, 255, 0.4);
  background: linear-gradient(135deg, rgba(124, 60, 255, 0.15), rgba(43, 209, 255, 0.08));
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(124, 60, 255, 0.2);
}

.service-icon {
  font-size: 48px;
  margin-bottom: var(--spacing-lg);
  display: inline-block;
}

.service-card h3 {
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
}

.service-card p {
  margin-bottom: var(--spacing-md);
  color: var(--text-secondary);
  font-size: 15px;
}

.service-arrow {
  display: inline-block;
  color: var(--accent-cyan);
  font-weight: 600;
  transition: all var(--transition-base);
}

.service-card:hover .service-arrow {
  transform: translateX(6px);
}

/* Secondary Features Section */
.secondary-features {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 32px;
}

.secondary-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  padding-bottom: 20px;
}

.secondary-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
  border-radius: 2px;
  opacity: 0.5;
}

.secondary-header h3 {
  font-size: 28px;
  margin-bottom: 8px;
  color: var(--text-primary);
  animation: slideInRight 0.6s ease-out;
}

.secondary-header p {
  color: var(--text-muted);
  font-size: 16px;
  animation: slideInRight 0.8s ease-out;
}

.secondary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.secondary-card {
  padding: 32px;
  background: linear-gradient(135deg, rgba(124, 60, 255, 0.06), rgba(43, 209, 255, 0.03));
  border: 1px solid rgba(124, 60, 255, 0.12);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

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

.secondary-card:hover::before {
  left: 100%;
}

.secondary-card:hover {
  border-color: rgba(124, 60, 255, 0.25);
  background: linear-gradient(135deg, rgba(124, 60, 255, 0.12), rgba(43, 209, 255, 0.06));
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(124, 60, 255, 0.15);
}

.secondary-card:hover {
  border-color: rgba(124, 60, 255, 0.2);
  background: linear-gradient(135deg, rgba(124, 60, 255, 0.08), rgba(43, 209, 255, 0.04));
  transform: translateY(-6px);
}

.secondary-icon {
  font-size: 40px;
}

.secondary-card h4 {
  font-size: 18px;
  color: var(--text-primary);
  font-weight: 600;
}

.secondary-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* Metrics Showcase */
.metrics-showcase {
  padding: 80px 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
  border-top: 1px solid rgba(124, 60, 255, 0.1);
  border-bottom: 1px solid rgba(124, 60, 255, 0.1);
}

.metrics-container {
  max-width: 1400px;
  margin: 0 auto;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.metric-card {
  padding: 32px;
  background: linear-gradient(135deg, rgba(124, 60, 255, 0.08), rgba(43, 209, 255, 0.04));
  border: 1px solid rgba(124, 60, 255, 0.15);
  border-radius: 16px;
  transition: all 0.4s ease;
  animation: fadeInUp 0.6s ease-out;
  position: relative;
  overflow: hidden;
}

.metric-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(124, 60, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.metric-card:hover::after {
  opacity: 1;
}

.metric-card:hover {
  border-color: rgba(124, 60, 255, 0.35);
  background: linear-gradient(135deg, rgba(124, 60, 255, 0.18), rgba(43, 209, 255, 0.1));
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(124, 60, 255, 0.2);
}

.metric-chart {
  height: 80px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-chart {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 8px rgba(124, 60, 255, 0.1));
}

.metric-info {
  text-align: center;
}

.metric-value {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}

.metric-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}


.service-card-large {
  position: relative;
  padding: 48px 40px;
  background: linear-gradient(135deg, rgba(124, 60, 255, 0.08), rgba(43, 209, 255, 0.04));
  border: 1px solid rgba(124, 60, 255, 0.2);
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card-large.featured {
  border: 1.5px solid rgba(124, 60, 255, 0.3);
  background: linear-gradient(135deg, rgba(124, 60, 255, 0.12), rgba(43, 209, 255, 0.06));
  animation: slideInRight 0.6s ease-out;
}

.service-card-large.featured:nth-child(2) {
  animation-delay: 0.1s;
}

.service-card-large:hover {
  border-color: rgba(124, 60, 255, 0.5);
  background: linear-gradient(135deg, rgba(124, 60, 255, 0.15), rgba(43, 209, 255, 0.08));
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(124, 60, 255, 0.2);
}

.service-badge {
  display: inline-block;
  width: fit-content;
  padding: 6px 12px;
  background: rgba(124, 60, 255, 0.15);
  border: 1px solid rgba(124, 60, 255, 0.25);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-cyan);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.service-card-large:hover::before {
  left: 100%;
}

.service-card-large:hover {
  border-color: rgba(124, 60, 255, 0.4);
  background: linear-gradient(135deg, rgba(124, 60, 255, 0.15), rgba(43, 209, 255, 0.08));
  transform: translateY(-12px);
  box-shadow: 0 24px 48px rgba(124, 60, 255, 0.15);
}

.service-icon-large {
  font-size: 60px;
  margin-bottom: 24px;
  display: inline-block;
}

.service-card-large h3 {
  color: var(--text-primary);
  font-size: 28px;
  margin-bottom: 16px;
}

.service-card-large p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.service-badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(124, 60, 255, 0.2);
  border: 1px solid rgba(124, 60, 255, 0.3);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-cyan);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.service-card-large.featured {
  position: relative;
  border-color: rgba(124, 60, 255, 0.3);
}

.service-card-large.featured::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(124, 60, 255, 0.1), transparent);
  border-radius: 20px;
  pointer-events: none;
}

.feature-list-small {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0;
  flex: 1;
}

.feature-list-small span {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Secondary Features Section */
.secondary-features {
  padding: 80px 32px;
  background: linear-gradient(180deg, transparent 0%, rgba(124, 60, 255, 0.04) 100%);
  border-top: 1px solid rgba(124, 60, 255, 0.08);
}

.secondary-header {
  text-align: center;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.secondary-header h3 {
  font-size: 24px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.secondary-header p {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.secondary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.secondary-card {
  padding: 32px 28px;
  background: rgba(124, 60, 255, 0.04);
  border: 1px solid rgba(124, 60, 255, 0.1);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  text-align: center;
}

.secondary-card:hover {
  border-color: rgba(124, 60, 255, 0.25);
  background: rgba(124, 60, 255, 0.08);
  transform: translateY(-6px);
}

.secondary-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}

.secondary-card h4 {
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.secondary-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Metrics Showcase Section */
.metrics-showcase {
  padding: 80px 32px;
  background: linear-gradient(135deg, rgba(124, 60, 255, 0.02), rgba(43, 209, 255, 0.01));
  border-top: 1px solid rgba(124, 60, 255, 0.08);
  border-bottom: 1px solid rgba(124, 60, 255, 0.08);
}

.metrics-container {
  max-width: 1200px;
  margin: 0 auto;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.metric-card {
  padding: 28px 24px;
  background: linear-gradient(135deg, rgba(124, 60, 255, 0.06), rgba(43, 209, 255, 0.03));
  border: 1px solid rgba(124, 60, 255, 0.12);
  border-radius: 14px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metric-card:hover {
  border-color: rgba(124, 60, 255, 0.24);
  background: linear-gradient(135deg, rgba(124, 60, 255, 0.12), rgba(43, 209, 255, 0.06));
  transform: translateY(-4px);
}

.metric-chart {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-chart {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 4px rgba(124, 60, 255, 0.1));
}

.metric-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.metric-value {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metric-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


.pro-spotlight {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 32px;
  background: linear-gradient(180deg, rgba(124, 60, 255, 0.03), transparent);
  border-radius: 20px;
  margin-bottom: 40px;
}

.pro-spotlight-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.pro-spotlight-text h2 {
  margin-bottom: 24px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: slideInRight 0.6s ease-out;
}

.pro-spotlight-text {
  animation: slideInRight 0.8s ease-out;
}

.pro-spotlight-text p {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.8;
}

.pro-features {
  list-style: none;
  margin-bottom: 32px;
}

.pro-features li {
  padding: 12px 0;
  color: var(--text-secondary);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.pro-features li::before {
  content: attr(data-icon);
  display: inline-block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.pro-features li:hover {
  color: var(--accent-cyan);
  transform: translateX(8px);
  font-weight: 500;
}

.pro-features li:nth-child(odd) {
  color: var(--text-secondary);
}

.pro-features li:nth-child(even)::after {
  content: '';
  display: inline-block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
  margin-left: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pro-features li:nth-child(even):hover::after {
  opacity: 1;
}

.pro-spotlight-visual {
  height: 400px;
  background: linear-gradient(135deg, rgba(124, 60, 255, 0.15) 0%, rgba(43, 209, 255, 0.08) 100%);
  border: 1px solid rgba(124, 60, 255, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(124, 60, 255, 0.1);
}

.pro-card-visual {
  width: 90%;
  height: 90%;
  background: linear-gradient(135deg, var(--surface-light), var(--surface-lighter));
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 24px 48px rgba(124, 60, 255, 0.2);
  animation: float 6s ease-in-out infinite;
}

/* Stats Grid for Pro Spotlight */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
  height: 100%;
}

.stat-box {
  background: linear-gradient(135deg, rgba(124, 60, 255, 0.15) 0%, rgba(43, 209, 255, 0.08) 100%);
  border: 1.5px solid rgba(124, 60, 255, 0.25);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  animation: fadeInUp 0.6s ease-out;
}

.stat-box:nth-child(1) { animation-delay: 0s; }
.stat-box:nth-child(2) { animation-delay: 0.1s; }
.stat-box:nth-child(3) { animation-delay: 0.2s; }
.stat-box:nth-child(4) { animation-delay: 0.3s; }

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

.stat-box:hover::before {
  left: 100%;
}

.stat-box:hover {
  border-color: rgba(124, 60, 255, 0.5);
  background: linear-gradient(135deg, rgba(124, 60, 255, 0.25) 0%, rgba(43, 209, 255, 0.15) 100%);
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(124, 60, 255, 0.25);
}

.stat-value {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.4;
}

/* CTA Section */
.cta-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 32px;
  text-align: center;
  background: linear-gradient(135deg, rgba(124, 60, 255, 0.08), rgba(43, 209, 255, 0.04));
  border: 1px solid rgba(124, 60, 255, 0.15);
  border-radius: 20px;
  margin-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(124, 60, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(124, 60, 255, 0.04) 0%, transparent 100%);
  padding: var(--spacing-5xl) var(--spacing-2xl) var(--spacing-2xl);
}

.footer-content {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-3xl);
  margin-bottom: var(--spacing-3xl);
}

.footer-section h4 {
  font-size: 16px;
  margin-bottom: var(--spacing-lg);
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: -0.005em;
}

.footer-section p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: var(--spacing-md);
}

.footer-section a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: all var(--transition-base);
  display: inline-block;
  letter-spacing: -0.005em;
}

.footer-section a:hover {
  color: var(--accent-cyan);
  transform: translateX(4px);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-xl);
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 1024px) {
  .navbar-inner {
    padding: 0 var(--spacing-xl);
  }

  .services-grid-2col {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }

  .pro-spotlight-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-3xl);
  }
}

@media (max-width: 768px) {
  .navbar-inner {
    padding: 0 var(--spacing-lg);
  }

  .navbar-nav {
    display: none;
  }

  .hero-section {
    padding: var(--spacing-4xl) var(--spacing-lg);
    min-height: auto;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .services-section {
    padding: var(--spacing-4xl) var(--spacing-lg);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-grid-2col {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }

  .secondary-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }

  .secondary-card {
    padding: var(--spacing-lg);
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }

  .metric-card {
    padding: var(--spacing-lg);
  }

  .metric-value {
    font-size: 24px;
  }

  .metric-label {
    font-size: 12px;
  }

  .trust-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }
}

/* Advanced Animations */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes glow-pulse {
  0% {
    box-shadow: 0 0 20px rgba(124, 60, 255, 0.4), 0 0 40px rgba(43, 209, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 30px rgba(124, 60, 255, 0.6), 0 0 60px rgba(43, 209, 255, 0.4);
  }
  100% {
    box-shadow: 0 0 20px rgba(124, 60, 255, 0.4), 0 0 40px rgba(43, 209, 255, 0.2);
  }
}

@keyframes text-shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes float-up {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotate-gradient {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

/* Enhanced typography animations */
.hero-title {
  animation: fadeInUp 1s ease-out, gradientShift 6s ease-in-out infinite;
  background-size: 200% 200%;
}

/* Premium card hover effects */
.service-card:active {
  transform: scale(0.98);
}

.btn:active {
  transform: scale(0.96);
}

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

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
