@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

:root {
  --primary: #1BBFBF;
  --primary-dark: #0E9696;
  --primary-light: #E0F7F7;
  --charcoal: #0F172A;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #F8FAFB;
  color: var(--charcoal);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-outfit {
  font-family: 'Outfit', sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #F1F5F9;
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94A3B8;
}

/* Animations & Transitions */
.transition-all-300 {
  transition: all 0.30s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.active {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-left.active {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-right.active {
  opacity: 1;
  transform: translateX(0);
}

.scale-up {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.scale-up.active {
  opacity: 1;
  transform: scale(1);
}

/* Accordion FAQ styles */
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-content {
  max-height: 250px;
}

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

.faq-trigger-icon {
  transition: transform 0.3s ease;
}

/* Process line connection adjustment */
.process-step::after {
  content: '';
  position: absolute;
  left: 18px;
  top: 36px;
  width: 2px;
  height: calc(100% - 28px);
  background: rgba(27, 191, 191, 0.2);
  z-index: 1;
}

.process-step:last-child::after {
  display: none;
}

/* Micro-animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

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

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(27, 191, 191, 0.4); }
  50% { transform: scale(1.03); box-shadow: 0 0 15px 4px rgba(27, 191, 191, 0.2); }
}

.pulse-glow {
  animation: pulse-glow 3s infinite ease-in-out;
}
