/* Full Page Scroll Container */
.fullpage-container {
  overflow: visible;
  position: relative;
}

.fullpage-section {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding: 2rem 0;
}

/* Hero Section */
.hero-section {
  background: var(--bg-hero);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: movePattern 20s linear infinite;
  opacity: 0.3;
}

@keyframes movePattern {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-white);
  animation: fadeInUp 1s ease-out;
}

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

.hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: var(--gradient-text-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInLeft 1s ease-out 0.3s both;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: slideInRight 1s ease-out 0.5s both;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: var(--overlay-white-light);
  animation: float 15s infinite ease-in-out;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

/* Stats Section */
.stats-section {
  background: var(--bg-stats);
}

.stat-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 10px 40px var(--shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(50px);
}

.stat-card.animate {
  animation: cardSlideUp 0.8s ease-out forwards;
}

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

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px var(--shadow-medium);
}

.stat-number {
  font-size: 4rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

/* Features Section */
.features-section {
  background: var(--bg-features);
  color: var(--text-white);
  position: relative;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.feature-item {
  padding: 2rem;
  border-radius: 15px;
  background: var(--overlay-white-medium);
  backdrop-filter: blur(10px);
  border: 1px solid var(--overlay-white-light);
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.8);
}

.feature-item.animate {
  animation: featureFadeIn 0.6s ease-out forwards;
}

@keyframes featureFadeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.feature-item:hover {
  transform: translateY(-10px) scale(1.05);
  background: var(--overlay-white-light);
  box-shadow: 0 20px 40px var(--shadow-darker);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: var(--gradient-primary-reverse);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Process Section */
.process-section {
  background: var(--bg-process);
}

.process-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  box-shadow: 0 10px 30px var(--shadow-light);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  transform: translateX(-50px) rotateY(15deg);
}

.process-card.animate {
  animation: processCardFlip 0.8s ease-out forwards;
}

@keyframes processCardFlip {
  to {
    opacity: 1;
    transform: translateX(0) rotateY(0deg);
  }
}

.process-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 25px 50px var(--shadow-dark);
}

.process-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* CTA Section */
.cta-section {
  background: var(--bg-cta);
  position: relative;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-white);
  opacity: 0;
  transform: scale(0.9);
}

.cta-content.animate {
  animation: ctaPulse 1s ease-out forwards;
}

@keyframes ctaPulse {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.cta-button {
  background: var(--color-white);
  color: var(--text-primary);
  padding: 1rem 3rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px var(--shadow-dark);
}

.cta-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px var(--shadow-darker);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.scroll-indicator i {
  font-size: 2rem;
  color: var(--text-white);
  opacity: 0.8;
}

/* Page Navigation Dots */
.page-nav {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--overlay-primary);
  margin: 10px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.nav-dot.active {
  background: var(--color-primary);
  transform: scale(1.3);
  box-shadow: 0 0 10px var(--overlay-primary-dark);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }

  .page-nav {
    display: none;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Section visibility */
.section-hidden {
  opacity: 0;
  transform: translateY(50px);
}

.section-visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease-out;
}

