@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Form step animation */
.form-step {
  display: none;
  animation: fadeIn 0.4s ease;
}

.form-step.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FAQ answer transition */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

/* Progress bar fill */
.progress-line {
  transition: width 0.5s ease;
}

/* Damage option */
.damage-option.selected {
  border-color: #c8a84e !important;
  background: rgba(200, 168, 78, 0.06) !important;
}

/* Mobile nav */
.nav-mobile {
  display: none;
}

.nav-mobile.open {
  display: flex;
}

/* Custom selection */
::selection {
  background: rgba(200, 168, 78, 0.2);
  color: #0a1628;
}

/* Icon sizing inside benefit/trust cards */
.icon-box svg {
  width: 28px;
  height: 28px;
}