.progress-circle {    stroke-dasharray: 565.48;    stroke-dashoffset: 565.48;    transition: stroke-dashoffset 0.2s linear;}/* Modalità Sequenza Immagini / Video */.scroll-animation-section {    min-height: 100vh;    display: flex;    justify-content: center;    align-items: center;    position: relative;    padding-top: 100px; /* Offset di 100px dal top */    width: 100%;    overflow: hidden;    z-index: 1000; /* Assicura che sia sopra altri elementi */}.animation-container {    width: 100%;    max-width: 100vw;    text-align: center;}.animation-container canvas,.animation-container video,.animation-container img {    width: 100%;    height: auto;    display: block;}/* Modalità Cerchio con Step Testuali */.circle-animation-container {    position: relative;    width: 100vw;    height: calc(100vh - 150px);    text-align: center;    margin-top: 130px;    padding: 0%;}.progress-circle {    width: 100%;    max-width: 800px;    height: 100%;    transform: rotate(-90deg);    max-height: 800px;    margin: auto;}.progress-ring {    stroke-linecap: round;    transition: stroke-dashoffset 0.3s ease-out;}.circle-text {    position: absolute;    top: 50%;    left: 50%;    transform: translate(-50%, -50%);    text-align: center;    color: #333;    max-width: 400px;}.circle-text h2 {    margin: 0;    font-size: 1.5em;}.circle-text p {    margin: 0.5em 0 0;    font-size: 1em;}.circle-steps {    margin-top: 0px;    position: absolute;    top: 0;    left: 0;    right: 0;    text-align: center;    align-content: center;    padding: 1%;    max-height: 100vh;}.circle-steps > svg{    margin-left: -2%;    height: calc(100vh - 160px);}.circle-step {    text-align: center;    cursor: pointer;    transition: opacity 0.3s ease-in-out;    opacity: 0.5;}.circle-step.active {    opacity: 1;}.circle-step img {    width: 40px;    height: 40px;    display: block;    margin: 0 auto;}@media (max-width: 768px) {    .circle-animation-container {        width: 250px;        height: 250px;    }    .circle-text h2 {        font-size: 1.2em;    }    .circle-text p {        font-size: 0.9em;    }    .circle-step img {        width: 35px;        height: 35px;    }}