html { scroll-behavior: smooth; }
  body { font-family: 'Inter', sans-serif; }
  .font-display { font-family: 'Sora', sans-serif; }

  .curve-path {
    stroke-dasharray: 1400;
    stroke-dashoffset: 1400;
    animation: drawline 2.4s ease-out forwards;
  }

  .glass {
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.5);
  }

  .grad-primary {
    background: linear-gradient(135deg, #ff4f91 0%, #c2771f 55%, #004085 100%);
  }

  .grad-text {
    background: linear-gradient(135deg, #ff4f91 0%, #c2771f 55%, #004085 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .card-top-grad::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, #4338CA, #2563EB, #06B6D4);
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
  }

  .blob {
    filter: blur(60px);
  }

  ::-webkit-scrollbar { width: 10px; }
  ::-webkit-scrollbar-track { background: #F1F5F9; }
  ::-webkit-scrollbar-thumb { background: #94a3b8; border-radius: 999px; }

  details > summary { list-style: none; cursor: pointer; }
  details > summary::-webkit-details-marker { display: none; }
  details[open] .faq-icon { transform: rotate(45deg); }

  .stagger > * { opacity: 0; }
  .stagger.in-view > *:nth-child(1) { animation: fadeUp .6s ease-out .05s forwards; }
  .stagger.in-view > *:nth-child(2) { animation: fadeUp .6s ease-out .15s forwards; }
  .stagger.in-view > *:nth-child(3) { animation: fadeUp .6s ease-out .25s forwards; }
  .stagger.in-view > *:nth-child(4) { animation: fadeUp .6s ease-out .35s forwards; }
  .stagger.in-view > *:nth-child(5) { animation: fadeUp .6s ease-out .45s forwards; }
  .stagger.in-view > *:nth-child(6) { animation: fadeUp .6s ease-out .55s forwards; }

  @media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
  }

/* Dots container */
.slick-dotted.slick-slider {
    margin-bottom: 0 !important;
}

.slick-dots {
    bottom: 20px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding-right: 1.5rem;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    margin: 0 2px;
    padding: 0;
    cursor: pointer;
}

/* Hide default number */
.slick-dots li button {
    font-size: 0;
    width: 10px;
    height: 10px;
    padding: 0;
}

/* Dot style */
.slick-dots li button:before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    opacity: 1;
    display: block;
    transition: all 0.3s ease;
}

/* Active dot */
.slick-dots li.slick-active button:before {
    background: #F60820;
}

.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 9999px;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
    color: #fff;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 20;
    cursor: pointer;
    transition: all .3s ease;
}

.slick-prev {
    left: -10px;
}

.slick-next {
    right: -10px;
}

.hero-slider .slick-prev {
    left: 30px;
}

.hero-slider .slick-next {
    right: 30px;
}

.slick-prev:hover,
.slick-next:hover {
    background: #F60820;
    border-color: #F60820;
    transform: translateY(-50%) scale(1.08);
}

.slick-prev i,
.slick-next i {
    font-size: 18px;
    line-height: 1;
    color: #fff;
}

.slick-prev::before,
.slick-next::before {
    display: none;
}
