:root {
  font-family: 'Inter', sans-serif;
  color: #0f172a;
  background-color: #f8fafc;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f8fafc;
}

.section-gradient-1 {
  background: linear-gradient(135deg, rgba(255, 244, 236, 0.92), rgba(255, 255, 255, 0.96));
  border-radius: 32px;
  box-shadow: 0 25px 70px rgba(252, 133, 41, 0.12);
}

.section-gradient-2 {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 240, 227, 0.94));
  border-radius: 28px;
  box-shadow: 0 24px 55px rgba(252, 133, 41, 0.18);
}

.section-gradient-3 {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 246, 235, 0.95) 100%);
  border-radius: 36px;
}

.badge-gradient-1 {
  background: linear-gradient(120deg, rgba(226, 232, 255, 0.75), rgba(254, 215, 226, 0.8));
  box-shadow: 0 12px 28px rgba(99, 102, 241, 0.25);
}

.badge-gradient-youtube {
  background: linear-gradient(120deg, rgba(254, 226, 226, 0.85), rgba(252, 165, 165, 0.85));
  box-shadow: 0 12px 30px rgba(239, 68, 68, 0.28);
}

.badge-gradient-facebook {
  background: linear-gradient(120deg, rgba(219, 234, 254, 0.85), rgba(191, 219, 254, 0.85));
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.28);
}

.text-gradient-facebook {
  background-image: linear-gradient(120deg, #2563eb, #0ea5e9);
}

.text-gradient-1 {
  background-image: linear-gradient(120deg, #4f46e5, #f97316);
}

.text-gradient-youtube {
  background-image: linear-gradient(120deg, #dc2626, #f97316);
}

.text-gradient-core {
  background-image: linear-gradient(120deg, #f97316, #facc15);
}

.hero-h1-gradient {
  background-image: linear-gradient(135deg, #f97316, #ef4444);
}

.button-shine-gradient {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0));
  opacity: 0.45;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.group:hover .button-shine-gradient {
  opacity: 0;
}

.fade-in {
  animation: fade-in 0.35s ease-out;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.arrow-right {
  width: 18px;
  height: 3px;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.75), rgba(16, 185, 129, 0));
  border-radius: 9999px;
  position: relative;
  margin: 3px 0;
}

.arrow-right::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 2px solid rgba(16, 185, 129, 0.9);
  border-right: 2px solid rgba(16, 185, 129, 0.9);
  transform: translateY(-50%) rotate(45deg);
  border-radius: 1px;
}

.card-wrapper,
.card2-wrapper {
  position: relative;
}

.card-wrapper > *,
.card2-wrapper > * {
  position: relative;
  z-index: 1;
}

.feature-marquee {
  position: relative;
  overflow: hidden;
}

.feature-marquee::before,
.feature-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 56px;
  pointer-events: none;
  z-index: 1;
}

.feature-marquee::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0));
}

.feature-marquee::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0));
}

.feature-marquee__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: feature-marquee-scroll 28s linear infinite;
}

.feature-marquee__track:hover {
  animation-play-state: paused;
}

.feature-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
}

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

@media (prefers-reduced-motion: reduce) {
  .feature-marquee__track {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transform: translateX(0);
  }
}

