/* Import Inter font — all weights */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

:root {
    --brand-blue: #2A107E;  /* tailwind close equivalent use class indigo-900 */
    --brand-purple: #795ADF;  /* tailwind close equivalent use class violet-500 */
    --light-purple:#E8DFFC;  /* tailwind close equivalent use class violet-100 */
    --lighter-purple:#F5F0FF;  /* tailwind close equivalent use class violet-50 */
    --card-bg: #EADFFF;
    --array-red: #FF625A;
    --array-yellow: #FBBD00;
    --array-green: #52EE9B;
    --array-green-darker:#1DBB91;
    --array-blue: #54BDEC;
    --array-orange: #F86E14;
    --array-pink: #FF5790;
}

/* Apply Inter globally */
html, body {
  font-family: 'Inter', sans-serif;
  color: var(--brand-blue);
}

.bg-brandblue {
    background: var(--brand-blue);
}
.bg-brandpurple {
    background: var(--brand-purple);
}
.bg-lightpurple {
    background: var(--light-purple);
}
.bg-lighterpurple {
    background: var(--lighter-purple);
}
.border-lightpurple {
    border-color: var(--lighter-purple);
}
.bg-wave {
    background:var(--lighter-purple) url('../images/wave.svg') bottom right no-repeat;
}
.card-questions {
    background:var(--card-bg) url('../images/card-bg.svg') center left no-repeat;
}
.card-processing {
    background:var(--card-bg) url('../images/card-bg-noicon.svg') center left no-repeat;
}
.bg-lines {
    background:var(--lighter-purple) url('../images/demo-bg.jpg') center left no-repeat;
    background-attachment: fixed;
}
.demo-logo {
  margin-top: -80px;
    margin-left: 90px;
}

@media only screen and (max-width: 600px) {
  .demo-logo {
    margin-top: -65px;
    margin-left: 50px;
    width: 190px;
  }
  .bg-lines {
    background:var(--lighter-purple) url('../images/demo-bg-mobile.jpg') center left no-repeat;
    background-attachment: fixed;
  }

}

/* Logo entrance animation */
@keyframes fade-slide-in {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-slide-in {
  animation: fade-slide-in 0.8s ease-out forwards;
}

.bg-array-red {
  background-color: var(--array-red);
}
.bg-array-yellow {
  background-color: var(--array-yellow);
}
.bg-array-green {
  background-color: var(--array-green);
}
.bg-array-dark-green {
    background-color: var(--array-green-darker);
}
.bg-array-blue {
  background-color: var(--array-blue);
}
.bg-array-orange {
  background-color: var(--array-orange);
}
.bg-array-pink {
  background-color: var(--array-pink);
}
.bg-array-purple {
  background-color: var(--brand-purple);
}
.border-array-purple {
    border-color: var(--brand-purple);
}


.text-array-red {
  color: var(--array-red);
}
.text-array-yellow {
  color: var(--array-yellow);
}
.text-array-green {
  color: var(--array-green);
}
.text-array-blue {
  color: var(--array-blue);
}
.text-array-orange {
  color: var(--array-orange);
}
.text-array-pink {
  color: var(--array-pink);
}
.text-array-purple {
    color: var(--brand-purple);
}

/* Helper panel */
.action-extra-content {
  margin-top: 0.75rem;
  background-color: var(--lighter-purple);
  border-radius: 0.75rem;
  padding: 1rem;
  margin: 20px;
}
@media only screen and (max-width: 600px) {
  .action-extra-content {
    margin: 20px 0px;
  }
}
.action-extra-content.is-open {
  display: block;
}
.action-extra-content h3 {
  color: var(--brand-purple);
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--light-purple);
  padding-bottom: 6px;
}
.action-extra-content p {
  font-size: 15px;
    margin-bottom: 12px;
}
.action-extra-content ul {
  padding-left: 20px;
  font-size: 14px;
  margin-bottom: 22px;
}
.action-extra-content li {
  list-style: disc;
}
.action-extra-content code {
  white-space: pre-wrap;
}
.last-faq-section
{
    margin-bottom: 200px;
}
