/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
  cursor: none; /* Hide default cursor for custom trail */
}

/* Custom Properties */
:root {
  --primary-color: #1877f2;
  --secondary-color: #4e54c8;
  --accent-color: #00d4ff;
  --text-primary: #ffffff;
  --text-secondary: #b8b8b8;
  --bg-primary: #0f0f23;
  --bg-secondary: #1a1a2e;
  --bg-tertiary: #16213e;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow-light: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.5);
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
}

/* Particle Canvas */
.particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
}

/* Cursor Trail */
.cursor-trail {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: all 0.1s ease;
  mix-blend-mode: screen;
}

.cursor-trail:nth-child(2) {
  width: 12px;
  height: 12px;
  background: var(--primary-color);
  transition-delay: 0.05s;
}

.cursor-trail:nth-child(3) {
  width: 16px;
  height: 16px;
  background: var(--secondary-color);
  transition-delay: 0.1s;
}

/* Interactive Background Elements */
.interactive-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  font-size: 2rem;
  color: var(--accent-color);
  opacity: 0.3;
  animation: float-around 20s infinite linear;
  transition: all 0.3s ease;
}

.floating-element:hover {
  opacity: 0.8;
  transform: scale(1.2);
  color: var(--primary-color);
}

.floating-element:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.floating-element:nth-child(2) { top: 20%; right: 15%; animation-delay: -5s; }
.floating-element:nth-child(3) { top: 60%; left: 5%; animation-delay: -10s; }
.floating-element:nth-child(4) { top: 40%; right: 10%; animation-delay: -15s; }
.floating-element:nth-child(5) { bottom: 30%; left: 20%; animation-delay: -7s; }
.floating-element:nth-child(6) { bottom: 20%; right: 25%; animation-delay: -12s; }

@keyframes float-around {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(100px, -50px) rotate(90deg); }
  50% { transform: translate(50px, 100px) rotate(180deg); }
  75% { transform: translate(-50px, 50px) rotate(270deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 15, 35, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.nav-logo i {
  font-size: 2rem;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-menu a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: var(--text-primary);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 2rem;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-primary);
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.hero-bg-shape:nth-child(1) {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.hero-bg-shape:nth-child(2) {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
}

.hero-bg-shape:nth-child(3) {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-text {
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-line {
  display: block;
  animation: slideInLeft 1s ease-out;
}

.title-line:nth-child(2) {
  animation-delay: 0.2s;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  animation: slideInLeft 1s ease-out 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: slideInLeft 1s ease-out 0.6s both;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.cta-btn.primary {
  background: var(--gradient-primary);
  color: var(--text-primary);
  box-shadow: var(--shadow-light);
}

.cta-btn.secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--glass-border);
  backdrop-filter: blur(10px);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-heavy);
}

.cta-btn.primary:hover {
  background: var(--gradient-accent);
}

.cta-btn.secondary:hover {
  background: var(--glass-bg);
  border-color: var(--primary-color);
}

.cta-btn.large {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
}

/* 3D Container */
.hero-3d {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Debug and ensure visibility of 3D container */
.three-d-container {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: visible; /* Changed from hidden to visible */
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-heavy);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: all 0.3s ease;
  position: relative; /* Added position relative */
  display: flex; /* Added display flex */
  align-items: center; /* Added center alignment */
  justify-content: center; /* Added center justification */
  visibility: visible !important; /* Force visibility */
  opacity: 1 !important; /* Force opacity */
  min-height: 400px; /* Ensure minimum height */
}

/* Fallback for browsers that don't support backdrop-filter */
@supports not (backdrop-filter: blur(20px)) {
  .three-d-container {
    background: rgba(255, 255, 255, 0.15);
  }
}

/* Ensure cube is visible even if container has issues */
.three-d-cube {
  width: 200px;
  height: 200px;
  position: relative;
  transform-style: preserve-3d;
  animation: rotate 10s infinite linear;
  margin: 0 auto;
  z-index: 5; /* Added z-index */
  visibility: visible !important;
  opacity: 1 !important;
  display: block !important;
}

/* Debug outline for troubleshooting */
.debug .three-d-container {
  border: 3px solid red !important;
  background: rgba(255, 0, 0, 0.1) !important;
}

.debug .three-d-cube {
  border: 2px solid blue !important;
  background: rgba(0, 0, 255, 0.1) !important;
}

.three-d-container:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.three-d-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.three-d-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 10; /* Added z-index */
}

.floating-card {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 500;
  animation: float 4s ease-in-out infinite;
}

.floating-card:nth-child(1) {
  top: 10%;
  right: -20px;
  animation-delay: 0s;
}

.floating-card:nth-child(2) {
  bottom: 20%;
  left: -30px;
  animation-delay: 2s;
}

.floating-card i {
  color: var(--accent-color);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 30px;
  height: 30px;
  border: 2px solid var(--text-secondary);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* Interactive Stats Section */
.interactive-stats {
  padding: 4rem 2rem;
  background: var(--bg-secondary);
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.stat-item {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-heavy);
}

.stat-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-primary);
  box-shadow: var(--shadow-light);
}

.stat-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.stat-content p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.stat-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--gradient-primary);
  width: 0;
  transition: width 2s ease;
}

/* Features Section */
.features {
  padding: 6rem 2rem;
  background: var(--bg-secondary);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::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.5s ease;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-heavy);
  border-color: var(--primary-color);
}

.feature-hover-effect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(24, 119, 242, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.feature-card:hover .feature-hover-effect {
  opacity: 1;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-primary);
  box-shadow: var(--shadow-light);
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.feature-stats {
  display: flex;
  justify-content: center;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Timeline Section */
.timeline-section {
  padding: 6rem 2rem;
  background: var(--bg-tertiary);
}

.timeline-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.timeline-container h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 4rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-primary);
  z-index: 2;
  position: relative;
  box-shadow: var(--shadow-light);
}

.timeline-content {
  flex: 1;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  padding: 2rem;
  margin: 0 2rem;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-heavy);
}

.timeline-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.timeline-content p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 2rem;
  background: var(--bg-secondary);
}

.testimonials-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonials-container h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 4rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonials-slider {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.testimonial-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s ease;
}

.testimonial-item.active {
  opacity: 1;
  transform: translateX(0);
}

.testimonial-content {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
}

.stars {
  margin-bottom: 1.5rem;
}

.stars i {
  color: #ffd700;
  font-size: 1.5rem;
  margin: 0 0.2rem;
}

.testimonial-content p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-primary);
}

.author-info h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.author-info span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

/* Benefits Section */
.benefits {
  padding: 6rem 2rem;
  background: var(--bg-tertiary);
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.benefits-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(10px);
  border-color: var(--primary-color);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-primary);
  flex-shrink: 0;
}

.benefit-text h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.benefit-text p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Visual Flow */
.benefits-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-container {
  width: 100%;
  max-width: 400px;
}

.data-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.flow-item:hover {
  transform: scale(1.1);
  border-color: var(--accent-color);
}

.flow-item i {
  font-size: 2rem;
  color: var(--accent-color);
}

.flow-item span {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.flow-arrow {
  width: 40px;
  height: 2px;
  background: var(--gradient-primary);
  position: relative;
}

.flow-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 0;
  height: 0;
  border-left: 8px solid var(--primary-color);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

/* CTA Section */
.cta-section {
  padding: 6rem 2rem;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.cta-bg-shape {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-primary);
  opacity: 0.1;
  animation: float 8s ease-in-out infinite;
}

.cta-bg-shape:nth-child(1) {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.cta-bg-shape:nth-child(2) {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: -50px;
  animation-delay: 4s;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cta-offer {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
  padding: 1rem 2rem;
  border-radius: 50px;
  display: inline-block;
  margin-top: 1rem;
  animation: pulse 2s infinite;
}

.cta-offer p {
  color: white;
  margin: 0;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.cta-offer i {
  animation: fire 1s infinite alternate;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes fire {
  0% { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1.1) rotate(5deg); }
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.footer-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.footer-section a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 0.8rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-color);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 2rem;
  text-align: center;
  color: var(--text-secondary);
}

/* 3D Cube Styles */
.three-d-cube {
  width: 200px;
  height: 200px;
  position: relative;
  transform-style: preserve-3d;
  animation: rotate 10s infinite linear;
  margin: 0 auto;
  z-index: 5; /* Added z-index */
}

.cube-face {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 2px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
  z-index: 6; /* Added z-index */
}

.cube-face span {
  font-size: 1rem;
  margin-top: 0.5rem;
  color: var(--text-primary);
  font-weight: 600;
}

.cube-face.front { transform: translateZ(100px); }
.cube-face.back { transform: translateZ(-100px) rotateY(180deg); }
.cube-face.right { transform: translateX(100px) rotateY(90deg); }
.cube-face.left { transform: translateX(-100px) rotateY(-90deg); }
.cube-face.top { transform: translateY(-100px) rotateX(90deg); }
.cube-face.bottom { transform: translateY(100px) rotateX(-90deg); }

@keyframes rotate {
  0% { transform: rotateX(0deg) rotateY(0deg); }
  100% { transform: rotateX(360deg) rotateY(360deg); }
}

.cube-info {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  gap: 1rem;
  z-index: 7; /* Added z-index */
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
}

/* Detailed Features Section */
.detailed-features {
  padding: 6rem 2rem;
  background: var(--bg-tertiary);
}

.features-detailed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-detail-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-detail-card::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.5s ease;
}

.feature-detail-card:hover::before {
  left: 100%;
}

.feature-detail-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-heavy);
}

.feature-detail-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.feature-detail-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.feature-detail-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

/* Pricing Section */
.pricing-section {
  padding: 6rem 2rem;
  background: var(--bg-secondary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card.featured {
  border-color: var(--primary-color);
  transform: scale(1.05);
  box-shadow: var(--shadow-heavy);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: var(--text-primary);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.pricing-badge.trial {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.pricing-badge.offer {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
  top: -35px;
}

.pricing-card.featured .pricing-badge:first-of-type {
  top: -15px;
}

.pricing-card.featured .pricing-badge.offer {
  top: -35px;
}

.pricing-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.price {
  margin-bottom: 1rem;
  position: relative;
}

.original-price {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  color: var(--text-secondary);
  text-decoration: line-through;
  opacity: 0.7;
}

.currency {
  font-size: 1.5rem;
  color: var(--text-secondary);
}

.amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent-color);
}

.period {
  font-size: 1rem;
  color: var(--text-secondary);
}

.trial-info,
.offer-info,
.bundle-info {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--accent-color);
  font-weight: 600;
}

.bundle-info {
  color: #ff6b6b;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.pricing-features li {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.pricing-features i {
  color: var(--accent-color);
}

.pricing-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-primary);
  color: var(--text-primary);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}

.pricing-cta:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-heavy);
}

.pricing-cta.trial-btn {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.pricing-note {
  text-align: center;
  margin-top: 3rem;
  padding: 1.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-note p {
  color: var(--text-secondary);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.pricing-note i {
  color: var(--accent-color);
}

/* Comparison Section */
.comparison-section {
  padding: 6rem 2rem;
  background: var(--bg-tertiary);
}

.comparison-table {
  max-width: 800px;
  margin: 0 auto;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
}

.comparison-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  background: var(--gradient-primary);
  color: var(--text-primary);
  font-weight: 600;
}

.comparison-header > div {
  padding: 1.5rem;
  text-align: center;
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.comparison-row:hover {
  background: rgba(255, 255, 255, 0.05);
}

.comparison-row > div {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-name {
  justify-content: flex-start !important;
  color: var(--text-primary);
  font-weight: 500;
}

.competitor-value i {
  color: #ff4757;
  font-size: 1.2rem;
}

.our-value i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

/* FAQ Section */
.faq-section {
  padding: 6rem 2rem;
  background: var(--bg-secondary);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-color);
}

.faq-question {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.faq-question i {
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 2rem 2rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
  body {
    cursor: auto; /* Show default cursor on mobile */
  }
  
  .cursor-trail {
    display: none; /* Hide cursor trail on mobile */
  }
  
  .nav-menu {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .three-d-container {
    transform: none;
    height: 300px;
  }
  
  .three-d-cube {
    width: 150px;
    height: 150px;
  }
  
  .cube-face {
    width: 150px;
    height: 150px;
    font-size: 1.5rem;
  }
  
  .cube-face.front { transform: translateZ(75px); }
  .cube-face.back { transform: translateZ(-75px) rotateY(180deg); }
  .cube-face.right { transform: translateX(75px) rotateY(90deg); }
  .cube-face.left { transform: translateX(-75px) rotateY(-90deg); }
  .cube-face.top { transform: translateY(-75px) rotateX(90deg); }
  .cube-face.bottom { transform: translateY(75px) rotateX(-90deg); }
  
  .cube-info {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .timeline::before {
    left: 40px;
  }
  
  .timeline-item {
    flex-direction: row !important;
  }
  
  .timeline-icon {
    margin-right: 2rem;
  }
  
  .timeline-content {
    margin: 0;
  }
  
  .benefits-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .data-flow {
    flex-direction: column;
    gap: 1rem;
  }
  
  .flow-arrow {
    width: 2px;
    height: 40px;
    transform: rotate(90deg);
  }
  
  .features-detailed-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .comparison-table {
    font-size: 0.9rem;
  }
  
  .comparison-header,
  .comparison-row {
    grid-template-columns: 1fr;
  }
  
  .comparison-header > div,
  .comparison-row > div {
    padding: 1rem;
  }
  
  .feature-name {
    justify-content: center !important;
    font-weight: 600;
    background: var(--glass-bg);
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 0 1rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .features {
    padding: 4rem 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .feature-card {
    padding: 2rem 1.5rem;
  }
  
  .benefits {
    padding: 4rem 1rem;
  }
  
  .cta-section {
    padding: 4rem 1rem;
  }
  
  .timeline-section {
    padding: 4rem 1rem;
  }
  
  .testimonials {
    padding: 4rem 1rem;
  }
  
  .detailed-features {
    padding: 4rem 1rem;
  }
  
  .pricing-section {
    padding: 4rem 1rem;
  }
  
  .comparison-section {
    padding: 4rem 1rem;
  }
  
  .faq-section {
    padding: 4rem 1rem;
  }
}

/* Smooth Animations */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gradient-accent);
} 

/* Performance Optimizations */
.low-performance .particle-canvas {
  display: none;
}

.low-performance .cursor-trail {
  display: none;
}

.low-performance .floating-element {
  animation: none;
  opacity: 0.1;
}

.low-performance .three-d-cube {
  animation: rotate 20s infinite linear;
}

.low-performance .feature-card:hover,
.low-performance .feature-detail-card:hover {
  transform: translateY(-5px);
}

/* Optimize animations with will-change */
.three-d-cube {
  will-change: transform;
}

.particle-canvas {
  will-change: transform;
}

.cursor-trail {
  will-change: transform;
}

.floating-element {
  will-change: transform;
}

.feature-card,
.feature-detail-card {
  will-change: transform;
}

/* Reduce animation complexity for better performance */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .particle-canvas {
    display: none;
  }
  
  .cursor-trail {
    display: none;
  }
  
  .floating-element {
    animation: none;
  }
  
  .three-d-cube {
    animation: none;
  }
}

/* Optimize backdrop-filter usage */
@media (max-width: 768px) {
  .feature-card,
  .feature-detail-card,
  .pricing-card,
  .timeline-content,
  .testimonial-content,
  .faq-item,
  .comparison-table {
    backdrop-filter: none;
    background: rgba(255, 255, 255, 0.05);
  }
}

/* Reduce shadow complexity on mobile */
@media (max-width: 768px) {
  .feature-card:hover,
  .feature-detail-card:hover,
  .pricing-card:hover,
  .timeline-content:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
} 

/* Accessibility and SEO Improvements */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* SEO Content Section */
.seo-content {
  padding: 4rem 2rem;
  background: var(--bg-primary);
  border-top: 1px solid var(--glass-border);
}

.seo-container {
  max-width: 800px;
  margin: 0 auto;
}

.seo-article {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 3rem 2rem;
  line-height: 1.8;
}

.seo-article h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 2rem 0 1rem 0;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.seo-article h3:first-child {
  margin-top: 0;
}

.seo-article p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.seo-article ul {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.seo-article li {
  color: var(--text-secondary);
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
}

.seo-article strong {
  color: var(--accent-color);
  font-weight: 600;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
.nav-toggle:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* Skip to main content link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-color);
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 10000;
}

.skip-link:focus {
  top: 6px;
}

/* Improved semantic structure */
main {
  outline: none;
}

section {
  outline: none;
}

/* Enhanced link styling for SEO */
a[href^="http"]:not([href*="facebook-capi-plugin.com"])::after {
  content: " (external link)";
  font-size: 0.8em;
  color: var(--text-secondary);
}

/* Print styles for better SEO */
@media print {
  .navbar,
  .cta-section,
  .footer,
  .particle-canvas,
  .cursor-trail,
  .interactive-bg,
  .scroll-indicator {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  .hero-title,
  .section-title {
    color: black !important;
    -webkit-text-fill-color: black !important;
  }
  
  .seo-article {
    background: white !important;
    border: 1px solid #ccc !important;
  }
} 

/* Blog Section */
.blog-section {
  padding: 6rem 2rem;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.blog-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.05) 0%, rgba(78, 84, 200, 0.05) 100%);
  z-index: 0;
}

.blog-section .section-header {
  position: relative;
  z-index: 1;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto 4rem;
  position: relative;
  z-index: 1;
}

.blog-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--primary-color);
}

.blog-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.1) 0%, rgba(78, 84, 200, 0.1) 100%);
  border-color: var(--primary-color);
}

.blog-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  z-index: 2;
}

.blog-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-card.featured .blog-image {
  height: 250px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gradient-primary);
  color: var(--text-primary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.blog-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.blog-meta i {
  color: var(--accent-color);
  font-size: 0.8rem;
}

.blog-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.blog-card.featured .blog-title {
  font-size: 1.8rem;
}

.blog-card:hover .blog-title {
  color: var(--accent-color);
}

.blog-excerpt {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tag {
  background: rgba(0, 212, 255, 0.1);
  color: var(--accent-color);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: all 0.3s ease;
}

.tag:hover {
  background: var(--accent-color);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  margin-top: auto;
}

.blog-read-more:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.blog-read-more i {
  transition: transform 0.3s ease;
}

.blog-read-more:hover i {
  transform: translateX(3px);
}

/* Blog CTA Section */
.blog-cta {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.blog-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
  border-radius: 20px;
  z-index: -1;
}

.blog-cta-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-cta-content p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.blog-newsletter {
  display: flex;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto 1rem;
  background: var(--bg-primary);
  border-radius: 50px;
  padding: 0.5rem;
  border: 1px solid var(--glass-border);
}

.blog-newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-primary);
  padding: 1rem 1.5rem;
  font-size: 1rem;
  outline: none;
}

.blog-newsletter input::placeholder {
  color: var(--text-secondary);
}

.newsletter-btn {
  background: var(--gradient-primary);
  color: var(--text-primary);
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-light);
}

.newsletter-note {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Blog Section Responsive */
@media (max-width: 1200px) {
  .blog-card.featured {
    grid-column: span 1;
  }
  
  .blog-card.featured .blog-title {
    font-size: 1.4rem;
  }
  
  .blog-card.featured .blog-image {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .blog-section {
    padding: 4rem 1rem;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .blog-card.featured {
    grid-column: span 1;
  }
  
  .blog-content {
    padding: 1.5rem;
  }
  
  .blog-title {
    font-size: 1.2rem;
  }
  
  .blog-card.featured .blog-title {
    font-size: 1.3rem;
  }
  
  .blog-newsletter {
    flex-direction: column;
    border-radius: 15px;
    padding: 1rem;
  }
  
  .newsletter-btn {
    width: 100%;
    justify-content: center;
  }
  
  .blog-cta {
    padding: 2rem 1.5rem;
  }
  
  .blog-cta-content h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .blog-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .blog-tags {
    justify-content: center;
  }
  
  .blog-read-more {
    justify-content: center;
  }
} 

/* Interactive SEO Content Section */
.seo-content-interactive {
  padding: 6rem 2rem;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.seo-content-interactive::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.03) 0%, rgba(78, 84, 200, 0.03) 100%);
  z-index: 0;
}

.seo-content-interactive .section-header {
  position: relative;
  z-index: 1;
  margin-bottom: 4rem;
}

.seo-content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.seo-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.seo-card::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;
}

.seo-card:hover::before {
  left: 100%;
}

.seo-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--primary-color);
}

.seo-card.main-card {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.1) 0%, rgba(78, 84, 200, 0.1) 100%);
  border-color: var(--primary-color);
}

.seo-card.main-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  z-index: 2;
}

.seo-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.seo-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-primary);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.seo-card:hover .seo-icon {
  transform: scale(1.1) rotate(5deg);
}

.seo-card-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.seo-card-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.seo-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 212, 255, 0.1);
  color: var(--accent-color);
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
  font-weight: 600;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.seo-benefits {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.seo-benefits .benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(24, 119, 242, 0.1);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(24, 119, 242, 0.2);
}

/* Benefits List */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item.interactive {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.benefit-item.interactive:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--accent-color);
  transform: translateX(10px);
}

.benefit-item.interactive i {
  color: var(--accent-color);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.benefit-item.interactive span {
  color: var(--text-primary);
  font-weight: 600;
  flex: 1;
}

.benefit-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-primary);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 1rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 10;
  margin-top: 0.5rem;
}

.benefit-item.interactive:hover .benefit-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Events Grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.event-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.event-item:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--accent-color);
  transform: translateY(-5px);
}

.event-item i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  display: block;
}

.event-item span {
  color: var(--text-primary);
  font-weight: 600;
  display: block;
  margin-bottom: 0.3rem;
}

.event-item small {
  color: var(--text-secondary);
  font-size: 0.8rem;
  line-height: 1.4;
}

/* Specs Grid */
.specs-grid {
  display: grid;
  gap: 1rem;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.spec-item:hover {
  background: rgba(24, 119, 242, 0.1);
  border-color: var(--primary-color);
}

.spec-label {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
}

.spec-value {
  color: var(--text-primary);
  font-weight: 600;
  text-align: right;
}

/* Industries Grid */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.industry-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.industry-item:hover {
  background: rgba(78, 84, 200, 0.1);
  border-color: var(--secondary-color);
  transform: translateY(-5px);
}

.industry-item i {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  display: block;
}

.industry-item h4 {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.industry-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Pricing Highlights */
.pricing-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pricing-highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.pricing-highlight:hover {
  background: rgba(255, 107, 107, 0.1);
  border-color: #ff6b6b;
  transform: translateX(10px);
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-primary);
  flex-shrink: 0;
}

.pricing-highlight:nth-child(2) .highlight-icon {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
}

.pricing-highlight:nth-child(3) .highlight-icon {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.highlight-content h4 {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.highlight-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

/* SEO CTA Buttons */
.seo-cta-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.seo-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.seo-cta-btn.primary {
  background: var(--gradient-primary);
  color: var(--text-primary);
}

.seo-cta-btn.secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--glass-border);
}

.seo-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-light);
}

.seo-cta-btn.primary:hover {
  background: var(--gradient-accent);
}

.seo-cta-btn.secondary:hover {
  background: var(--glass-bg);
  border-color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .seo-card.main-card {
    grid-column: span 1;
  }
  
  .seo-content-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}

@media (max-width: 768px) {
  .seo-content-interactive {
    padding: 4rem 1rem;
  }
  
  .seo-content-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .seo-card {
    padding: 1.5rem;
  }
  
  .seo-card-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .seo-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .seo-card-header h3 {
    font-size: 1.3rem;
  }
  
  .events-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
  
  .industries-grid {
    grid-template-columns: 1fr;
  }
  
  .spec-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .seo-cta-buttons {
    flex-direction: column;
  }
  
  .seo-cta-btn {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .seo-benefits {
    flex-direction: column;
  }
  
  .events-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-highlight {
    flex-direction: column;
    text-align: center;
  }
} 