/* FindeskCo — Custom styles */

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, #2E7BFF 0%, #153B6D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Dashboard shadow */
.dashboard-shadow {
  box-shadow: 0 24px 64px rgba(0, 30, 60, 0.18), 0 4px 16px rgba(46, 123, 255, 0.08);
}

/* Signal gradient background */
.signal-gradient {
  background: linear-gradient(135deg, #001E3C 0%, #0B1F33 50%, #153B6D 100%);
}

/* Card hover lift */
.card-lift {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card-lift:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 30, 60, 0.12);
}

/* Feature icon gradient */
.icon-gradient {
  background: linear-gradient(135deg, #2E7BFF 0%, #153B6D 100%);
}

/* Hero tag pill */
.tag-pill {
  background: rgba(46, 123, 255, 0.1);
  color: #2E7BFF;
  border: 1px solid rgba(46, 123, 255, 0.2);
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* FAQ accordion */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.faq-answer.open {
  max-height: 500px;
}

/* Inter font smoothing */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Section separator */
.section-divider {
  border-top: 1px solid #E8EFF6;
}

/* Disclaimer block */
.disclaimer-block {
  background: #F2F6FA;
  border-left: 3px solid #2E7BFF;
  padding: 1rem 1.25rem;
  border-radius: 0 8px 8px 0;
}
