/* Custom styles for KROK landing page */

/* Font import handled in HTML via Google Fonts */

/* Gradient backgrounds */
.hero-gradient {
  background: linear-gradient(135deg, #0086CA 0%, #006BA6 100%);
}

.section-gradient {
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
}

/* Phone mockup styling */
.phone-mockup {
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  border: 8px solid #1E293B;
  transition: transform 0.3s ease;
}

.phone-mockup:hover {
  transform: translateY(-8px) scale(1.02);
}

/* Screenshot gallery */
.screenshot-card {
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.screenshot-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

/* Feature card hover */
.feature-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 134, 202, 0.15);
}

/* Stats counter animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

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

/* CTA button pulse */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
  }
}

.cta-pulse {
  animation: pulse-glow 2s infinite;
}

/* Floating animation for hero elements */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}
