html {
  scroll-behavior: smooth;
}

body {
  background-color: #fafaf7;
  font-family: 'Syne', sans-serif;
  color: #1a1a1a;
  overflow-x: hidden;
  width: 100%;
}

/* Navbar blur */
.navbar {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(250, 250, 247, 0.85);
  border-bottom: 1px solid rgba(181, 168, 50, 0.1);
}

/* Pill badge */
.pill {
  background: rgba(181, 168, 50, 0.12);
  border: 1px solid rgba(181, 168, 50, 0.3);
  color: #8a7e20;
}

/* Gradient text */
.text-gradient {
  background: linear-gradient(135deg, #1a1a1a 0%, #5a5020 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Cards */
.card-hover {
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.35s ease;
}
.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
}

/* CTA button */
.btn-primary {
  background: #1a1a1a;
  color: #fafaf7;
  transition: background 0.25s ease, transform 0.2s ease;
}
.btn-primary:hover {
  background: #2d2d2d;
  transform: scale(1.02);
}
.btn-secondary {
  background: rgba(26, 26, 26, 0.07);
  color: #1a1a1a;
  transition: background 0.25s ease;
}
.btn-secondary:hover {
  background: rgba(26, 26, 26, 0.13);
}

/* Pricing card active */
.pricing-active {
  background: #1a1a1a;
  color: #fafaf7;
}
.pricing-active .price-muted {
  color: rgba(250, 250, 247, 0.6);
}
.pricing-active .btn-plan {
  background: #fafaf7;
  color: #1a1a1a;
}
.btn-plan {
  background: #1a1a1a;
  color: #fafaf7;
  transition: opacity 0.2s ease;
}
.btn-plan:hover {
  opacity: 0.85;
}

/* Section divider */
.divider {
  border-color: rgba(26, 26, 26, 0.08);
}

/* Logo partners scroll */
.partners-track {
  animation: marquee 22s linear infinite;
  display: flex;
  gap: 3rem;
  white-space: nowrap;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* FAQ accordion */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-icon {
  transition: transform 0.3s ease;
  display: inline-block;
}

/* Mobile menu */
#mobile-menu {
  transition: max-height 0.4s ease, opacity 0.3s ease;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
}
#mobile-menu.open {
  max-height: 400px;
  opacity: 1;
}

/* Feature number */
.feature-num {
  font-family: 'Instrument Serif', serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(181, 168, 50, 0.25);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #fafaf7;
}
::-webkit-scrollbar-thumb {
  background: #c8b830;
  border-radius: 3px;
}

