/* Cache refresh: 1757094169 */
/* ===================================
   KyberShield VPN - Golden Master Landing Page
   NordVPN-Style Professional + Futuristic
   =================================== */

/* CSS Variables for Landing Page */
:root {
  /* Landing Page Colors - Professional Light */
  --bg-primary-light: #ffffff;
  --bg-secondary-light: #f8fafc;
  --bg-tertiary-light: #e2e8f0;
  --text-primary-light: #1e293b;
  --text-secondary-light: rgba(30, 41, 59, 0.8);
  --text-muted-light: rgba(30, 41, 59, 0.6);
  
  /* KyberShield Brand Colors - Premium Gradients */
  --primary-gradient: linear-gradient(135deg, #1e3a8a 0%, #0ea5e9 50%, #0284c7 100%);
  --secondary-gradient: linear-gradient(135deg, #1e40af 0%, #0284c7 50%, #0ea5e9 100%);
  --hero-gradient: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
  
  /* Glass Effects */
  --glass-bg-light: rgba(255, 255, 255, 0.9);
  --glass-border-light: rgba(255, 255, 255, 0.3);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  
  /* Animations */
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
  color-scheme: light only;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--text-primary-light);
  background: var(--bg-primary-light) !important;
  background-color: #ffffff !important;
  overflow-x: hidden;
}

/* Professional Navigation */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 0;
  transition: var(--transition-smooth);
}

.landing-nav.sticky {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.landing-nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary-light);
}

.nav-logo-icon {
  width: 64px;
  height: 64px;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  transition: var(--transition-smooth);
}

.nav-logo:hover .nav-logo-icon {
  transform: scale(1.05);
}

.nav-brand {
  font-size: 24px;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 35px;
  list-style: none;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-secondary-light);
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-menu a:hover {
  color: var(--text-primary-light);
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-cta {
  padding: 8px 16px;
  background: var(--primary-gradient);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 8px rgba(0, 212, 255, 0.3);
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

/* Mobile Menu Toggle - Hidden on desktop */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 3px;
  background: var(--text-primary-light);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--hero-gradient);
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px 0; /* Increased top/bottom padding for better spacing */
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,212,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  animation: gridFloat 20s ease-in-out infinite;
}

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

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--glass-bg-light);
  border: 1px solid var(--glass-border-light);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary-light);
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
}

.hero-badge i {
  color: #00d4ff;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--text-primary-light);
}

.hero-title .gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-secondary-light);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 50px;
}

.cta-primary {
  padding: 16px 32px;
  background: var(--primary-gradient);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
}

.cta-secondary {
  padding: 16px 32px;
  background: transparent;
  color: var(--text-primary-light);
  text-decoration: none;
  border: 2px solid rgba(139, 92, 246, 0.3);
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-secondary:hover {
  border-color: rgba(139, 92, 246, 0.6);
  background: rgba(139, 92, 246, 0.05);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 40px;
}

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

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary-light);
  display: block;
}

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

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-shield {
  width: 300px;
  height: 300px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: heroShieldPulse 4s ease-in-out infinite;
}

.hero-shield::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(139, 92, 246, 0.2));
  animation: heroShieldRotate 8s linear infinite;
}

.hero-shield i {
  font-size: 120px;
  color: white;
  position: relative;
  z-index: 2;
}

@keyframes heroShieldPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes heroShieldRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Multi-Device Icon Stack */
.multi-device-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  border-radius: 16px;
  padding: 12px;
}

.multi-device-icon i {
  position: absolute;
  transition: all 0.3s ease;
  color: white !important;
  font-weight: 900;
}

.multi-device-icon .fa-laptop {
  font-size: 24px;
  z-index: 3;
}

.multi-device-icon .fa-mobile-alt {
  font-size: 18px;
  transform: translateX(12px) translateY(8px);
  z-index: 2;
}

.multi-device-icon .fa-tablet-alt {
  font-size: 20px;
  transform: translateX(-12px) translateY(6px);
  z-index: 1;
}

.feature-card:hover .multi-device-icon {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

.feature-card:hover .multi-device-icon .fa-laptop {
  transform: translateY(-2px);
}

.feature-card:hover .multi-device-icon .fa-mobile-alt {
  transform: translateX(15px) translateY(10px);
}

.feature-card:hover .multi-device-icon .fa-tablet-alt {
  transform: translateX(-15px) translateY(8px);
}

/* Features Section */
.features-section {
  padding: 120px 0;
  background: var(--bg-secondary-light);
  position: relative;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--glass-bg-light);
  border: 1px solid var(--glass-border-light);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary-light);
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary-light);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 20px;
  color: var(--text-secondary-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.feature-card {
  background: var(--glass-bg-light);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border-light);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: var(--primary-gradient);
  transition: left 0.5s ease;
}

.feature-card:hover::before {
  left: 0;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--glass-shadow);
  border-color: rgba(0, 212, 255, 0.3);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  color: white;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary-light);
  margin-bottom: 15px;
}

.feature-description {
  font-size: 16px;
  color: var(--text-secondary-light);
  line-height: 1.6;
}

/* Comparison Section */
.comparison-section {
  padding: 120px 0 150px 0;
  background: var(--bg-primary-light);
  position: relative;
}

/* Responsive Table Container */
.comparison-table-modern {
  background: var(--glass-bg-light);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  margin: 40px 0 60px 0;
  position: relative;
}

/* Mobile-first responsive container */
.comparison-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(14, 165, 233, 0.3) transparent;
}

.comparison-wrapper::-webkit-scrollbar {
  height: 8px;
}

.comparison-wrapper::-webkit-scrollbar-track {
  background: rgba(148, 163, 184, 0.1);
  border-radius: 4px;
}

.comparison-wrapper::-webkit-scrollbar-thumb {
  background: rgba(14, 165, 233, 0.3);
  border-radius: 4px;
}

.comparison-wrapper::-webkit-scrollbar-thumb:hover {
  background: rgba(14, 165, 233, 0.5);
}

.comparison-header {
  display: grid;
  grid-template-columns: 280px 120px repeat(3, 180px);
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-bottom: 2px solid var(--glass-border-light);
  min-width: 940px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-cell {
  padding: 24px 16px;
  text-align: center;
  font-weight: 600;
  border-right: 1px solid var(--glass-border-light);
  white-space: nowrap;
}

.header-cell:last-child {
  border-right: none;
}

.feature-header {
  text-align: left;
  font-size: 16px;
  color: var(--text-primary-light);
  padding-left: 24px;
}

.kyberlink-header {
  background: white;
  color: var(--text-primary-light);
  position: relative;
  border-left: 3px solid var(--primary-gradient);
  border-right: 3px solid var(--primary-gradient);
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding-left: 2px !important;
  padding-right: 5px !important;
  width: 120px !important;
  overflow: visible !important;
}

.kyberlink-header .provider-logo {
  justify-content: flex-start !important;
  gap: 0px !important;
  text-align: left !important;
  margin: 0 !important;
  padding: 0 !important;
  padding-left: 2px !important;
  width: auto !important;
  max-width: 80px !important;
  overflow: visible !important;
}

.kyberlink-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  z-index: 1;
}

.provider-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  padding-left: 2px;
  padding-right: 2px;
  white-space: nowrap;
}

.provider-logo img {
  filter: none;
}

.competitor-header {
  color: var(--text-secondary-light);
  font-size: 14px;
  font-weight: 600;
}

.comparison-body {
  background: white;
  min-width: 940px;
}

.comparison-row-modern {
  display: grid;
  grid-template-columns: 280px 120px repeat(3, 180px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  transition: all 0.3s ease;
}

.comparison-row-modern:hover {
  background: linear-gradient(90deg, rgba(14, 165, 233, 0.02) 0%, rgba(139, 92, 246, 0.02) 100%);
}

.comparison-row-modern:last-child {
  border-bottom: none;
}

.feature-cell {
  padding: 24px;
  text-align: left;
  border-right: 1px solid rgba(148, 163, 184, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-icon {
  font-size: 20px;
  min-width: 24px;
  text-align: center;
}

.feature-content {
  flex: 1;
}

.feature-name {
  font-weight: 700;
  color: var(--text-primary-light);
  margin-bottom: 4px;
  font-size: 15px;
  line-height: 1.3;
}

.feature-desc {
  font-size: 12px;
  color: var(--text-muted-light);
  line-height: 1.4;
}

.value-cell {
  padding: 24px 16px;
  text-align: center;
  border-right: 1px solid rgba(148, 163, 184, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
}

.value-cell:last-child {
  border-right: none;
}

.kyberlink-cell {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.08) 0%, rgba(14, 165, 233, 0.08) 100%);
  border-left: 3px solid var(--primary-gradient);
  border-right: 3px solid var(--primary-gradient);
  position: relative;
}

/* Comparison Table Icon Colors */
.value-cell .fa-check {
  color: #10b981;
  font-size: 18px;
}

.value-cell .fa-times {
  color: #ef4444;
  font-size: 18px;
}

.kyberlink-cell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
  pointer-events: none;
}

/* Enhanced Check/Cross Icons */
.kyberlink-check {
  color: #00d4ff;
  font-size: 20px;
  font-weight: bold;
  filter: drop-shadow(0 0 4px rgba(0, 212, 255, 0.4));
  animation: checkGlow 2s ease-in-out infinite alternate;
}

@keyframes checkGlow {
  0% { filter: drop-shadow(0 0 4px rgba(0, 212, 255, 0.4)); }
  100% { filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.6)); }
}

.competitor-check {
  color: #64748b;
  font-size: 18px;
}

.competitor-times {
  color: #ef4444;
  font-size: 18px;
  opacity: 0.7;
}

/* Badge Styles */
.unlimited-badge {
  background: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 100%);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 212, 255, 0.3);
  animation: unlimitedPulse 3s ease-in-out infinite;
}

@keyframes unlimitedPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.limited-badge {
  color: var(--text-muted-light);
  font-size: 12px;
  font-weight: 600;
  background: rgba(148, 163, 184, 0.1);
  padding: 4px 10px;
  border-radius: 12px;
}

/* Mobile Responsive Design */
@media (max-width: 1024px) {
  .comparison-header {
    grid-template-columns: 240px repeat(4, 120px);
    min-width: 720px;
  }
  
  .comparison-body {
    min-width: 720px;
  }
  
  .comparison-row-modern {
    grid-template-columns: 240px repeat(4, 120px);
  }
  
  .feature-cell {
    padding: 20px 16px;
  }
  
  .feature-name {
    font-size: 14px;
  }
  
  .feature-desc {
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .comparison-section {
    padding: 80px 0 100px 0;
  }
  
  .comparison-table-modern {
    margin: 20px -20px 40px -20px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
  
  .comparison-header {
    grid-template-columns: 200px repeat(4, 100px);
    min-width: 600px;
  }
  
  .comparison-body {
    min-width: 600px;
  }
  
  .comparison-row-modern {
    grid-template-columns: 200px repeat(4, 100px);
  }
  
  .header-cell {
    padding: 16px 8px;
    font-size: 12px;
  }
  
  .feature-header {
    padding-left: 16px;
    font-size: 14px;
  }
  
  .feature-cell {
    padding: 16px;
    gap: 8px;
  }
  
  .feature-icon {
    font-size: 16px;
    min-width: 20px;
  }
  
  .feature-name {
    font-size: 13px;
  }
  
  .feature-desc {
    font-size: 10px;
  }
  
  .value-cell {
    padding: 16px 8px;
    min-height: 60px;
  }
  
  .kyberlink-check {
    font-size: 16px;
  }
  
  .competitor-check,
  .competitor-times {
    font-size: 14px;
  }
  
  .unlimited-badge {
    font-size: 10px;
    padding: 4px 8px;
  }
  
  .limited-badge {
    font-size: 10px;
    padding: 3px 6px;
  }
}

@media (max-width: 480px) {
  .comparison-header {
    grid-template-columns: 160px repeat(4, 80px);
    min-width: 480px;
  }
  
  .comparison-body {
    min-width: 480px;
  }
  
  .comparison-row-modern {
    grid-template-columns: 160px repeat(4, 80px);
  }
  
  .header-cell {
    padding: 12px 4px;
    font-size: 11px;
  }
  
  .feature-header {
    padding-left: 12px;
    font-size: 12px;
  }
  
  .feature-cell {
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  
  .feature-icon {
    font-size: 14px;
  }
  
  .feature-name {
    font-size: 12px;
    line-height: 1.2;
  }
  
  .feature-desc {
    font-size: 9px;
  }
  
  .value-cell {
    padding: 12px 4px;
    min-height: 50px;
  }
  
  .provider-logo {
    flex-direction: column;
    gap: 4px;
  }
  
  .provider-logo span {
    font-size: 11px;
  }
  
  .unlimited-badge {
    font-size: 9px;
    padding: 3px 6px;
    letter-spacing: 0.3px;
  }
  
  .limited-badge {
    font-size: 9px;
    padding: 2px 4px;
  }
}

.comparison-cta {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 32px;
  text-align: center;
  border-top: 1px solid var(--glass-border-light);
}

.comparison-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--primary-gradient);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
  margin-bottom: 8px;
}

.comparison-cta-btn-improved {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-gradient);
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
  margin-bottom: 8px;
  min-width: 180px;
  white-space: nowrap;
}

.comparison-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

.comparison-cta-btn-improved:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

.cta-subtitle {
  color: var(--text-muted-light);
  font-size: 14px;
  margin: 0;
}

.table-header {
  background: var(--primary-gradient);
  color: white;
  padding: 25px;
  text-align: center;
}

.table-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.table-header p {
  opacity: 0.9;
  font-size: 16px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 0;
}

.comparison-row {
  display: contents;
}

.comparison-cell {
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.comparison-cell:first-child {
  justify-content: flex-start;
  font-weight: 600;
}

.comparison-cell.kyberlink {
  background: rgba(0, 212, 255, 0.1);
  color: var(--text-primary-light);
}

.feature-check {
  color: #00ff88;
  font-size: 20px;
}

.feature-cross {
  color: #ff4444;
  font-size: 20px;
}

/* Download Section */
.download-section {
  padding: 120px 0;
  background: var(--bg-secondary-light);
}

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

.download-card {
  background: var(--glass-bg-light);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border-light);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition-smooth);
}

.download-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glass-shadow);
}

.platform-icon {
  width: 80px;
  height: 80px;
  background: var(--secondary-gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  color: white;
}

.download-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary-light);
}

.download-desc {
  font-size: 14px;
  color: var(--text-secondary-light);
  margin-bottom: 25px;
}

.download-btn {
  padding: 12px 24px;
  background: var(--primary-gradient);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

/* Testimonials Section */
.testimonials-section {
  padding: 120px 0;
  background: var(--bg-primary-light);
}

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

.testimonial-card {
  background: var(--glass-bg-light);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border-light);
  border-radius: 20px;
  padding: 30px;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glass-shadow);
}

.testimonial-content {
  font-size: 16px;
  color: var(--text-secondary-light);
  line-height: 1.6;
  margin-bottom: 25px;
  font-style: italic;
}

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

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--secondary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 18px;
}

.author-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary-light);
  margin-bottom: 5px;
}

.author-info p {
  font-size: 14px;
  color: var(--text-muted-light);
}

/* Footer */
.landing-footer {
  background: var(--text-primary-light);
  color: white;
  padding: 60px 0 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition-smooth);
  font-size: 15px;
}

.footer-section ul li a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-title {
    font-size: 48px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .hero-title {
    font-size: 40px;
  }
  
  .hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  
  .hero-stats {
    justify-content: center;
    gap: 30px;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .feature-card {
    padding: 30px 20px;
  }
}

/* Main Downloads Grid */
.main-downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 40px auto;
}

.download-card.primary {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.download-card.primary:hover {
    transform: translateY(-5px);
    border-color: #00d4ff;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.download-info {
    text-align: center;
    margin: 40px 0;
    color: #64748b;
}

/* AI Security Section */
.ai-security-section {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 100px 0;
    color: white;
}

.ai-security-section .section-badge {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.ai-security-section .section-badge i {
    color: #3b82f6;
}

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

.ai-system-card {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%) !important;
    border: 1px solid #90caf9 !important;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: none;
    box-shadow: 0 4px 20px rgba(144, 202, 249, 0.15);
}

.ai-system-card:hover {
    background: linear-gradient(135deg, #e1f5fe 0%, #b3e5fc 100%) !important;
    border-color: #29b6f6 !important;
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(144, 202, 249, 0.25);
}

.ai-system-icon {
    font-size: 48px;
    margin-bottom: 1rem;
    display: block;
}

.ai-system-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a3d7c !important;
}

.ai-system-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #2d5aa0 !important;
    margin-bottom: 1.5rem;
}

.ai-stats {
    font-size: 0.85rem;
    color: #1a3d7c !important;
    font-weight: 500;
    background: rgba(26, 61, 124, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
}

/* Global Footer */
.global-footer {
    background: #1e293b;
    color: #94a3b8;
    padding: 20px 0;
    text-align: center;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00d4ff;
}

.separator {
    color: #475569;
}

@media (max-width: 768px) {
    .main-downloads-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 0 20px 40px 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 10px;
    }
}


/* Ransomware Advantage Grid */
.ransomware-advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(14, 165, 233, 0.1);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.15);
    border-color: rgba(14, 165, 233, 0.3);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: white;
}

.advantage-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.advantage-desc {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.advantage-desc strong {
    color: #1e3a8a;
    font-weight: 600;
}

.advantage-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advantage-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #475569;
    font-size: 0.95rem;
}

.advantage-list li i {
    color: #10b981;
    font-size: 14px;
}

.ransomware-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
}

.ransomware-cta h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.ransomware-cta p {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

@media (max-width: 768px) {
    .ransomware-advantage-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Feature Stats - Premium Design */
.feature-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(14, 165, 233, 0.1);
}

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

.stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e3a8a, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Update the feature card hover effect for ransomware section */
#comparison .feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
    border: 1px solid rgba(14, 165, 233, 0.08);
}

#comparison .feature-card:hover {
    border-color: rgba(14, 165, 233, 0.2);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(14, 165, 233, 0.25);
}

/* Enhanced CTA for ransomware section */
.ransomware-cta {
    background: linear-gradient(135deg, #1e3a8a 0%, #0ea5e9 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.ransomware-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    to {
        left: 100%;
    }
}

.ransomware-cta h3 {
    color: white;
    font-size: 2rem;
    font-weight: 800;
}

.ransomware-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
}

.ransomware-cta .comparison-cta-btn-improved {
    background: white;
    color: #1e3a8a;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.ransomware-cta .comparison-cta-btn-improved:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.ransomware-cta .cta-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 15px;
}

/* Ransomware Defense Section - Unique Design */
.ransomware-defense-container {
    margin: 60px 0;
}

.defense-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.defense-item {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    border: 2px solid transparent;
    border-radius: 24px;
    padding: 35px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.defense-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #60a5fa, #0ea5e9, #0284c7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.quantum-defense {
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 50%, #dbeafe 100%);
    border-color: rgba(59, 130, 246, 0.1);
}

.ai-defense {
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 50%, #bae6fd 100%);
    border-color: rgba(14, 165, 233, 0.1);
}

.backup-defense {
    background: linear-gradient(135deg, #ffffff 0%, #cffafe 50%, #a5f3fc 100%);
    border-color: rgba(6, 182, 212, 0.1);
}

.recovery-defense {
    background: linear-gradient(135deg, #ffffff 0%, #e6fffa 50%, #ccfbf1 100%);
    border-color: rgba(20, 184, 166, 0.1);
}

.defense-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.quantum-defense:hover {
    border-color: rgba(59, 130, 246, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #dbeafe 100%);
}

.ai-defense:hover {
    border-color: rgba(14, 165, 233, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #bae6fd 100%);
}

.backup-defense:hover {
    border-color: rgba(6, 182, 212, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #a5f3fc 100%);
}

.recovery-defense:hover {
    border-color: rgba(20, 184, 166, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #ccfbf1 100%);
}

.defense-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.defense-icon-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    flex-shrink: 0;
}

.quantum-defense .defense-icon-wrapper {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.ai-defense .defense-icon-wrapper {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3);
}

.backup-defense .defense-icon-wrapper {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.3);
}

.recovery-defense .defense-icon-wrapper {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    box-shadow: 0 10px 25px rgba(20, 184, 166, 0.3);
}

.defense-title h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.defense-badge {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.defense-content {
    margin-left: 0;
}

.defense-highlight {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 500;
}

.defense-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.defense-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

.defense-features li i {
    color: #3b82f6;
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.defense-features strong {
    color: #334155;
    font-weight: 600;
}

/* Feature Grid with Aligned Dashes */
.defense-features-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 8px;
    align-items: flex-start;
    font-size: 0.9rem;
    line-height: 1.5;
}

.feature-label {
    color: #334155;
    font-weight: 600;
    white-space: nowrap;
}

.feature-desc {
    color: #64748b;
}

@media (max-width: 768px) {
    .feature-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }
    
    .feature-label {
        white-space: normal;
    }
}

/* Centered CTA Section */
.ransomware-action-center {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 50%, #bae6fd 100%);
    border-radius: 24px;
    border: 2px solid rgba(14, 165, 233, 0.1);
    position: relative;
    overflow: hidden;
}

.ransomware-action-center::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

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

.ransomware-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #1e3a8a, #0ea5e9);
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.ransomware-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.4);
    background: linear-gradient(135deg, #1e40af, #0284c7);
}

.ransomware-cta-button i {
    font-size: 1.3rem;
}

.action-subtitle {
    color: #475569;
    font-size: 1.05rem;
    margin-top: 20px;
    font-weight: 500;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 968px) {
    .defense-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .defense-header {
        flex-direction: column;
        text-align: center;
    }
    
    .defense-content {
        margin-left: 0;
    }
}

/* ================================================
   MOBILE RESPONSIVE STYLES
   Comprehensive mobile optimization
   ================================================ */

/* Mobile Navigation */
@media (max-width: 768px) {
    .landing-nav {
        padding: 10px 0;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo-icon {
        width: 48px;
        height: 48px;
    }
    
    .nav-brand {
        font-size: 18px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .nav-menu.mobile-open {
        display: flex;
    }
    
    .nav-cta {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* Mobile menu toggle button */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
    }
    
    .mobile-menu-toggle span {
        width: 25px;
        height: 3px;
        background: var(--text-primary-light);
        border-radius: 2px;
        transition: all 0.3s ease;
    }
}

/* Hero Section Mobile */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px 0;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        order: 2;
    }
    
    .hero-visual {
        order: 1;
    }
    
    .hero-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 12px;
        margin-bottom: 20px;
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .hero-shield {
        width: 200px;
        height: 200px;
    }
    
    .hero-shield i {
        font-size: 80px;
    }
}

/* Features Section Mobile */
@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }
    
    .section-container {
        padding: 0 15px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .feature-description {
        font-size: 14px;
    }
}

/* Pricing Section Mobile */
@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .price-amount {
        font-size: 36px;
    }
}

/* CTA Section Mobile */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-container {
        padding: 40px 20px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-subtitle {
        font-size: 14px;
    }
}

/* Footer Mobile */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Small Mobile (< 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .hero-shield {
        width: 160px;
        height: 160px;
    }
    
    .hero-shield i {
        font-size: 60px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-item {
        min-width: 80px;
    }
    
    .ransomware-cta-button {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .action-subtitle {
        font-size: 0.9rem;
    }
}
