:root {
  --primary-orange: #FE9C01;
  --primary-dark: #0a0a0a;
  --primary-white: #FFFFFF;
  --gray-100: #1a1a1a;
  --gray-200: #242424;
  --gray-600: #666666;
  --gray-700: #888888;
  --gray-800: #1E1E1E;
  --gray-900: #0F0F0F;
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --cream: #1a1a1a;
  --dark-section: #111111;
  --darker-section: #0d0d0d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: #ffffff;
  overflow-x: hidden;
  background: var(--primary-dark);
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 80px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  background: #000000;
  padding: 8px 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.logo-link:hover {
  background: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.logo-img {
  height: 40px;
  width: auto;
  transition: transform 0.3s ease;
  filter: none;
}

.logo-img:active, .logo-img:hover {
  transform: scale(1.1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background: var(--primary-orange);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--primary-orange);
}

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

.get-started-btn {
  background: linear-gradient(135deg, var(--primary-orange), #ff8800);
  color: var(--primary-white);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(254, 156, 1, 0.3);
}

.get-started-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(254, 156, 1, 0.4);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s ease;
  z-index: 1001;
}

.mobile-menu-btn:hover {
  color: var(--primary-orange);
  transform: scale(1.1);
}

.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu .nav-links {
  flex-direction: column;
  gap: 0;
  padding: 20px 0;
  align-items: stretch;
}

.mobile-menu .nav-link {
  padding: 20px 32px;
  width: 100%;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
  color: #e5e5e5;
  font-size: 18px;
  transition: all 0.3s ease;
}

.mobile-menu .nav-link:hover {
  background: rgba(254, 156, 1, 0.1);
  color: var(--primary-orange);
  padding-left: 40px;
}

.mobile-menu .nav-link:last-child {
  border-bottom: none;
}

.mobile-menu .get-started-btn {
  margin: 16px 32px;
  display: block;
  text-align: center;
  width: calc(100% - 64px);
}

/* Sound Wave Transition Section */
.sound-wave-transition {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(254, 156, 1, 0.2);
  backdrop-filter: blur(10px);
}

.wave-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sound-wave-line {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 60px;
  justify-content: center;
}

.wave-bar {
  width: 6px;
  background: linear-gradient(to top, var(--primary-orange), #ff8800, var(--primary-orange));
  border-radius: 3px 3px 0 0;
  animation: waveMotion 1.5s ease-in-out infinite;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.wave-bar:nth-child(1) { animation-delay: 0s; }
.wave-bar:nth-child(2) { animation-delay: 0.1s; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; }
.wave-bar:nth-child(4) { animation-delay: 0.3s; }
.wave-bar:nth-child(5) { animation-delay: 0.4s; }
.wave-bar:nth-child(6) { animation-delay: 0.5s; }
.wave-bar:nth-child(7) { animation-delay: 0.6s; }
.wave-bar:nth-child(8) { animation-delay: 0.7s; }
.wave-bar:nth-child(9) { animation-delay: 0.8s; }
.wave-bar:nth-child(10) { animation-delay: 0.9s; }
.wave-bar:nth-child(11) { animation-delay: 1s; }
.wave-bar:nth-child(12) { animation-delay: 1.1s; }
.wave-bar:nth-child(13) { animation-delay: 1.2s; }
.wave-bar:nth-child(14) { animation-delay: 1.3s; }
.wave-bar:nth-child(15) { animation-delay: 1.4s; }
.wave-bar:nth-child(16) { animation-delay: 0.2s; }
.wave-bar:nth-child(17) { animation-delay: 0.4s; }
.wave-bar:nth-child(18) { animation-delay: 0.6s; }
.wave-bar:nth-child(19) { animation-delay: 0.8s; }
.wave-bar:nth-child(20) { animation-delay: 1s; }

.transition-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.transition-particles .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary-orange);
  border-radius: 50%;
  opacity: 0.6;
  animation: floatHorizontal 6s linear infinite;
}

.transition-particles .particle:nth-child(1) { top: 20%; animation-delay: 0s; }
.transition-particles .particle:nth-child(2) { top: 40%; animation-delay: 1.2s; }
.transition-particles .particle:nth-child(3) { top: 60%; animation-delay: 2.4s; }
.transition-particles .particle:nth-child(4) { top: 80%; animation-delay: 3.6s; }
.transition-particles .particle:nth-child(5) { top: 30%; animation-delay: 4.8s; }

.sound-wave-transition:hover .wave-bar {
  opacity: 1;
  transform: scaleY(1.2);
}

.sound-wave-transition:hover {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(26, 26, 26, 0.98) 100%);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 40px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: 
      radial-gradient(circle at 25% 25%, rgba(254, 156, 1, 0.3) 0%, transparent 50%),
      radial-gradient(circle at 75% 75%, rgba(102, 126, 234, 0.3) 0%, transparent 50%);
  animation: gradientShift 8s ease-in-out infinite;
  background: linear-gradient(45deg, 
      rgba(254, 156, 1, 0.1), 
      rgba(102, 126, 234, 0.1), 
      rgba(254, 156, 1, 0.05),
      rgba(102, 126, 234, 0.15)
  );
  background-size: 400% 400%;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: 
      linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

.hero-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 70vh;
}

.hero-text {
  color: white;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 0%, var(--primary-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1.2s ease-out;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  line-height: 1.6;
  animation: fadeInUp 1.2s ease-out 0.2s both;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-tag {
  background: rgba(254, 156, 1, 0.2);
  border: 1px solid rgba(254, 156, 1, 0.3);
  color: var(--primary-orange);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  animation: tagPulse 2s ease-in-out infinite;
}

.hero-tag:hover {
  background: rgba(254, 156, 1, 0.3);
  transform: translateY(-2px);
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-cta .cta-primary {
  padding: 0.4rem 0.9rem;
  font-size: 0.875rem;
  border-radius: 6px;
}

.cta-primary {
  background: linear-gradient(135deg, var(--primary-orange), #ff8800);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(254, 156, 1, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.cta-primary:hover::before {
  left: 100%;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(254, 156, 1, 0.4);
}

.cta-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-orange);
  color: var(--primary-orange);
  transform: translateY(-3px);
}

.hero-visual {
  position: relative;
}

.hero-image {
  width: 130%;
  height: 600px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  animation: fadeInUp 1.2s ease-out 0.3s both, imageFloat 6s ease-in-out infinite;
}

.hero-image:hover {
  transform: scale(1.02);
}

.trust-strip {
  margin-top: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Stats Bar */
.stats-bar {
  background: linear-gradient(135deg, #000000, #1a1a1a);
  padding: 16px 0;
  margin-top: -40px;
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.stats-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  text-align: center;
  flex-wrap: wrap;
}

.stat-item {
  color: #ffffff;
  min-width: 150px;
}

.stat-item-number {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--primary-orange);
  background: linear-gradient(45deg, var(--primary-orange), #ff8800, var(--primary-orange));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
}

.stat-item-label {
  font-size: 0.8rem;
  opacity: 0.9;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.8);
}

/* Common Section Styles */
.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Services Section */
.services-section {
  background: var(--dark-section);
  padding: 120px 0;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-orange), #ff8800);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(254, 156, 1, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  object-fit: cover;
  margin: 0 auto 24px;
  border: 3px solid var(--primary-orange);
  padding: 15px;
  background: rgba(254, 156, 1, 0.1);
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  border-color: #ff8800;
  background: rgba(254, 156, 1, 0.2);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.3;
}

.service-list {
  list-style: none;
  text-align: left;
}

.service-list li {
  margin-bottom: 12px;
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.service-list li i {
  margin-right: 12px;
  color: var(--primary-orange);
  margin-top: 3px;
  flex-shrink: 0;
}

/* How It Works Section */
.how-it-works {
  background: var(--dark-section);
  padding: 120px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.step-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.step-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
}

.step-number {
  background: linear-gradient(135deg, var(--primary-orange), #ff8800);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 24px;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.step-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Industries Section */
.industries-section {
  background: var(--darker-section);
  padding: 120px 0;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.industry-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.industry-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(254, 156, 1, 0.15);
}

.industry-icon {
  font-size: 3rem;
  color: var(--primary-orange);
  margin-bottom: 24px;
}

.industry-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.industry-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 24px;
}

.industry-features {
  list-style: none;
  text-align: left;
}

.industry-features li {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 8px;
}

.industry-features li::before {
  content: "▶";
  color: var(--primary-orange);
  font-size: 0.8rem;
}

/* Testimonials Section */
.testimonials-section {
  background: var(--dark-section);
  padding: 120px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
}

.testimonial-quote {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-orange);
  margin-bottom: 8px;
}

.testimonial-company {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
  background: var(--darker-section);
  padding: 120px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.faq-question {
  padding: 24px 32px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: left;
  width: 100%;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--primary-orange);
}

.faq-icon {
  transition: transform 0.3s ease;
  color: var(--primary-orange);
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer-content {
  padding: 0 32px 24px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #000000 0%, #0d0d0d 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="white"/></svg>') repeat;
  background-size: 50px 50px;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  margin-bottom: 24px;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Animation Classes */
.scroll-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate-left.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.scroll-animate-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate-right.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.scroll-animate-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate-scale.animate-in {
  opacity: 1;
  transform: scale(1);
}

