:root {
  /* Light theme variables */
  --primary-color-light: #2563eb;
  --secondary-color-light: #0891b2;
  --accent-color-light: #f0f7ff;
  --text-color-light: #1e293b;
  --text-muted-light: #64748b;
  --background-color-light: #f8fafc;
  --card-bg-color-light: #ffffff;
  --success-color-light: #10b981;
  --primary-color-rgb-light: 37, 99, 235;
  --secondary-color-rgb-light: 8, 145, 178;

  /* Dark theme variables */
  --primary-color-dark: #3b82f6;
  --secondary-color-dark: #06b6d4;
  --accent-color-dark: #0f172a;
  --text-color-dark: #f1f5f9;
  --text-muted-dark: #cbd5e1;
  --background-color-dark: #0f172a;
  --card-bg-color-dark: #1e293b;
  --success-color-dark: #34d399;
  --primary-color-rgb-dark: 59, 130, 246;
  --secondary-color-rgb-dark: 6, 182, 212;

  /* Common variables */
  --border-radius-sm: 0.25rem;
  --border-radius: 0.5rem;
  --border-radius-lg: 1rem;
  --border-radius-xl: 1.5rem;
  --box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  --box-shadow-lg: 0 20px 30px rgba(0, 0, 0, 0.15);
}

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* Theme styles */
.theme-light {
  --primary-color: var(--primary-color-light);
  --secondary-color: var(--secondary-color-light);
  --accent-color: var(--accent-color-light);
  --text-color: var(--text-color-light);
  --text-muted: var(--text-muted-light);
  --background-color: var(--background-color-light);
  --card-bg-color: var(--card-bg-color-light);
  --success-color: var(--success-color-light);
  --primary-color-rgb: var(--primary-color-rgb-light);
  --secondary-color-rgb: var(--secondary-color-rgb-light);
}

.theme-dark {
  --primary-color: var(--primary-color-dark);
  --secondary-color: var(--secondary-color-dark);
  --accent-color: var(--accent-color-dark);
  --text-color: var(--text-color-dark);
  --text-muted: var(--text-muted-dark);
  --background-color: var(--background-color-dark);
  --card-bg-color: var(--card-bg-color-dark);
  --success-color: var(--success-color-dark);
  --primary-color-rgb: var(--primary-color-rgb-dark);
  --secondary-color-rgb: var(--secondary-color-rgb-dark);
}

@keyframes gradientBackground {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  background: linear-gradient(-45deg, 
    rgba(var(--primary-color-rgb), 0.05),
    rgba(var(--secondary-color-rgb), 0.05),
    rgba(var(--primary-color-rgb), 0.1),
    rgba(var(--secondary-color-rgb), 0.05));
  background-size: 400% 400%;
  animation: gradientBackground 15s ease infinite;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.loader {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: var(--background-color);
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader-inner {
  display: flex;
  gap: 1rem;
}

.loader-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  animation: loader-bounce 1.4s infinite ease-in-out both;
}

.loader-dot:nth-child(1) {
  animation-delay: -0.32s;
}

.loader-dot:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes loader-bounce {
  0%, 80%, 100% { 
    transform: scale(0);
  } 
  40% { 
    transform: scale(1.0);
  }
}

.content {
  opacity: 1; /* Make content visible by default */
  transition: opacity 0.5s ease;
}

/* Layout styles */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
}

.header-container {
  position: absolute;
  top: 1rem;
  right: 2rem;
  z-index: 10;
  display: flex;
  justify-content: flex-end;
}

.theme-switch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.theme-switch-label {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

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

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

input:checked + .slider:before {
  transform: translateX(30px);
}

.sun-icon,
.moon-icon {
  font-size: 1.2rem;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  position: relative;
  overflow: hidden;
  perspective: 1000px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  animation: floatAnimation 15s ease-in-out infinite;
}

.shape1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at center, rgba(var(--primary-color-rgb), 0.5), transparent 70%);
  top: -100px;
  right: -150px;
  animation-delay: 0s;
}

.shape2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at center, rgba(var(--secondary-color-rgb), 0.4), transparent 70%);
  bottom: -200px;
  left: -150px;
  animation-delay: -5s;
}

.shape3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle at center, rgba(var(--success-color-rgb, 16, 185, 129), 0.3), transparent 70%);
  top: 40%;
  right: 15%;
  animation-delay: -10s;
}

@keyframes floatAnimation {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

.circle-1, 
.circle-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.circle-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at center, rgba(var(--primary-color-rgb), 0.3), transparent 70%);
  top: -100px;
  right: -100px;
  animation: pulse 8s infinite alternate;
}

.circle-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at center, rgba(var(--secondary-color-rgb), 0.3), transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: pulse 8s infinite alternate-reverse;
}

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

.main-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-wrapper {
  width: 100%;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.card {
  background-color: var(--card-bg-color);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--box-shadow);
  backdrop-filter: blur(10px);
  padding: 3rem;
  width: 100%;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(var(--card-bg-color), 0.8),
    rgba(var(--card-bg-color), 0.9)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.theme-dark .card {
  background: linear-gradient(
    135deg,
    rgba(30, 41, 59, 0.8),
    rgba(30, 41, 59, 0.9)
  );
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.card:hover {
  transform: translateY(-10px) rotateX(2deg) rotateY(-1deg);
  box-shadow: 
    0 20px 30px rgba(0, 0, 0, 0.1),
    0 5px 15px rgba(var(--primary-color-rgb), 0.1);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent);
  transform: skewX(45deg) translateX(-150%);
  transition: all 0.6s ease;
}

.card:hover::after {
  transform: skewX(45deg) translateX(350%);
}

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

.globe-icon {
  width: 70px;
  height: 70px;
  color: var(--primary-color);
  filter: drop-shadow(0 4px 8px rgba(var(--primary-color-rgb), 0.4));
  animation: float 3s ease-in-out infinite;
}

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

h1 {
  font-size: 2.5rem;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  position: relative;
  transform: translateZ(20px);
}

.subtitle {
  margin-bottom: 3rem;
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  transform: translateZ(10px);
}

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

.feature-item {
  display: flex;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.1)
  );
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  box-shadow: 
    0 4px 6px rgba(0, 0, 0, 0.05),
    0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(var(--primary-color-rgb), 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s forwards;
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
}

.theme-dark .feature-item {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.05)
  );
  border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.feature-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 
    0 10px 15px rgba(0, 0, 0, 0.1),
    0 4px 6px rgba(var(--primary-color-rgb), 0.15);
  border-color: rgba(var(--primary-color-rgb), 0.3);
  z-index: 2;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    transparent,
    rgba(var(--primary-color-rgb), 0.05) 50%,
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.feature-item:hover::before {
  transform: translateX(100%);
}

.checkmark {
  color: var(--success-color);
  margin-right: 1rem;
  font-size: 1.2rem;
  background: linear-gradient(135deg, 
    rgba(var(--success-color-rgb, 16, 185, 129), 0.2),
    rgba(var(--success-color-rgb, 16, 185, 129), 0.1));
  height: 36px;
  width: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 2px 5px rgba(var(--success-color-rgb, 16, 185, 129), 0.2);
  transition: all 0.3s ease;
}

.feature-item:hover .checkmark {
  transform: scale(1.1);
  box-shadow: 0 3px 8px rgba(var(--success-color-rgb, 16, 185, 129), 0.3);
}

.feature-text {
  flex: 1;
}

.feature-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3rem;
  gap: 1.5rem;
  width: 100%;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, 
    transparent, 
    rgba(var(--primary-color-rgb), 0.2),
    rgba(var(--secondary-color-rgb), 0.2),
    transparent);
  top: -1.5rem;
  left: 10%;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  border-radius: 30px;
  padding: 0.9rem 2.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: default; /* Changed from pointer to default */
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 4px 15px rgba(var(--primary-color-rgb), 0.3),
    0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1;
  pointer-events: none; /* Disable clicks */
  animation: buttonPulse 3s infinite; /* Add pulse animation */
}

/* Remove hover effect since the button is not clickable */
.cta-button:hover {
  transform: none;
  box-shadow: 
    0 4px 15px rgba(var(--primary-color-rgb), 0.3),
    0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Add pulse animation for the button */
@keyframes buttonPulse {
  0% {
    box-shadow: 0 4px 15px rgba(var(--primary-color-rgb), 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 20px rgba(var(--primary-color-rgb), 0.6);
    transform: scale(1.03);
  }
  100% {
    box-shadow: 0 4px 15px rgba(var(--primary-color-rgb), 0.3);
    transform: scale(1);
  }
}

.cta-button::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
  transform: rotate(45deg);
  z-index: -1;
  animation: shine 8s infinite;
  opacity: 0;
}

@keyframes shine {
  0%, 100% {
    opacity: 0;
    transform: rotate(45deg) translateX(-150%);
  }
  10% {
    opacity: 0.8;
  }
  45% {
    opacity: 0.2;
  }
  50% {
    transform: rotate(45deg) translateX(150%);
    opacity: 0;
  }
}

.contact {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 1rem;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

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

.contact-icon {
  margin-right: 0.5rem;
  transition: transform 0.3s ease;
}

.contact:hover .contact-icon {
  transform: rotate(-15deg);
}

.pricing-item {
  font-weight: normal;
  transition: all 0.3s ease;
}

.pricing-highlight {
  font-weight: 700;
  font-size: 1.15em;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: all 0.3s ease;
  display: inline-block;
}

.feature-item:hover .pricing-highlight {
  transform: scale(1.05);
  text-shadow: 0 2px 10px rgba(var(--primary-color-rgb), 0.2);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Make sure card is initially visible regardless of .reveal class */
.card.reveal {
  opacity: 1;
  transform: none;
}

/* Parallax elements */
.parallax {
  transition: transform 0.1s ease-out;
}

/* Cursor effects */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    rgba(var(--primary-color-rgb), 0.15),
    transparent 70%
  );
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary-color);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease-out;
}

/* Responsive styles */
@media (max-width: 992px) {
  .card {
    padding: 2.5rem;
  }
  
  .features {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  .features {
    grid-template-columns: 1fr;
  }
  
  .card {
    padding: 2rem;
  }
  
  .header {
    flex-direction: column;
    text-align: center;
  }
  
  .header-container {
    position: relative;
    top: 0;
    right: 0;
    justify-content: center;
    margin-bottom: 2rem;
  }
  
  .hero {
    min-height: auto;
  }
  
  .globe-icon {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 1rem;
  }
  
  h1 {
    font-size: 1.7rem;
  }
  
  .card {
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
  }
  
  .feature-item {
    padding: 1.25rem;
  }
  
  .checkmark {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }
  
  .cta-button {
    padding: 0.8rem 1.8rem;
  }
}