@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Reset & base */
* {
  margin: 0; padding: 0; box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* Scale the entire document to 80% */
  zoom: 0.8;
  -moz-transform: scale(0.8);
  -moz-transform-origin: 0 0;
  -webkit-transform: scale(0.8);
  -webkit-transform-origin: 0 0;
  transform: scale(0.8);
  transform-origin: 0 0;
}

/* Alternative scaling method for better browser compatibility */
body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d0d0d 100%);
  color: #f8fafc;
  line-height: 1.7;
  min-height: 100vh;
  background-attachment: fixed;
  animation: fadeIn 1s ease forwards;
  overflow-x: hidden;
  position: relative;
  /* Additional scaling fallback */
  width: 125%; /* 100% / 0.8 to compensate for scaling */
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}

/* Global Animated Background Particles - Enhanced for Full Coverage */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  opacity: 0.6;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float 20s infinite linear;
}

/* More diverse particle types for enhanced visual appeal */
.particle:nth-child(6n+1) {
  width: 3px;
  height: 3px;
  background: #00c8ff;
  box-shadow: 0 0 8px #00c8ff, 0 0 16px #00c8ff40;
}

.particle:nth-child(6n+2) {
  width: 2px;
  height: 2px;
  background: #66d9ff;
  box-shadow: 0 0 6px #66d9ff, 0 0 12px #66d9ff40;
}

.particle:nth-child(6n+3) {
  width: 4px;
  height: 4px;
  background: #00ffff;
  box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff30;
}

.particle:nth-child(6n+4) {
  width: 1px;
  height: 1px;
  background: #ffffff;
  box-shadow: 0 0 4px #ffffff, 0 0 8px #ffffff50;
}

.particle:nth-child(6n+5) {
  width: 2.5px;
  height: 2.5px;
  background: #99e6ff;
  box-shadow: 0 0 7px #99e6ff, 0 0 14px #99e6ff40;
}

.particle:nth-child(6n) {
  width: 3.5px;
  height: 3.5px;
  background: #33ccff;
  box-shadow: 0 0 9px #33ccff, 0 0 18px #33ccff35;
}

/* Enhanced floating animations with more variety */
@keyframes float {
  0% { 
    transform: translateY(100vh) translateX(0px) scale(0) rotate(0deg); 
    opacity: 0;
  }
  5% { 
    transform: translateY(95vh) translateX(5px) scale(0.3) rotate(45deg); 
    opacity: 0.6;
  }
  15% { 
    transform: translateY(85vh) translateX(15px) scale(1) rotate(90deg); 
    opacity: 1;
  }
  50% { 
    transform: translateY(50vh) translateX(-8px) scale(1.2) rotate(180deg); 
    opacity: 0.9;
  }
  85% { 
    transform: translateY(15vh) translateX(20px) scale(0.8) rotate(270deg); 
    opacity: 0.7;
  }
  100% { 
    transform: translateY(-10vh) translateX(0px) scale(0) rotate(360deg); 
    opacity: 0;
  }
}

@keyframes floatSlow {
  0% { 
    transform: translateY(100vh) translateX(0px) scale(0) rotate(0deg); 
    opacity: 0;
  }
  8% { 
    transform: translateY(92vh) translateX(-8px) scale(0.4) rotate(30deg); 
    opacity: 0.5;
  }
  20% { 
    transform: translateY(80vh) translateX(12px) scale(1) rotate(60deg); 
    opacity: 1;
  }
  50% { 
    transform: translateY(50vh) translateX(-15px) scale(1.1) rotate(180deg); 
    opacity: 0.95;
  }
  80% { 
    transform: translateY(20vh) translateX(25px) scale(0.9) rotate(300deg); 
    opacity: 0.8;
  }
  100% { 
    transform: translateY(-10vh) translateX(0px) scale(0) rotate(360deg); 
    opacity: 0;
  }
}

@keyframes floatFast {
  0% { 
    transform: translateY(100vh) translateX(0px) scale(0) rotate(0deg); 
    opacity: 0;
  }
  3% { 
    transform: translateY(97vh) translateX(12px) scale(0.2) rotate(60deg); 
    opacity: 0.4;
  }
  12% { 
    transform: translateY(88vh) translateX(-10px) scale(1) rotate(120deg); 
    opacity: 1;
  }
  45% { 
    transform: translateY(55vh) translateX(18px) scale(1.3) rotate(200deg); 
    opacity: 0.8;
  }
  75% { 
    transform: translateY(25vh) translateX(-22px) scale(0.7) rotate(280deg); 
    opacity: 0.6;
  }
  100% { 
    transform: translateY(-10vh) translateX(0px) scale(0) rotate(360deg); 
    opacity: 0;
  }
}

@keyframes floatZigzag {
  0% { 
    transform: translateY(100vh) translateX(0px) scale(0) rotate(0deg); 
    opacity: 0;
  }
  10% { 
    transform: translateY(90vh) translateX(20px) scale(0.5) rotate(45deg); 
    opacity: 0.8;
  }
  25% { 
    transform: translateY(75vh) translateX(-15px) scale(1) rotate(90deg); 
    opacity: 1;
  }
  40% { 
    transform: translateY(60vh) translateX(25px) scale(1.1) rotate(135deg); 
    opacity: 0.9;
  }
  60% { 
    transform: translateY(40vh) translateX(-20px) scale(1.2) rotate(180deg); 
    opacity: 0.85;
  }
  80% { 
    transform: translateY(20vh) translateX(30px) scale(0.8) rotate(270deg); 
    opacity: 0.7;
  }
  100% { 
    transform: translateY(-10vh) translateX(0px) scale(0) rotate(360deg); 
    opacity: 0;
  }
}

/* Apply different animations for natural variety */
.particle:nth-child(8n+1) {
  animation: float 28s infinite linear;
}

.particle:nth-child(8n+2) {
  animation: floatSlow 35s infinite linear;
}

.particle:nth-child(8n+3) {
  animation: floatFast 18s infinite linear;
}

.particle:nth-child(8n+4) {
  animation: floatZigzag 25s infinite linear;
}

.particle:nth-child(8n+5) {
  animation: float 22s infinite linear;
}

.particle:nth-child(8n+6) {
  animation: floatSlow 30s infinite linear;
}

.particle:nth-child(8n+7) {
  animation: floatFast 20s infinite linear;
}

.particle:nth-child(8n) {
  animation: floatZigzag 32s infinite linear;
}

/* Section-specific particle effects */
.section-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.3;
  overflow: hidden;
}

.section-particle {
  position: absolute;
  border-radius: 50%;
  background: currentColor;
  animation: sectionFloat 15s infinite ease-in-out;
}

/* Section particles with different colors per section */
.hero .section-particle {
  color: #00c8ff;
  box-shadow: 0 0 6px currentColor;
}

.trust-section .section-particle {
  color: #22c55e;
  box-shadow: 0 0 6px currentColor;
}

.pricing-calculator .section-particle {
  color: #f59e0b;
  box-shadow: 0 0 6px currentColor;
}

@keyframes sectionFloat {
  0%, 100% { 
    transform: translateY(0px) translateX(0px) scale(0.5);
    opacity: 0.2;
  }
  25% { 
    transform: translateY(-20px) translateX(15px) scale(1);
    opacity: 0.6;
  }
  50% { 
    transform: translateY(-40px) translateX(-10px) scale(0.8);
    opacity: 0.8;
  }
  75% { 
    transform: translateY(-20px) translateX(20px) scale(1.2);
    opacity: 0.4;
  }
}

/* Pulse effect for special particles */
.particle:nth-child(12n) {
  animation: float 20s infinite linear, pulse 4s infinite ease-in-out;
}

.particle:nth-child(15n) {
  animation: floatSlow 30s infinite linear, pulse 6s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% { 
    opacity: 0.3;
    transform: scale(1);
  }
  50% { 
    opacity: 1;
    transform: scale(1.5);
  }
}

/* Enhanced mobile responsiveness */
@media (max-width: 768px) {
  html {
    zoom: 0.65; /* Adjusted for mobile from 0.6 to 0.65 */
  }
  
  body {
    width: 153.85%; /* Adjust compensation for 65% zoom */
  }
  
  .particles {
    opacity: 0.4;
  }
  
  /* Reduce particle count on mobile for performance */
  .particle:nth-child(n+31) {
    display: none;
  }
  
  .section-particles {
    opacity: 0.2;
  }
}

@media (max-width: 480px) {
  html {
    zoom: 0.6; /* Adjusted for very small screens from 0.55 to 0.6 */
  }
  
  body {
    width: 166.67%; /* Adjust compensation for 60% zoom */
  }
  
  .particles {
    opacity: 0.3;
  }
  
  .particle:nth-child(n+21) {
    display: none;
  }
}

/* Interactive hover effects for particles */
.particle:hover {
  animation-play-state: paused;
  transform: scale(2) !important;
  opacity: 1 !important;
}

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Header Navigation */
.main-header {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 200, 255, 0.1);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.5rem;
  color: #00c8ff;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #00c8ff, #66d9ff);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 900;
  font-size: 1.2rem;
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

nav a:hover {
  color: #00c8ff;
  background: rgba(0, 200, 255, 0.1);
  transform: translateY(-2px);
}

nav a.cta {
  background: linear-gradient(135deg, #00c8ff, #66d9ff);
  color: #000;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(0, 200, 255, 0.3);
}

nav a.cta:hover {
  background: linear-gradient(135deg, #66d9ff, #00ffff);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 200, 255, 0.4);
}

/* Mobile menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #cbd5e1;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Enhanced section styling with particle effects */
section {
  background: rgba(30, 30, 30, 0.4);
  backdrop-filter: blur(10px);
  padding: 4rem 3rem;
  border-radius: 20px;
  margin-bottom: 4rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00c8ff, transparent);
  transition: left 0.8s ease;
  z-index: 2;
}

section:hover::before {
  left: 100%;
}

section:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border-color: rgba(0, 200, 255, 0.2);
}

/* Enhanced Hero with more particle effects */
.hero {
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, rgba(0, 200, 255, 0.05), rgba(102, 217, 255, 0.02));
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(0, 200, 255, 0.1), transparent, rgba(102, 217, 255, 0.05), transparent);
  animation: rotate 30s linear infinite;
  z-index: -1;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-content {
  z-index: 2;
  max-width: 900px;
}

.hero h1 {
  font-weight: 900;
  font-size: 4rem;
  background: linear-gradient(45deg, #00c8ff, #66d9ff, #00ffff, #ffffff);
  background-size: 300% 300%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero p {
  font-size: 1.4rem;
  color: #94a3b8;
  font-weight: 500;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn-primary {
  background: linear-gradient(135deg, #00c8ff, #66d9ff);
  color: #000;
  border: none;
  padding: 1rem 2.5rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 25px rgba(0, 200, 255, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #66d9ff, #00ffff);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 200, 255, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 2.5rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(0, 200, 255, 0.5);
  transform: translateY(-3px);
}

/* Trust Indicators */
.trust-section {
  background: linear-gradient(135deg, rgba(0, 200, 255, 0.1), rgba(102, 217, 255, 0.05));
  border: 2px solid rgba(0, 200, 255, 0.2);
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.trust-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(0, 200, 255, 0.3);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.trust-badge::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(0, 200, 255, 0.1), transparent);
  transform: rotate(-45deg);
  transition: transform 0.6s ease;
}

.trust-badge:hover::before {
  transform: rotate(45deg);
}

.trust-badge:hover {
  background: rgba(0, 200, 255, 0.15);
  border-color: rgba(0, 200, 255, 0.5);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 200, 255, 0.2);
}

.trust-number {
  font-size: 3rem;
  font-weight: 900;
  color: #00c8ff;
  display: block;
  position: relative;
  z-index: 2;
}

.trust-label {
  font-weight: 600;
  color: #cbd5e1;
  margin-top: 0.5rem;
  position: relative;
  z-index: 2;
}

/* Team Profiles */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.team-member {
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.8), rgba(50, 50, 50, 0.4));
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.team-member::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00c8ff, #66d9ff);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.team-member:hover::before {
  transform: scaleX(1);
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 200, 255, 0.2);
}

.member-avatar {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #00c8ff, #66d9ff);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 900;
  color: #000;
}

.member-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #00c8ff;
  margin-bottom: 0.5rem;
}

.member-rank {
  color: #fbbf24;
  font-weight: 600;
  margin-bottom: 1rem;
}

.member-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #00c8ff;
}

.stat-label {
  font-size: 0.85rem;
  color: #94a3b8;
}

/* Proof Section */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.proof-card {
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.8), rgba(50, 50, 50, 0.4));
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  position: relative;
}

.proof-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 200, 255, 0.2);
}

.proof-image {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #1e293b, #334155);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00c8ff;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.proof-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.proof-card:hover .proof-image::before {
  left: 100%;
}

.proof-content {
  padding: 1.5rem;
}

.proof-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #00c8ff;
  margin-bottom: 0.5rem;
}

.proof-description {
  color: #94a3b8;
  line-height: 1.6;
}

/* Process Steps - Fixed Centering */
.process-container {
  position: relative;
  margin: 2rem auto;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-timeline {
  position: absolute;
  left: 50%;
  top: 50px;
  height: calc(100% - 100px);
  width: 2px;
  background: linear-gradient(to bottom, #00c8ff, #66d9ff);
  transform: translateX(-50%);
  z-index: 1;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: relative;
  z-index: 2;
  align-items: center;
  width: 100%;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  width: 100%;
  max-width: 450px;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00c8ff, #66d9ff);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 200, 255, 0.3);
  z-index: 3;
  position: relative;
  border: 4px solid rgba(10, 10, 10, 1);
  margin-bottom: 1rem;
}

.step-content {
  width: 100%;
  background: rgba(30, 30, 30, 0.6);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.step-content:hover {
  background: rgba(0, 200, 255, 0.1);
  transform: translateY(-5px);
  border-color: rgba(0, 200, 255, 0.3);
  box-shadow: 0 15px 35px rgba(0, 200, 255, 0.2);
}

.step-title {
  color: #00c8ff;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.step-description {
  color: #cbd5e1;
  line-height: 1.6;
  font-size: 0.95rem;
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
}

/* Enhanced Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.feature {
  background: rgba(30, 30, 30, 0.6);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00c8ff, #66d9ff);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature:hover::before {
  transform: scaleX(1);
}

.feature:hover {
  transform: translateY(-10px);
  background: rgba(0, 200, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 200, 255, 0.2);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
}

.feature-title {
  color: #00c8ff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-description {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Section headings */
h2 {
  color: #00c8ff;
  margin-bottom: 3rem;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  position: relative;
  letter-spacing: -1px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #00c8ff, #66d9ff);
  border-radius: 2px;
}

h3 {
  color: #00c8ff;
  margin-bottom: 1rem;
  font-weight: 700;
}

/* Enhanced Pricing Calculator */
.pricing-calculator {
  background: linear-gradient(135deg, rgba(0, 200, 255, 0.1), rgba(102, 217, 255, 0.05));
  border: 2px solid rgba(0, 200, 255, 0.3);
  padding: 3rem;
  border-radius: 20px;
  margin: 3rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.calculator-inputs {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.input-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.input-group label {
  color: #00c8ff;
  font-weight: 700;
  font-size: 1.2rem;
}

.input-group input {
  background: rgba(30, 30, 30, 0.8);
  border: 2px solid rgba(0, 200, 255, 0.3);
  color: #fff;
  padding: 1.2rem;
  border-radius: 12px;
  font-size: 1.2rem;
  width: 160px;
  text-align: center;
  transition: all 0.3s ease;
  font-weight: 600;
}

.input-group input:focus {
  border-color: #00c8ff;
  outline: none;
  box-shadow: 0 0 20px rgba(0, 200, 255, 0.4);
  transform: scale(1.05);
}

.progress-container {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin: 2rem 0;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #00c8ff, #66d9ff);
  width: 0%;
  transition: width 1s ease;
  border-radius: 10px;
}

#priceResult {
  font-weight: 800;
  color: #00ffff;
  font-size: 2rem;
  margin-top: 2rem;
  padding: 2rem;
  background: rgba(0, 200, 255, 0.1);
  border-radius: 15px;
  border: 2px solid rgba(0, 200, 255, 0.3);
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* Pricing Table */
.pricing-table {
  overflow-x: auto;
  margin-top: 3rem;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(30, 30, 30, 0.8);
  border-radius: 15px;
  overflow: hidden;
}

th, td {
  padding: 1.5rem 1rem;
  text-align: center;
}

th {
  background: linear-gradient(135deg, #00c8ff, #66d9ff);
  color: #000;
  font-weight: 700;
  font-size: 1.1rem;
}

tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

tbody tr:hover {
  background: rgba(0, 200, 255, 0.1);
}

td {
  color: #cbd5e1;
  font-weight: 500;
}

td:first-child {
  font-weight: 600;
  color: #00c8ff;
}

/* Enhanced Testimonials */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.review {
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.8), rgba(50, 50, 50, 0.4));
  padding: 2.5rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.review::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 25px;
  font-size: 5rem;
  color: rgba(0, 200, 255, 0.2);
  font-family: serif;
  line-height: 1;
}

.review:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 200, 255, 0.2);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.stars {
  color: #fbbf24;
  font-size: 1.4rem;
  filter: drop-shadow(0 0 5px rgba(251, 191, 36, 0.5));
}

.review-meta {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
}

.review-content {
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.review-author {
  color: #00c8ff;
  font-weight: 600;
  text-align: right;
  position: relative;
  z-index: 2;
}

/* Enhanced FAQ */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(0, 200, 255, 0.3);
}

.faq-question {
  width: 100%;
  background: rgba(30, 30, 30, 0.8);
  color: #fff;
  border: none;
  padding: 2rem;
  text-align: left;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  font-weight: 600;
}

.faq-question:hover {
  background: rgba(0, 200, 255, 0.1);
  color: #00c8ff;
}

.faq-question[aria-expanded="true"] {
  background: linear-gradient(135deg, #00c8ff, #66d9ff);
  color: #000;
}

.faq-icon {
  font-weight: 900;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  background: rgba(20, 20, 20, 0.9);
  color: #cbd5e1;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  line-height: 1.7;
}

.faq-answer.open {
  padding: 2rem;
  max-height: 400px;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-form {
  background: rgba(30, 30, 30, 0.6);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  color: #00c8ff;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(20, 20, 20, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 1.2rem;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #00c8ff;
  outline: none;
  box-shadow: 0 0 20px rgba(0, 200, 255, 0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-methods {
  background: rgba(30, 30, 30, 0.6);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  background: rgba(0, 200, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 200, 255, 0.2);
}

.contact-method:hover {
  background: rgba(0, 200, 255, 0.2);
  transform: translateX(10px);
}

.contact-icon {
  font-size: 1.5rem;
  color: #00c8ff;
}

.contact-info h4 {
  color: #00c8ff;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-info p {
  color: #cbd5e1;
  margin: 0;
}

.contact-info a {
  color: #66d9ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #00ffff;
}

/* Live Chat Widget */
.chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #00c8ff, #66d9ff);
  color: #000;
  border: none;
  padding: 20px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 200, 255, 0.4);
  transition: all 0.3s ease;
  z-index: 1000;
  animation: pulse 3s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 8px 25px rgba(0, 200, 255, 0.4); }
  50% { box-shadow: 0 8px 35px rgba(0, 200, 255, 0.7), 0 0 0 0 rgba(0, 200, 255, 0.4); }
  100% { box-shadow: 0 8px 25px rgba(0, 200, 255, 0.4); }
}

.chat-widget:hover {
  transform: scale(1.1);
  animation: none;
  box-shadow: 0 12px 35px rgba(0, 200, 255, 0.5);
}

/* Notification */
.notification {
  position: fixed;
  top: 30px;
  right: 30px;
  background: linear-gradient(135deg, #00c8ff, #66d9ff);
  color: #000;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 200, 255, 0.4);
  transform: translateX(400px);
  transition: transform 0.4s ease;
  z-index: 1001;
}

.notification.show {
  transform: translateX(0);
}

/* Footer */
footer {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(20, 20, 20, 0.9));
  backdrop-filter: blur(20px);
  padding: 4rem 2rem 2rem;
  text-align: center;
  border-top: 2px solid rgba(0, 200, 255, 0.2);
  margin-top: 5rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.footer-links a {
  color: #00c8ff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: #66d9ff;
  background: rgba(0, 200, 255, 0.1);
  transform: translateY(-3px);
}

.footer-disclaimer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #64748b;
  font-size: 0.9rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Accounts Section Styles */
.accounts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin: 3rem 0;
}

.account-card {
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.9), rgba(50, 50, 50, 0.6));
  border-radius: 20px;
  padding: 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.account-card.premium {
  border: 2px solid rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, rgba(40, 35, 20, 0.9), rgba(60, 50, 30, 0.6));
}

.account-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00c8ff, transparent);
  transition: left 0.8s ease;
}

.account-card.premium::before {
  background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

.account-card:hover::before {
  left: 100%;
}

.account-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 200, 255, 0.2);
  border-color: rgba(0, 200, 255, 0.4);
}

.account-card.premium:hover {
  box-shadow: 0 25px 50px rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.6);
}

.account-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.premium-badge {
  background: linear-gradient(135deg, #ffd700, #ffed4e) !important;
  color: #000 !important;
}

.account-rank-display {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(0, 200, 255, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(0, 200, 255, 0.2);
}

.account-card.premium .account-rank-display {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.2);
}

.rank-icon {
  font-size: 3rem;
  filter: drop-shadow(0 0 10px currentColor);
}

.rank-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #00c8ff;
  margin-bottom: 0.25rem;
}

.account-card.premium .rank-title {
  color: #ffd700;
}

.rank-score {
  font-size: 1.1rem;
  color: #94a3b8;
  font-weight: 600;
}

.account-features {
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: #cbd5e1;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-icon {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.account-pricing {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
}

.original-price {
  font-size: 1.2rem;
  color: #64748b;
  text-decoration: line-through;
  margin-bottom: 0.5rem;
}

.current-price {
  font-size: 3rem;
  font-weight: 900;
  color: #00c8ff;
  margin-bottom: 0.5rem;
}

.account-card.premium .current-price {
  color: #ffd700;
}

.savings {
  color: #22c55e;
  font-weight: 700;
  font-size: 1.1rem;
}

.account-guarantees {
  margin-bottom: 2rem;
}

.guarantee {
  color: #22c55e;
  font-weight: 600;
  padding: 0.5rem 0;
  font-size: 0.95rem;
}

.buy-account-btn {
  width: 100%;
  background: linear-gradient(135deg, #00c8ff, #66d9ff);
  color: #000;
  border: none;
  padding: 1.25rem 2rem;
  font-weight: 800;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 25px rgba(0, 200, 255, 0.3);
}

.premium-btn {
  background: linear-gradient(135deg, #ffd700, #ffed4e) !important;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3) !important;
}

.buy-account-btn:hover {
  background: linear-gradient(135deg, #66d9ff, #00ffff);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 200, 255, 0.4);
}

.premium-btn:hover {
  background: linear-gradient(135deg, #ffed4e, #fff59d) !important;
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4) !important;
}

.account-info-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.info-card {
  background: rgba(30, 30, 30, 0.6);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.info-card:hover {
  background: rgba(0, 200, 255, 0.1);
  border-color: rgba(0, 200, 255, 0.3);
  transform: translateY(-5px);
}

.info-card h3 {
  color: #00c8ff;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.info-card p {
  color: #cbd5e1;
  line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .process-timeline {
    display: none;
  }
  
  .step {
    flex-direction: column !important;
    text-align: center;
  }
}

@media (max-width: 768px) {
  html {
    zoom: 0.65; /* Adjusted for mobile from 0.65 to match 80% scaling */
  }
  
  body {
    width: 153.85%; /* Adjust compensation for 65% zoom */
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .main-header {
    padding: 1rem;
  }
  
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  section {
    padding: 2rem 1.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .calculator-inputs {
    flex-direction: column;
    gap: 2rem;
  }
  
  .trust-badges {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  
  .features {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .review-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .proof-grid {
    grid-template-columns: 1fr;
  }
  
  .accounts-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .account-card {
    padding: 2rem;
  }
  
  .account-rank-display {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .current-price {
    font-size: 2.5rem !important;
  }
  
  .chat-widget {
    bottom: 20px;
    right: 20px;
    padding: 15px;
    font-size: 1.2rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  html {
    zoom: 0.6; /* Adjusted for very small screens to match 80% scaling */
  }
  
  body {
    width: 166.67%; /* Adjust compensation for 60% zoom */
  }
}

/* Loading states */
.loading {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 3px solid rgba(0, 200, 255, 0.3);
  border-radius: 50%;
  border-top-color: #00c8ff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Utility classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 2rem; }

/* Fix bottom spacing */
main.container {
  margin-bottom: 0;
}

main.container section:last-of-type {
  margin-bottom: 2rem;
}

footer {
  margin-top: 3rem;
}

/* Remove excessive margins */
body {
  padding-bottom: 0;
}


