/* Modern SaaS Design - Bizfy Styles */
:root {
  /* Color System - Vibrant Modern Palette */
  --primary-50: #f0f4ff;
  --primary-100: #e0e7ff;
  --primary-200: #c7d2fe;
  --primary-300: #a5b4fc;
  --primary-400: #818cf8;
  --primary-500: #6366f1;
  --primary-600: #4f46e5;
  --primary-700: #4338ca;
  --primary-800: #3730a3;
  --primary-900: #312e81;
  
  --secondary-50: #faf5ff;
  --secondary-100: #f3e8ff;
  --secondary-200: #e9d5ff;
  --secondary-300: #d8b4fe;
  --secondary-400: #c084fc;
  --secondary-500: #a855f7;
  --secondary-600: #9333ea;
  --secondary-700: #7c3aed;
  --secondary-800: #6b21a8;
  --secondary-900: #581c87;
  
  --accent-50: #f0f9ff;
  --accent-100: #e0f2fe;
  --accent-200: #bae6fd;
  --accent-300: #7dd3fc;
  --accent-400: #38bdf8;
  --accent-500: #0ea5e9;
  --accent-600: #0284c7;
  --accent-700: #0369a1;
  --accent-800: #075985;
  --accent-900: #0c4a6e;
  
  /* Neutral Colors */
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;
  
  /* Status Colors */
  --success-500: #22c55e;
  --warning-500: #f59e0b;
  --error-500: #ef4444;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  
  /* Glass Effect */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.18);
  
  /* Spacing */
  --container-max-width: 1200px;
  --section-padding: 100px 0;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
  color: var(--gray-700);
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  overflow-x: hidden;
}

.container {
  max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
  height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
  font-weight: 700;
  font-size: 20px;
  color: var(--gray-900);
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--secondary-500) 100%);
  border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
  font-size: 16px;
  box-shadow: var(--shadow-md);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
  color: var(--gray-900);
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    text-decoration: none;
  color: var(--gray-600);
    font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav a:hover {
  color: var(--primary-600);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-500);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.header-actions {
    display: flex;
  align-items: center;
  gap: 16px;
}

.btn-login {
    text-decoration: none;
  color: var(--gray-600);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-login:hover {
  background: var(--gray-100);
  color: var(--gray-900);
}

.btn-signup {
  text-decoration: none;
  background: var(--primary-500);
    color: white;
  font-weight: 600;
    padding: 12px 24px;
    border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.btn-signup:hover {
  background: var(--primary-600);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

/* Main Content */
.main {
  padding-top: 72px;
}

/* Hero Section */
.hero {
  padding: var(--section-padding);
  background: linear-gradient(135deg, #f0f4ff 0%, #faf5ff 50%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

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

.hero-tag {
  display: inline-flex;
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--secondary-500) 5%, var(--primary-50) 100%);
  color: var(--primary-700);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--primary-200);
    margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-title {
  font-size: 56px;
    font-weight: 700;
  line-height: 1.1;
  color: var(--gray-900);
    margin-bottom: 24px;
  background: linear-gradient(135deg, #4f46e5 0%, #a855f7 50%, #0ea5e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
    font-size: 18px;
  color: var(--gray-600);
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
  font-size: 24px;
    font-weight: 700;
  color: var(--primary-600);
  display: block;
  margin-bottom: 6px;
}

.stat-label {
    font-size: 14px;
  color: var(--gray-500);
    font-weight: 500;
}

.btn-primary {
  background: linear-gradient(135deg, #4f46e5 0%, #a855f7 50%, #0ea5e9 100%);
    color: white;
  border: none;
    padding: 16px 32px;
  font-size: 16px;
    font-weight: 600;
  border-radius: 16px;
    cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
  box-shadow: var(--shadow-2xl);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Network Visualization */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
  justify-content: flex-end;
  height: 500px;
  padding-right: 20px;
}

.network-container {
    position: relative;
  width: 500px;
  height: 500px;
}

.central-hub {
    position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  z-index: 10;
}

.hub-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #4f46e5 0%, #a855f7 50%, #0ea5e9 100%);
  border-radius: 50%;
    display: flex;
    align-items: center;
  justify-content: center;
  font-size: 48px;
  color: white;
  box-shadow: var(--shadow-2xl);
  position: relative;
  z-index: 2;
}

.hub-pulse {
  position: absolute;
  top: -20px;
  left: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  border: 3px solid rgba(79, 70, 229, 0.6);
  border-radius: 50%;
  animation: pulse 2s infinite;
  opacity: 0.8;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  z-index: 1;
}

.floating-node {
    position: absolute;
  top: var(--y);
  left: var(--x);
  transform: translate(-50%, -50%);
  animation: float 3s ease-in-out infinite;
  animation-delay: var(--delay);
  z-index: 5;
}

.node-content {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(79, 70, 229, 0.2);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(79, 70, 229, 0.15);
  transition: all 0.3s ease;
  min-width: 100px;
}

.node-content:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2xl);
}

.node-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.node-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-700);
}

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

.user-avatar {
  position: absolute;
  top: var(--y);
  left: var(--x);
  transform: translate(-50%, -50%);
  animation: float 4s ease-in-out infinite;
  animation-delay: var(--delay);
  z-index: 6;
}

.avatar-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.avatar-circle:hover {
  transform: scale(1.1);
}

.avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Features Section */
.features {
  padding: var(--section-padding);
  background: white;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  align-items: start;
}

.features-text {
    max-width: 500px;
}

.features-tag,
.section-tag,
.pricing-tag {
  display: inline-flex;
  background: var(--primary-50);
  color: var(--primary-700);
  padding: 6px 12px;
  border-radius: 16px;
    font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.features-title,
.section-title,
.pricing-title {
  font-size: 42px;
    font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 24px;
    line-height: 1.2;
}

.stats-title {
  font-size: 3rem;
  font-weight: 800;
  color: white;
    margin-bottom: 24px;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-description,
.section-description,
.pricing-description {
  font-size: 18px;
  color: var(--gray-600);
    margin-bottom: 32px;
  line-height: 1.7;
}

.stats-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-bottom: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-list li {
    display: flex;
    align-items: center;
  font-size: 16px;
  color: var(--gray-700);
  font-weight: 500;
}

.feature-list li::before {
    content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--success-500);
  color: white;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  margin-right: 12px;
  flex-shrink: 0;
}

/* Demo Card */
.demo-card {
  background: linear-gradient(135deg, white 0%, var(--gray-50) 100%);
  border-radius: 24px;
    padding: 32px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
  position: sticky;
  top: 120px;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.demo-title {
    font-size: 24px;
    font-weight: 700;
  color: var(--gray-900);
  margin: 0;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--success-500);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--success-500);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

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

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(79, 70, 229, 0.6);
  }
}

.demo-subtitle {
  color: var(--gray-500);
    margin-bottom: 24px;
  font-size: 16px;
}

.demo-button {
    width: 100%;
  background: linear-gradient(135deg, #4f46e5 0%, #a855f7 50%, #0ea5e9 100%);
    color: white;
    border: none;
  padding: 16px 24px;
    font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
    cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
  position: relative;
  overflow: hidden;
  margin-bottom: 32px;
}

.demo-button:hover {
    transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.button-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.demo-button:hover .button-glow {
  left: 100%;
}

.demo-users {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.demo-user {
    display: flex;
    align-items: center;
    gap: 12px;
  padding: 12px;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.demo-user:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.user-avatar-small {
    width: 40px;
    height: 40px;
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--secondary-500) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
  flex-shrink: 0;
}

.user-info {
  flex-grow: 1;
}

.user-name {
  font-weight: 600;
  color: var(--gray-900);
  font-size: 14px;
}

.user-email {
  color: var(--gray-500);
  font-size: 13px;
}

.user-status {
  width: 24px;
  height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.status-verified {
  background: var(--success-500);
    color: white;
}

.status-pending {
  background: var(--warning-500);
    color: white;
}

/* Section Layouts */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

/* Verification Types */
.verification-types {
  padding: var(--section-padding);
  background: var(--gray-50);
}

.verification-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.verification-card {
  background: white;
  border-radius: 24px;
  padding: 40px 32px;
    text-align: center;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.verification-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-50) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.verification-card:hover::before {
  opacity: 1;
}

.verification-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
  border-color: var(--primary-200);
}

.verification-card.featured {
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--secondary-500) 100%);
  color: white;
  transform: scale(1.05);
  box-shadow: var(--shadow-2xl);
}

.verification-card.featured .verification-title,
.verification-card.featured .verification-description {
  color: white;
}

.verification-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
    font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.verification-icon {
  font-size: 48px;
    margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.verification-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--gray-900);
  position: relative;
  z-index: 2;
}

.verification-description {
  color: var(--gray-600);
  margin-bottom: 32px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.verification-features {
  list-style: none;
  text-align: left;
    display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.verification-features li {
  color: var(--gray-700);
    font-weight: 500;
}

.verification-card.featured .verification-features li {
  color: white;
}

/* Stats Section */
.stats-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(79, 70, 229, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.stats-content {
  position: relative;
  z-index: 2;
}

.stats-header {
  text-align: center;
  margin-bottom: 80px;
}

.stats-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
  max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: 48px 32px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out;
}

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

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
              0 0 0 1px rgba(79, 70, 229, 0.2);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: #a855f7;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #a855f7 0%, #6366f1 50%, #0ea5e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
    position: relative;
  z-index: 2;
}

.stat-label {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  position: relative;
  z-index: 2;
}

/* Testimonials */
.testimonials {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
    position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(79, 70, 229, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.testimonials .container {
  position: relative;
  z-index: 2;
}

.testimonials-grid {
    display: flex;
  flex-direction: row;
  gap: 24px;
  margin-top: 60px;
    justify-content: center;
  flex-wrap: wrap;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding: 32px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08),
              0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  animation: slideInLeft 0.8s ease-out;
  flex: 1;
  min-width: 300px;
  max-width: 350px;
}

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

/* Responsive adjustments for testimonials section */
@media (max-width: 1200px) {
  .testimonials-grid {
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .testimonial-card {
    min-width: 280px;
    max-width: 320px;
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .testimonial-card {
    min-width: 320px;
    max-width: 400px;
  }
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.02) 0%, rgba(168, 85, 247, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12),
              0 0 0 1px rgba(79, 70, 229, 0.1);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-stars {
  color: var(--warning-500);
  font-size: 20px;
  margin-bottom: 16px;
}

.testimonial-text {
  color: var(--gray-700);
    font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--secondary-500) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.author-name {
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.author-title {
  color: var(--gray-500);
  font-size: 14px;
}

/* How It Works */
.how-it-works {
  padding: 120px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 20%, rgba(79, 70, 229, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 30% 80%, rgba(168, 85, 247, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.how-it-works .container {
  position: relative;
  z-index: 2;
}

.process-steps {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px;
  margin-top: 60px;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
  animation: fadeInUp 0.8s ease-out;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }

.process-step:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08),
              0 0 0 1px rgba(79, 70, 229, 0.1);
}

.step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4f46e5 0%, #a855f7 50%, #0ea5e9 100%);
  border-radius: 50%;
    display: flex;
    align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 20px;
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
  border: 3px solid white;
  animation: glow 3s ease-in-out infinite;
}

.step-icon {
  font-size: 72px;
  margin: 30px 0 24px;
  background: linear-gradient(135deg, #4f46e5 0%, #a855f7 50%, #0ea5e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.step-description {
  color: var(--gray-600);
  line-height: 1.7;
  font-size: 16px;
}

/* Security Section */
.security-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
  position: relative;
  overflow: hidden;
}

.security-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(79, 70, 229, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.security-section .container {
  position: relative;
  z-index: 2;
}

.security-section .section-title {
    color: white;
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.security-section .section-description {
  color: rgba(255, 255, 255, 0.8);
}

.security-grid {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-top: 60px;
  justify-content: center;
  flex-wrap: wrap;
}

.security-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  animation: slideInRight 0.8s ease-out;
  flex: 1;
  min-width: 250px;
  max-width: 280px;
}

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

/* Responsive adjustments for security section */
@media (max-width: 1200px) {
  .security-grid {
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .security-card {
    min-width: 220px;
    max-width: 260px;
  }
}

@media (max-width: 768px) {
  .security-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .security-card {
    min-width: 280px;
    max-width: 320px;
  }
}

.security-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.security-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
              0 0 0 1px rgba(79, 70, 229, 0.2);
}

.security-card:hover::before {
  opacity: 1;
}

.security-icon {
  font-size: 56px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #a855f7 0%, #6366f1 50%, #0ea5e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
}

.security-title {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.security-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

/* FAQ Section */
.faq-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.faq-section::before {
    content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(79, 70, 229, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(168, 85, 247, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.faq-section .container {
  position: relative;
  z-index: 2;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out;
  margin-bottom: 16px;
}

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

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.02) 0%, rgba(168, 85, 247, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08),
              0 0 0 1px rgba(79, 70, 229, 0.1);
}

.faq-item:hover::before {
  opacity: 1;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-question:hover {
  background: rgba(79, 70, 229, 0.02);
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-900);
  margin: 0;
  flex: 1;
}

.faq-icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--primary-600);
  transition: all 0.3s ease;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(79, 70, 229, 0.1);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: rgba(79, 70, 229, 0.2);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 32px 24px 32px;
}

.faq-answer p {
  color: var(--gray-600);
  line-height: 1.7;
  font-size: 15px;
  margin: 0;
}

/* Pricing Section */
.pricing {
  padding: var(--section-padding);
  background: var(--gray-50);
}

.pricing-header {
    text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.billing-toggle {
  display: flex;
    align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.billing-label {
    font-weight: 600;
  color: var(--gray-700);
}

.discount-badge {
  background: var(--success-500);
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
    font-weight: 700;
  margin-left: 8px;
}

.toggle-switch {
  position: relative;
    display: inline-block;
  width: 60px;
  height: 34px;
  cursor: pointer;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--gray-300);
  transition: .4s;
  border-radius: 34px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

input:checked + .toggle-slider {
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--secondary-500) 100%);
}

input:checked + .toggle-slider:before {
  transform: translateX(26px);
}

.pricing-grid {
  display: flex;
  justify-content: center;
        gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: nowrap;
}

.pricing-card {
    background: white;
    border-radius: 20px;
  padding: 24px 20px;
  border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
  text-align: center;
  flex: 1;
  max-width: 260px;
}

.pricing-card:hover {
    transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

.pricing-card.featured {
  background: linear-gradient(135deg, #4f46e5 0%, #a855f7 50%, #0ea5e9 100%);
    color: white;
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.3);
}

.pricing-badge {
    position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--success-500);
    color: white;
  padding: 8px 24px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
  box-shadow: var(--shadow-md);
}

.pricing-plan {
    font-size: 20px;
    font-weight: 700;
  margin-bottom: 6px;
  color: var(--gray-900);
}

.pricing-card.featured .pricing-plan {
  color: white;
}

.pricing-price {
  margin-bottom: 8px;
}

.price-currency {
  font-size: 18px;
  font-weight: 600;
  vertical-align: top;
}

.price-amount {
  font-size: 36px;
  font-weight: 700;
}

.price-period {
  font-size: 14px;
  color: var(--gray-500);
}

.pricing-card.featured .price-period {
  color: rgba(255, 255, 255, 0.8);
}

.pricing-description {
  color: var(--gray-500);
    margin-bottom: 20px;
  font-size: 14px;
}

.pricing-card.featured .pricing-description {
  color: rgba(255, 255, 255, 0.8);
}

.pricing-features {
    list-style: none;
    text-align: left;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-features li {
  color: var(--gray-700);
  font-weight: 500;
  font-size: 13px;
}

.pricing-card.featured .pricing-features li {
  color: white;
}

.pricing-button {
  width: 100%;
  background: linear-gradient(135deg, #4f46e5 0%, #a855f7 100%);
    color: white;
    border: none;
  padding: 12px 20px;
  font-size: 14px;
    font-weight: 600;
  border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.pricing-card.featured .pricing-button {
  background: white;
  color: var(--primary-600);
}

.pricing-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Value Proposition Styling */
.pricing-value {
  margin-top: 60px;
  padding: 40px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 20px;
}

.value-proposition h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--gray-900);
  text-align: center;
  margin-bottom: 40px;
  background: linear-gradient(135deg, var(--primary-600), var(--secondary-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.value-item {
  background: white;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-500), var(--secondary-500));
}

.value-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15);
  border-color: var(--primary-200);
}

.value-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.value-item h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.value-item p {
  color: var(--gray-600);
  line-height: 1.6;
  font-size: 16px;
}

/* Contact Form Styling */
.contact-hero {
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--secondary-50) 100%);
  padding: 80px 0;
  text-align: center;
}

.contact-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-500), var(--secondary-500));
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-description {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-form-section {
  padding: 80px 0;
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--gray-50);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
}

.contact-icon {
  font-size: 32px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-500), var(--secondary-500));
  border-radius: 12px;
  color: white;
}

.contact-detail-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.contact-detail-content p {
  color: var(--gray-600);
  margin: 0;
}

.contact-form-container {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--gray-200);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
}

.form-input,
.form-select,
.form-textarea {
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-full {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
}

.contact-success {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-radius: 16px;
  border: 1px solid #bbf7d0;
}

.success-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.contact-success h3 {
  font-size: 24px;
  font-weight: 700;
  color: #166534;
  margin-bottom: 12px;
}

.contact-success p {
  color: #15803d;
  font-size: 16px;
  margin: 0;
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 80px 0 40px;
}

.footer-content {
    display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-logo .logo-icon {
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--secondary-500) 100%);
}

.footer-logo .logo-text {
  font-size: 24px;
  font-weight: 700;
  color: white;
}

.footer-description {
  color: var(--gray-400);
    line-height: 1.6;
  margin-bottom: 32px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
  color: var(--gray-400);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: var(--primary-400);
}

.footer-title {
  color: white;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-400);
}

.footer-bottom {
    display: flex;
  justify-content: space-between;
    align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--gray-800);
}

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

.footer-legal a {
  color: var(--gray-400);
  text-decoration: none;
    font-size: 14px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--primary-400);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .features-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .hero-title {
    font-size: 48px;
  }
  
  .network-container {
    width: 500px;
    height: 500px;
  }
}

@media (max-width: 1200px) {
  .pricing-grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .pricing-card {
    max-width: 280px;
    flex: 0 0 auto;
  }
}

@media (max-width: 1024px) {
  .pricing-grid {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .pricing-card {
    max-width: 300px;
    flex: 0 0 auto;
  }
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: auto;
    padding: 16px 0;
    position: relative;
  }
  
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 12px 12px;
    gap: 16px;
    z-index: 1000;
  }
  
  .nav.show {
    display: flex;
  }
  
  .header-actions {
    display: none;
  }
  
  .header-actions.show {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
  }
  
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
  }
  
  .mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gray-700);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: 1px;
  }
  
  .mobile-menu-toggle.active span:first-child {
    transform: rotate(45deg);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:last-child {
    transform: rotate(-45deg);
  }
  
  /* Hero Section Mobile */
  .hero {
    padding: 40px 16px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  
  .hero-description {
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.6;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }
  
  .hero-stats .stat {
    text-align: center;
    padding: 16px;
  }
  
  .section-title {
    font-size: 28px;
    margin-bottom: 24px;
  }
  
  .section-subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }
  
  /* Simplify network visualization for mobile */
  .hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
  }
  
  .network-container {
    width: 100%;
    max-width: 300px;
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Hide complex SVG animations on mobile */
  .connection-lines {
    display: none;
  }
  
  /* Simplified central hub for mobile */
  .central-hub {
    position: relative;
    width: 100px;
    height: 100px;
    transform: none;
    top: auto;
    left: auto;
  }
  
  .hub-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-500), var(--secondary-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.3);
  }
  
  .hub-icon {
    font-size: 32px;
    color: white;
  }
  
  /* Mobile-specific floating node positioning */
  .floating-node {
    position: absolute !important;
    transform: translate(-50%, -50%) !important;
    animation: none !important;
  }
  
  /* Position nodes in a circular layout similar to desktop */
  .floating-node:nth-child(1) { /* Reports - Top Right */
    --x: 220px !important;
    --y: 100px !important;
  }
  
  .floating-node:nth-child(2) { /* Fraud Check - Right */
    --x: 250px !important;
    --y: 150px !important;
  }
  
  .floating-node:nth-child(3) { /* Social Media - Bottom Right */
    --x: 220px !important;
    --y: 200px !important;
  }
  
  .floating-node:nth-child(4) { /* Invoices - Top Left */
    --x: 80px !important;
    --y: 100px !important;
  }
  
  .floating-node:nth-child(5) { /* DNS Analysis - Left */
    --x: 50px !important;
    --y: 150px !important;
  }
  
  .floating-node:nth-child(6) { /* Certificates - Bottom Left */
    --x: 80px !important;
    --y: 200px !important;
  }
  
  /* Mobile node content styling */
  .node-content {
    min-width: 80px !important;
    padding: 12px !important;
    font-size: 12px !important;
  }
  
  .node-icon {
    font-size: 18px !important;
    margin-bottom: 4px !important;
  }
  
  .node-label {
    font-size: 10px !important;
  }
  
  /* Disable all animations on mobile for better performance */
  .hub-pulse,
  .network-node,
  .avatar-circle,
  .pulse-ring,
  .connection-path {
    animation: none !important;
  }
  
  .network-node {
    transform: none !important;
  }
  
  /* Sections Mobile */
  .section {
    padding: 40px 16px;
  }
  
  /* Features Mobile */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .feature-card {
    padding: 24px;
    text-align: center;
  }
  
  .feature-icon {
    margin: 0 auto 16px;
  }
  
  /* Pricing Mobile */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .pricing-card {
    padding: 24px;
  }
  
  /* CTA Mobile */
  .cta-content {
    text-align: center;
    padding: 40px 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  
  .verification-grid,
  .stats-grid,
  .testimonials-grid,
  .security-grid {
        grid-template-columns: 1fr;
    }
    
  .footer-content {
        grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
  }
  
  .pricing-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .pricing-card {
    max-width: 100%;
    width: 100%;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero-title {
    font-size: 28px;
    line-height: 1.3;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .section-subtitle {
    font-size: 14px;
  }
  
  .btn {
    padding: 12px 20px;
    font-size: 14px;
  }
  
  .network-container {
    width: 100%;
    max-width: 250px;
    height: 250px;
  }
  
  .central-hub {
    width: 80px;
    height: 80px;
  }
  
  .hub-icon {
    font-size: 24px;
  }
  
  /* Maintain circular layout for very small screens */
  .floating-node:nth-child(1) { /* Reports - Top Right */
    --x: 200px !important;
    --y: 80px !important;
  }
  
  .floating-node:nth-child(2) { /* Fraud Check - Right */
    --x: 230px !important;
    --y: 125px !important;
  }
  
  .floating-node:nth-child(3) { /* Social Media - Bottom Right */
    --x: 200px !important;
    --y: 170px !important;
  }
  
  .floating-node:nth-child(4) { /* Invoices - Top Left */
    --x: 70px !important;
    --y: 80px !important;
  }
  
  .floating-node:nth-child(5) { /* DNS Analysis - Left */
    --x: 40px !important;
    --y: 125px !important;
  }
  
  .floating-node:nth-child(6) { /* Certificates - Bottom Left */
    --x: 70px !important;
    --y: 170px !important;
  }
  
  /* Smaller node content for very small screens */
  .node-content {
    min-width: 60px !important;
    padding: 8px !important;
  }
  
  .node-icon {
    font-size: 14px !important;
  }
  
  .node-label {
    font-size: 8px !important;
  }
  
  /* Disable heavy animations on mobile for better performance */
  .network-node,
  .avatar-circle,
  .pulse-ring {
    animation: none !important;
  }
  
  .network-node {
    transform: none !important;
  }
  
  /* Reduce animation complexity on mobile */
  .stat-card,
  .testimonial-card,
  .security-card,
  .faq-item,
  .process-step {
    animation: none !important;
    transform: none !important;
  }
  
  /* Simplify hover effects on mobile */
  .stat-card:hover,
  .testimonial-card:hover,
  .security-card:hover,
  .verification-card:hover {
    transform: none !important;
  }
  
  .hub-inner {
    font-size: 32px;
  }
  
  .pricing-card,
  .verification-card,
  .testimonial-card {
        padding: 24px;
    }
}

/* Usage Limit Notification Styles */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Legal Pages Styles */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.legal-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.last-updated {
  color: var(--gray-600);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.legal-content section {
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.legal-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

.legal-content p {
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.legal-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-content li {
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

/* Help Center Styles */
.help-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

.help-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.help-subtitle {
  color: var(--gray-600);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.help-search {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  max-width: 500px;
}

.search-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-size: 1rem;
}

.search-btn {
  padding: 0.75rem 1.5rem;
  background: var(--primary-600);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.search-btn:hover {
  background: var(--primary-700);
}

.quick-links h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.quick-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  text-decoration: none;
  color: var(--gray-700);
  transition: all 0.2s;
}

.quick-link:hover {
  border-color: var(--primary-300);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
  transform: translateY(-2px);
}

.link-icon {
  font-size: 1.5rem;
}

.link-text {
  font-weight: 600;
}

.faq-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.faq-item {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.faq-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.faq-item p {
  color: var(--gray-700);
  line-height: 1.6;
  margin: 0;
}

.guide-section {
  margin: 3rem 0;
}

.guide-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.guide-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step-number {
  width: 2rem;
  height: 2rem;
  background: var(--primary-600);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--gray-700);
  line-height: 1.6;
  margin: 0;
}

.support-section {
  background: var(--gray-50);
  padding: 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.support-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.support-section p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.support-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.support-option {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
}

.option-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.option-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.option-content p {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.support-link {
  color: var(--primary-600);
  text-decoration: none;
  font-weight: 600;
}

.support-link:hover {
  color: var(--primary-700);
}

.chat-btn {
  padding: 0.5rem 1rem;
  background: var(--primary-600);
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.chat-btn:hover {
  background: var(--primary-700);
}

/* Status Page Styles */
.status-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

.status-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.status-subtitle {
  color: var(--gray-600);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.overall-status {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.status-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.status-indicator.operational .status-dot {
  background: var(--success-500);
}

.status-time {
  color: var(--gray-600);
  font-size: 0.875rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.service-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.5rem;
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.service-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin: 0;
}

.status-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.status-badge.operational {
  background: var(--success-50);
  color: var(--success-700);
}

.service-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.metric-label {
  color: var(--gray-600);
  font-size: 0.875rem;
}

.metric-value {
  font-weight: 600;
  color: var(--gray-900);
}

.incidents-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.incident-timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.incident-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
}

.incident-date {
  color: var(--gray-600);
  font-size: 0.875rem;
  font-weight: 600;
  min-width: 120px;
}

.incident-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.incident-content p {
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.incident-status {
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.incident-status.resolved {
  background: var(--success-50);
  color: var(--success-700);
}

.metrics-section {
  margin: 3rem 0;
}

.metrics-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

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

.metric-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.metric-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.metric-chart {
  position: relative;
  height: 100px;
  background: var(--gray-100);
  border-radius: 8px;
  margin-bottom: 1rem;
  display: flex;
  align-items: end;
  justify-content: center;
}

.chart-bar {
  background: var(--primary-600);
  width: 20px;
  border-radius: 4px 4px 0 0;
  transition: height 0.3s ease;
}

.chart-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 600;
  color: var(--gray-900);
}

.metric-description {
  color: var(--gray-600);
  font-size: 0.875rem;
  margin: 0;
}

.subscribe-section {
  background: var(--gray-50);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}

.subscribe-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.subscribe-section p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.subscribe-form {
  display: flex;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.subscribe-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-size: 1rem;
}

.subscribe-btn {
  padding: 0.75rem 1.5rem;
  background: var(--primary-600);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.subscribe-btn:hover {
  background: var(--primary-700);
}

/* Security Page Styles */
.security-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

.security-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.security-subtitle {
  color: var(--gray-600);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.security-overview {
  margin-bottom: 3rem;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, var(--success-50), var(--success-100));
  border: 1px solid var(--success-200);
  border-radius: 12px;
  padding: 2rem;
}

.badge-icon {
  font-size: 3rem;
}

.badge-text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--success-800);
  margin-bottom: 0.5rem;
}

.badge-text p {
  color: var(--success-700);
  margin: 0;
}

.security-features h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.security-feature {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.security-feature h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.security-feature p {
  color: var(--gray-700);
  line-height: 1.6;
  margin: 0;
}

.compliance-section {
  margin: 3rem 0;
}

.compliance-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.compliance-item {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.compliance-logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-600);
  margin-bottom: 1rem;
}

.compliance-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.compliance-item p {
  color: var(--gray-700);
  line-height: 1.6;
  margin: 0;
}

.data-protection {
  margin: 3rem 0;
}

.data-protection h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.protection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.protection-item {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.5rem;
}

.protection-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.protection-item ul {
  margin: 0;
  padding-left: 1.5rem;
}

.protection-item li {
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.best-practices {
  margin: 3rem 0;
}

.best-practices h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.practices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.practice-item {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.5rem;
}

.practice-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.practice-item ul {
  margin: 0;
  padding-left: 1.5rem;
}

.practice-item li {
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.incident-response {
  margin: 3rem 0;
}

.incident-response h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.incident-response p {
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}

.response-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.security-contact {
  background: var(--gray-50);
  padding: 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.security-contact h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.security-contact p {
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  color: var(--gray-700);
}

.security-updates {
  margin: 3rem 0;
}

.security-updates h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.security-updates p {
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}

.update-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  margin-bottom: 1rem;
}

.update-date {
  color: var(--gray-600);
  font-size: 0.875rem;
  font-weight: 600;
  min-width: 120px;
}

.update-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.update-content p {
  color: var(--gray-700);
  line-height: 1.6;
  margin: 0;
}

/* Cookie Policy Styles */
.cookie-table {
  overflow-x: auto;
  margin: 1rem 0;
}

.cookie-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.cookie-table th {
  background: var(--gray-50);
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--gray-900);
  border-bottom: 1px solid var(--gray-200);
}

.cookie-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-700);
}

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

/* About Page Styles */
.about-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

.about-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.about-subtitle {
  color: var(--gray-600);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.about-hero {
  background: linear-gradient(135deg, var(--primary-50), var(--accent-50));
  border-radius: 12px;
  padding: 3rem;
  margin-bottom: 3rem;
}

.about-hero h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.about-hero p {
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.mission-card,
.vision-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.mission-card h3,
.vision-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.mission-card p,
.vision-card p {
  color: var(--gray-700);
  line-height: 1.6;
}

.our-story {
  margin: 3rem 0;
}

.our-story h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.story-content p {
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.our-values {
  margin: 3rem 0;
}

.our-values h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.value-item {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.value-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.value-item p {
  color: var(--gray-700);
  line-height: 1.6;
  margin: 0;
}

.team-section {
  margin: 3rem 0;
}

.team-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.team-intro {
  color: var(--gray-700);
  margin-bottom: 2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.team-member {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.member-avatar {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.team-member h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.member-role {
  color: var(--primary-600);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.member-bio {
  color: var(--gray-700);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.technology-section {
  margin: 3rem 0;
}

.technology-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.technology-section p {
  color: var(--gray-700);
  margin-bottom: 2rem;
}

.tech-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.tech-feature {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.5rem;
}

.tech-feature h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.tech-feature p {
  color: var(--gray-700);
  line-height: 1.6;
  margin: 0;
}

.stats-section {
  margin: 3rem 0;
}

.stats-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

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

.stat-item {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-600);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--gray-700);
  font-size: 0.875rem;
}

.contact-cta {
  background: var(--gray-50);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  margin: 3rem 0;
}

.contact-cta h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.contact-cta p {
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Blog Page Styles */
.blog-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

.blog-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.blog-subtitle {
  color: var(--gray-600);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.featured-post {
  background: linear-gradient(135deg, var(--primary-50), var(--accent-50));
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.post-category {
  background: var(--primary-600);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 1rem;
}

.featured-post h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.post-excerpt {
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.post-meta {
  display: flex;
  gap: 1rem;
  color: var(--gray-600);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.read-more-btn {
  background: var(--primary-600);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.read-more-btn:hover {
  background: var(--primary-700);
}

.blog-categories {
  margin-bottom: 2rem;
}

.blog-categories h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.category-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.category-btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--gray-300);
  background: white;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.category-btn.active {
  background: var(--primary-600);
  color: white;
  border-color: var(--primary-600);
}

.category-btn:hover {
  border-color: var(--primary-300);
}

.blog-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.post-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
}

.post-image {
  height: 200px;
  background: var(--gray-100);
  position: relative;
}

.post-category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary-600);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}

.post-content {
  padding: 1.5rem;
}

.post-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.newsletter-signup {
  background: var(--gray-50);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  margin: 3rem 0;
}

.newsletter-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.newsletter-content p {
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto 1rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-size: 1rem;
}

.newsletter-btn {
  padding: 0.75rem 1.5rem;
  background: var(--primary-600);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.newsletter-btn:hover {
  background: var(--primary-700);
}

.newsletter-disclaimer {
  color: var(--gray-600);
  font-size: 0.875rem;
  margin: 0;
}

.popular-tags {
  margin: 3rem 0;
}

.popular-tags h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.tags-container {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  background: var(--gray-100);
  color: var(--gray-700);
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-size: 0.875rem;
  text-decoration: none;
}

.tag:hover {
  background: var(--primary-100);
  color: var(--primary-700);
}

/* Careers Page Styles */
.careers-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

.careers-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.careers-subtitle {
  color: var(--gray-600);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.why-work-with-us {
  margin: 3rem 0;
}

.why-work-with-us h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.benefit-item {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.benefit-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.benefit-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.benefit-item p {
  color: var(--gray-700);
  line-height: 1.6;
  margin: 0;
}

.open-positions {
  margin: 3rem 0;
}

.open-positions h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.positions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
}

.position-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.5rem;
}

.position-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.position-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin: 0;
}

.position-meta {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
  align-items: flex-end;
}

.position-type {
  background: var(--primary-100);
  color: var(--primary-700);
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}

.position-location {
  color: var(--gray-600);
  font-size: 0.875rem;
}

.position-description {
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.position-requirements h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.position-requirements ul {
  margin: 0;
  padding-left: 1.5rem;
}

.position-requirements li {
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 0.25rem;
}

.apply-btn {
  background: var(--primary-600);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 1rem;
}

.apply-btn:hover {
  background: var(--primary-700);
}

.company-culture {
  margin: 3rem 0;
}

.company-culture h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.culture-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.culture-text p {
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.culture-values h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.culture-values ul {
  margin: 0;
  padding-left: 1.5rem;
}

.culture-values li {
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.benefits-section {
  margin: 3rem 0;
}

.benefits-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.benefit-category {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.5rem;
}

.benefit-category h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.benefit-category ul {
  margin: 0;
  padding-left: 1.5rem;
}

.benefit-category li {
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.application-process {
  margin: 3rem 0;
}

.application-process h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.careers-contact {
  background: var(--gray-50);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  margin: 3rem 0;
}

.careers-contact h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.careers-contact p {
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}

.contact-options {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.contact-link {
  color: var(--primary-600);
  text-decoration: none;
  font-weight: 600;
}

.contact-link:hover {
  color: var(--primary-700);
}

/* Documentation Page Styles */
.documentation-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

.documentation-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.docs-subtitle {
  color: var(--gray-600);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.quick-start {
  margin: 3rem 0;
}

.quick-start h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.quick-start-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.docs-sections {
  margin: 3rem 0;
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.docs-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.5rem;
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.docs-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.docs-card p {
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.docs-links {
  margin: 0;
  padding-left: 1.5rem;
}

.docs-links li {
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.docs-links a {
  color: var(--primary-600);
  text-decoration: none;
}

.docs-links a:hover {
  color: var(--primary-700);
}

.api-examples {
  margin: 3rem 0;
}

.api-examples h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.example-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tab-btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--gray-300);
  background: white;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.tab-btn.active {
  background: var(--primary-600);
  color: white;
  border-color: var(--primary-600);
}

.tab-btn:hover {
  border-color: var(--primary-300);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.tab-content pre {
  background: var(--gray-100);
  border-radius: 8px;
  padding: 1rem;
  overflow-x: auto;
}

.tab-content code {
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 0.875rem;
  line-height: 1.6;
}

.response-format {
  margin: 3rem 0;
}

.response-format h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.response-format p {
  color: var(--gray-700);
  margin-bottom: 1rem;
}

.sdks-section {
  margin: 3rem 0;
}

.sdks-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.sdks-section p {
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}

.sdk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.sdk-item {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.5rem;
}

.sdk-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.sdk-item p {
  color: var(--gray-700);
  margin-bottom: 1rem;
}

.sdk-item code {
  background: var(--gray-100);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 0.875rem;
}

.support-resources {
  margin: 3rem 0;
}

.support-resources h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.support-item {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.support-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.support-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.support-item p {
  color: var(--gray-700);
  margin-bottom: 1rem;
}

.support-link {
  color: var(--primary-600);
  text-decoration: none;
  font-weight: 600;
}

.support-link:hover {
  color: var(--primary-700);
}

/* API Reference Page Styles */
.api-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

.api-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.api-subtitle {
  color: var(--gray-600);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.base-url {
  margin: 2rem 0;
}

.base-url h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.base-url-code {
  background: var(--gray-100);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 1rem;
}

.authentication {
  margin: 2rem 0;
}

.authentication h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.authentication p {
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.authentication pre {
  background: var(--gray-100);
  padding: 1rem;
  border-radius: 8px;
  overflow-x: auto;
}

.authentication a {
  color: var(--primary-600);
  text-decoration: none;
}

.authentication a:hover {
  color: var(--primary-700);
}

.rate-limits {
  margin: 2rem 0;
}

.rate-limits h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.rate-limit-table {
  overflow-x: auto;
}

.rate-limit-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.rate-limit-table th {
  background: var(--gray-50);
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--gray-900);
  border-bottom: 1px solid var(--gray-200);
}

.rate-limit-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-700);
}

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

.endpoints {
  margin: 3rem 0;
}

.endpoints h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.endpoint {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.endpoint-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.method {
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.method.post {
  background: var(--success-100);
  color: var(--success-700);
}

.method.get {
  background: var(--primary-100);
  color: var(--primary-700);
}

.endpoint-path {
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 1rem;
  color: var(--gray-900);
}

.endpoint-description {
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}

.request-schema,
.response-schema {
  margin: 1rem 0;
}

.request-schema h3,
.response-schema h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.request-schema pre,
.response-schema pre {
  background: var(--gray-100);
  padding: 1rem;
  border-radius: 8px;
  overflow-x: auto;
}

.parameters {
  margin: 1rem 0;
}

.parameter {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: var(--gray-50);
  border-radius: 8px;
}

.parameter code {
  background: var(--gray-200);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 0.875rem;
  min-width: 100px;
}

.parameter-type {
  color: var(--gray-600);
  font-size: 0.875rem;
  min-width: 80px;
}

.parameter-required {
  background: var(--error-100);
  color: var(--error-700);
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  min-width: 60px;
}

.parameter p {
  color: var(--gray-700);
  margin: 0;
  flex: 1;
}

.error-codes {
  margin: 3rem 0;
}

.error-codes h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.error-table {
  overflow-x: auto;
}

.error-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.error-table th {
  background: var(--gray-50);
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--gray-900);
  border-bottom: 1px solid var(--gray-200);
}

.error-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-700);
}

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

.sdks {
  margin: 3rem 0;
}

.sdks h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.sdks p {
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}

.sdk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.sdk-item {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.5rem;
}

.sdk-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.sdk-item code {
  background: var(--gray-100);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 0.875rem;
  display: block;
  margin-bottom: 1rem;
}

.sdk-item pre {
  background: var(--gray-100);
  padding: 1rem;
  border-radius: 8px;
  overflow-x: auto;
  font-size: 0.875rem;
}

.webhooks {
  margin: 3rem 0;
}

.webhooks h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.webhooks p {
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}

.webhook-events {
  margin: 1.5rem 0;
}

.webhook-event {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.webhook-event code {
  background: var(--primary-100);
  color: var(--primary-700);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 0.875rem;
  font-weight: 600;
}

.webhook-event p {
  color: var(--gray-700);
  margin: 0.5rem 0 0 0;
}

.api-support {
  margin: 3rem 0;
}

.api-support h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.support-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.support-option {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.support-option h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.support-option p {
  color: var(--gray-700);
  margin-bottom: 1rem;
}

.support-link {
  color: var(--primary-600);
  text-decoration: none;
  font-weight: 600;
}

.support-link:hover {
  color: var(--primary-700);
}

/* Responsive Design */
@media (max-width: 768px) {
  .legal-content,
  .help-content,
  .status-content,
  .security-content,
  .about-content,
  .blog-content,
  .careers-content,
  .documentation-content,
  .api-content {
    padding: 1rem 0;
  }
  
  .legal-content h1,
  .help-content h1,
  .status-content h1,
  .security-content h1,
  .about-content h1,
  .blog-content h1,
  .careers-content h1,
  .documentation-content h1,
  .api-content h1 {
    font-size: 2rem;
  }
  
  .help-search {
    flex-direction: column;
  }
  
  .link-grid {
    grid-template-columns: 1fr;
  }
  
  .support-options {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .compliance-grid {
    grid-template-columns: 1fr;
  }
  
  .protection-grid {
    grid-template-columns: 1fr;
  }
  
  .practices-grid {
    grid-template-columns: 1fr;
  }
  
  .subscribe-form {
    flex-direction: column;
  }
  
  .incident-item,
  .update-item {
    flex-direction: column;
  }
  
  .incident-date,
  .update-date {
    min-width: auto;
  }
  
  .mission-vision {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .tech-features {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .blog-posts {
    grid-template-columns: 1fr;
  }
  
  .category-filters {
    flex-direction: column;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .positions-grid {
    grid-template-columns: 1fr;
  }
  
  .culture-content {
    grid-template-columns: 1fr;
  }
  
  .benefits-list {
    grid-template-columns: 1fr;
  }
  
  .contact-options {
    flex-direction: column;
  }
  
  .docs-grid {
    grid-template-columns: 1fr;
  }
  
  .example-tabs {
    flex-direction: column;
  }
  
  .sdk-grid {
    grid-template-columns: 1fr;
  }
  
  .support-grid {
    grid-template-columns: 1fr;
  }
  
  .endpoint-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .parameter {
    flex-direction: column;
  }
  
  .parameter code,
  .parameter-type,
  .parameter-required {
    min-width: auto;
  }
}

.usage-limit-notification {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.usage-limit-notification .notification-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.usage-limit-notification .notification-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.usage-limit-notification .notification-text h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 600;
}

.usage-limit-notification .notification-text p {
  margin: 0 0 8px 0;
  font-size: 14px;
  line-height: 1.4;
}

.usage-limit-notification .notification-text p:last-child {
  margin-bottom: 0;
}

.usage-limit-notification .notification-close {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  flex-shrink: 0;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.usage-limit-notification .notification-close:hover {
  opacity: 1;
}