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

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

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

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

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow:
      0px 4px 6px -4px #4f39f666,
      0px 10px 15px -3px #4f39f666;
  }
  50% {
    box-shadow:
      0px 4px 6px -4px #4f39f699,
      0px 10px 15px -3px #4f39f699,
      0px 0px 20px #4f39f680;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

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

@keyframes underlineSlide {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes liftUp {
  to {
    transform: translateY(-8px);
  }
}

/* ===== UTILITY ANIMATION CLASSES ===== */
.animate-fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
  animation-play-state: paused;
}

.animate-fade-in-up.animate-visible {
  animation-play-state: running;
}

.animate-hero {
  opacity: 0;
  animation: heroFadeIn 0.6s ease-out forwards;
  animation-play-state: paused;
}

.animate-hero.animate-visible {
  animation-play-state: running;
}

.animate-on-scroll {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-play-state: paused;
}

.animate-on-scroll.animate-visible {
  animation-play-state: running;
}

.animate-slide-left {
  animation: slideInLeft 0.7s ease-out forwards;
  opacity: 0;
}

.animate-slide-right {
  animation: slideInRight 0.7s ease-out forwards;
  opacity: 0;
}

.button-shimmer {
  background: linear-gradient(90deg, #4f39f6, #6b52f0, #4f39f6);
  background-size: 200% 100%;
  transition: all 0.3s ease;
}

.button-shimmer:hover {
  animation: shimmer 2s infinite;
  box-shadow: 0px 8px 16px -4px #4f39f680;
}

.card-hover-lift {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.card-hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0px 12px 24px -8px rgba(79, 57, 246, 0.25) !important;
}

.gradient-animate {
  background: linear-gradient(-45deg, #4f39f6, #9810fa, #4f39f6, #9810fa);
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
}

.nav-link-underline {
  position: relative;
  display: inline-block;
}

.nav-link-underline:hover {
  color: #4f39f6;
}

.nav-link-underline::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, #4f39f6, #9810fa);
  width: 0;
  transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-link-underline:hover::after {
  width: 100%;
}

.marquee-container {
  overflow: hidden;
  display: flex;
  align-items: center;
}

.marquee {
  display: flex;
  gap: 2rem;
  animation: marquee 20s linear infinite;
  min-width: 100%;
}

.marquee:hover {
  animation-play-state: paused;
}

html {
  font-family: Manrope;
  scroll-behavior: smooth;
}
.footer-bg {
  background-color: #101828;
}
.footer-text {
  font-family: "Manrope", sans-serif;
  color: #99a1af;
  line-height: 24px;
  font-size: 16px;
}
.footer-menu-head {
  font-family: "Manrope", sans-serif;
  color: #ffffff;
  line-height: 27px;
  font-size: 18px;
}
.footer-menu {
  color: #99a1af;
  line-height: 20px;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.footer-menu:hover {
  color: #4f39f6;
  transform: translateX(2px);
}
.nav-link {
  font-family: "Manrope", sans-serif;
  color: #364153;
  line-height: 24px;
  font-size: 16px;
  transition: color 0.3s ease;
}
.trial-btn {
  font-family: "Manrope", sans-serif;
  color: #ffffff;
  line-height: 24px;
  font-size: 16px;
  background-color: #4f39f6;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.trial-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0px 8px 20px -5px rgba(79, 57, 246, 0.4);
}
.hero-pointer {
  color: #432dd7;
  font-size: 14px;
  line-height: 20px;
}
.hero-tag {
  font-weight: bold;
  line-height: 70.4px;
}
.hero-desc {
  font-weight: normal;
}
.hero-ticks {
  font-family: "Manrope", sans-serif;
  font-weight: normal;
  line-height: 20px;
  font-size: 14px;
  color: #4a5565;
}
.because-section {
  background: linear-gradient(
    135deg,
    rgba(238, 242, 255, 0.4) 0%,
    rgba(250, 245, 255, 0.3) 50%,
    rgba(239, 246, 255, 0.4) 100%
  );
}
.because-title {
  font-family: Manrope;
  font-weight: 700;
  font-style: Bold;
  line-height: 48px;
  letter-spacing: 0px;
  text-align: center;
  color: #101828;
}
.because-sub {
  font-family: Manrope;
  font-weight: 400;
  font-style: Regular;
  line-height: 32.5px;
  letter-spacing: 0px;
  text-align: center;
  color: #4a5565;
}
.trustee-title {
  font-family: Manrope;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.7px;
  text-align: center;
  text-transform: uppercase;
  color: #6a7282;
}
.feature-title {
  font-family: Manrope;
  font-weight: 700;
  font-style: Bold;
  line-height: 40px;
  letter-spacing: 0px;
  text-align: center;
  color: #101828;
}
.feature-sub {
  font-family: Manrope;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  text-align: center;
  color: #4a5565;
}
.feature-card {
  box-shadow: 0px 1px 2px -1px #0000001a;

  box-shadow: 0px 1px 3px 0px #0000001a;
}
.feature-card-title {
  font-family: Manrope;
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  color: #101828;
}
.feature-card-sub {
  font-family: Manrope;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  color: #4a5565;
}
.flow-section {
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%) !important;
}
.flow-tag {
  font-family: Manrope;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  text-align: center;
  color: #432dd7;
}
.flow-header {
  font-family: Manrope;
  font-weight: 700;
  font-style: Bold;
  line-height: 48px;
  letter-spacing: 0px;
  text-align: center;
  color: #101828;
}
.flow-title {
  font-family: Manrope;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  text-align: center;
  color: #4a5565;
}
.flow-card {
  border-top: 0.8px solid #f3f4f6;
  background-color: #ffffff;
  box-shadow: 0px 1px 2px -1px #0000001a;

  box-shadow: 0px 1px 3px 0px #0000001a;
}
.flow-numbering {
  background: linear-gradient(135deg, #4f39f6 0%, #9810fa 100%);
  box-shadow: 0px 4px 6px -4px #4f39f666;

  box-shadow: 0px 10px 15px -3px #4f39f666;
  border-radius: 100%;
  font-family: Manrope;
  font-weight: 700;
  font-style: Bold;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #ffffff;
}
.flow-title {
  font-family: Manrope;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  text-align: center;
  color: #4a5565;
}
.flow-sub-title {
  font-family: Manrope;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 22.75px;
  letter-spacing: 0px;
  text-align: center;
  color: #4a5565;
}
.feature-title {
  font-family: Manrope;
  font-weight: 700;
  font-style: Bold;
  line-height: 60px;
  letter-spacing: 0px;
  color: #101828;
}
.feature-sub {
  font-family: Manrope;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 32.5px;
  letter-spacing: 0px;
  color: #4a5565;
}
.platform-features {
  font-family: Manrope;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 29.25px;
  letter-spacing: 0px;
  color: #364153;
}
.trial-section {
  background: linear-gradient(135deg, #4f39f6 0%, #9810fa 50%, #e60076 100%);
}
.trial-header {
  font-family: Manrope;
  font-weight: 700;
  font-style: Bold;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: 0px;
  text-align: center;
  color: #ffffff;
}
.trial-text {
  font-family: Manrope;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  text-align: center;
  color: #e0e7ff;
}
.trial-ticks {
  font-family: Manrope;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  text-align: center;
  color: #e0e7ff;
}
.trial-link {
  font-family: Manrope;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0px;
}
.center-section {
  background: linear-gradient(135deg, #4f39f6 0%, #9810fa 100%);
}
.center-title {
  font-family: Manrope;
  font-weight: 700;
  font-style: Bold;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: 0px;
  text-align: center;
  color: #ffffff;
}
.center-text {
  font-family: Manrope;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  text-align: center;
  color: #e0e7ff;
}
.center-action {
  font-family: Manrope;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0px;
  text-align: center;
  color: #e0e7ff;
}
.track-section {
  background: linear-gradient(
    135deg,
    rgba(255, 251, 235, 0.8) 0%,
    rgba(255, 247, 237, 0.5) 50%,
    rgba(254, 252, 232, 0.4) 100%
  );
}
.track-header {
  font-family: Manrope;
  font-weight: 700;
  font-style: Bold;
  font-size: 48px;
  line-height: 60px;
  letter-spacing: 0px;
  color: #101828;
}
.track-text {
  font-family: Manrope;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 32.5px;
  letter-spacing: 0px;
  color: #4a5565;
}
.testimonial-title {
  font-family: Manrope;
  font-weight: 700;
  font-style: Bold;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: 0px;
  text-align: center;
  color: #101828;
}
.testimonial-text {
  font-family: Manrope;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  text-align: center;
  color: #4a5565;
}
.testimonial-card {
  box-shadow: 0px 1px 2px -1px #0000001a;
  box-shadow: 0px 1px 3px 0px #0000001a;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 16px 32px -8px rgba(79, 57, 246, 0.15);
  border-color: #e0e7ff;
}
.testimonial {
  font-family: Manrope;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  color: #364153;
}
.reviewer-name {
  font-family: Manrope;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  color: #101828;
}
.reviewer-role {
  font-family: Manrope;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #4a5565;
}
.pricing-info {
  font-family: Manrope;
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0px;
  text-align: center;
  color: #4a5565;
}
.pricing-info span {
  font-family: Manrope;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0px;
  text-align: center;
  color: #4a5565;
}
.pricing-card {
  box-shadow: 0px 1px 2px -1px #0000001a;
  box-shadow: 0px 1px 3px 0px #0000001a;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: 0px 20px 40px -10px rgba(79, 57, 246, 0.2);
  border-color: #4f39f6;
}
.pricing-title {
  font-family: Manrope;
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  text-align: center;
  color: #101828;
}
.pricing-fee {
  font-family: Manrope;
  font-weight: 700;
  font-style: Bold;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: 0px;
  text-align: center;
  color: #101828;
}
.pricing-fee span {
  font-family: Manrope;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: center;
  color: #101828;
}
.pricing-desc {
  font-family: Manrope;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: center;
  color: #4a5565;
}
.pricing-features {
  font-family: Manrope;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  color: #364153;
}
.pricing-link {
  font-family: Manrope;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.pricing-link:hover {
  transform: translateY(-3px);
  box-shadow: 0px 12px 24px -6px rgba(79, 57, 246, 0.3);
}

/* ===== SOCIAL ICON STYLES ===== */
.social-icon {
  background-color: #1e2939;
  width: 40px;
  height: 40px;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-icon:hover {
  background: linear-gradient(135deg, #4f39f6 0%, #9810fa 100%);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0px 8px 20px -5px rgba(79, 57, 246, 0.5);
}
.pricing-popular {
  font-family: Manrope;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
}
