.accordion-content { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.accordion-content.is-open { grid-template-rows: 1fr; }
.accordion-inner { overflow: hidden; }
/* Fix navbar sticky */
nav.sticky-nav { position: sticky; top: 0; z-index: 50; }



.flow-line { position: absolute; top: 2rem; left: 2rem; right: 2rem; height: 4px; background: #e2e8f0; z-index: 0; }
.flow-line-active { position: absolute; top: 0; left: 0; height: 100%; background: linear-gradient(90deg, #F97316, #0EA5E9); transition: width 1s ease; }
@media (max-width: 1024px) {
    .flow-line { top: 2rem; bottom: 2rem; left: 2rem; right: auto; width: 4px; height: auto; }
    .flow-line-active { height: 50%; width: 100%; background: linear-gradient(180deg, #F97316, #0EA5E9); }
}
