  :root{
    --bg: #F7F6F4;
    --card-bg: #FFFFFF;
    --text-dark: #2A2A2A;
    --text-muted: #71717A;
    --accent-gold: #E6BD3E;
    --gold: #E6BD3E;
    --accent-blue: #439BDE;
    --blue: #439BDE;
    --blue-light: #DBEDFB;
    --white: #fff;
  }

  body, html{
    background: var(--bg);
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
  }

  body{
    overflow-x: hidden;
  }

  .stagger-in__el {
    opacity: 0;
  }
  /* ---------- HEADER ---------- */

  .dropdown-menu{
    border: none;
    border-radius: 30px;
    box-shadow: 0 6px 14px -6px rgba(0,0,0,0.15);
    padding: 15px 10px !important;
  }

  .dropdown-toggle:after{
    background: url(../img/arrow-menu.svg) no-repeat;
    height: 6px;
    width: 10px;
    display: block;
    content: "";
    border: none;
  }

  .dropdown-menu li a{
    padding: 8px 8px;
  }

  .dropdown-menu li a:hover{
    border-radius: 10px;
    background: var(--blue);
    color: var(--white);
  }

  #scroll-header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.8s ease-in-out; /* Effetto transizione fluida */
    z-index: 1000;
    background: var(--white);
  }

  /* Stile dell'header dopo lo scroll */
  #scroll-header.scrolled {
    opacity: 1;
    transform: translateY(0);
  }

  .site-header{
    background: #fff;
    padding: 0;
    z-index: 20;
    border-bottom: 1px solid #EEE;
    font-family: 'Poppins', sans-serif;
    position: relative;
  }

  .brand-logo{
    display: flex;
    align-items: baseline;
    gap: .35rem;
    text-decoration: none;
  }
  .brand-logo .script{
    font-size: 1.7rem;
    color: var(--blue);
    line-height: 1;
  }
  .brand-logo .online-tag{
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: .95rem;
    color: var(--blue);
  }

  .main-nav ul{
    gap: 2.2rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .main-nav a{
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 400;
    font-size: 1.02rem;
    display: flex;
    align-items: center;
    gap: .3rem;
  }
  .main-nav a svg{ width: 16px; height: 16px; }

  .header-actions{
    display: flex;
    align-items: center;
    gap: 1.6rem;
  }

  @media (max-width: 991px){
    .header-actions{
      gap: 1rem;
    }
  }

  .link-register{
    color: var(--blue);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: .4rem;
  }
  .link-register svg{ width: 18px; height: 18px; }

  .btn-login{
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: .7rem 1.7rem;
    font-weight: 500;
    font-size: 1rem;
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .btn-login:hover{ color: #fff; background: var(--blue); transform: translateY(-2px); }

  .burger-btn{
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: .5rem;
  }
  .burger-btn span{
    width: 24px;
    height: 2.5px;
    background: var(--text-dark);
    border-radius: 2px;
  }


  .hamburger-btn {
    position: relative;
    z-index: 2000;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 8px 4px;
  }

  .line {
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transform-origin: center;
  }

  /* Menu Mobile Full-Screen */
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--blue);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Stato iniziale: nascosto */
    visibility: hidden;
    clip-path: circle(0% at top right); /* Effetto apertura a cerchio */
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .menu-item {
    color: #fff;
    text-align: center;
    font-size: calc(18px + (24 - 18) * ((100vw - 300px) / (1600 - 300)));
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    opacity: 0; /* Animato da GSAP */
  }

  /* ---------- HERO ---------- */
  .hero-section{
    position: relative;
    padding: 2rem 1rem 0rem 1rem;
  }

  .hero-inner{
    max-width: 1360px;
    margin: 0 auto;
    background: #fff;
    border-radius: 40px;
    padding: 2.5rem 3.5rem 3.5rem 3.5rem;
    position: relative;
  }

  @media (max-width: 991px){
    .hero-section{
      padding: 0;
    }
    .hero-inner{
      border-radius: 0px;
    }
  }

  .hero-badge{
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1.75rem;
  }
  .hero-badge .check-circle{
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .hero-badge .check-circle svg{
    width: 15px;
    height: 15px;
    color: #fff;
  }
  .hero-badge-text{
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-dark);
  }

  .avatar-stack{
    display: flex;
    margin-left: .5rem;
  }
  .avatar-stack img{
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
    margin-left: -10px;
  }
  .avatar-stack img:first-child{ margin-left: 0; }
  .avatar-stack .count-badge{
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--blue-light);
    color: var(--blue);
    font-weight: 600;
    font-size: .8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    margin-left: -10px;
  }

  .hero-title{
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: clamp(2.4rem, 4.2vw, 3.4rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
  }
  .hero-title .blue-text{
    color: var(--blue);
  }
  .circled-word{
    position: relative;
    display: inline-block;
  }
  .circled-word svg{
    position: absolute;
    left: -12%;
    top: -22%;
    width: 130%;
    height: 155%;
    pointer-events: none;
  }
  .circled-word span{ position: relative; }

  .hero-subtitle{
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.55;
    max-width: 560px;
    margin-bottom: 2.5rem;
  }
  .hero-subtitle strong{ color: var(--text-dark); }

  /* review card */
  .review-card{
    background: var(--blue-light);
    border-radius: 22px;
    padding: 1.75rem 2rem;
    max-width: 560px;
    position: relative;
  }

  @media (max-width: 991px){
      .hero-subtitle, .review-card{
        max-width: 100%;
      }
  }

  .stars{
    color: #F5A623;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: .25rem;
    margin-bottom: .9rem;
  }
  .stars .score{
    color: var(--text-muted);
    font-weight: 600;
    font-size: .95rem;
    margin-left: .4rem;
  }
  .review-text{
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 1.1rem;
    line-height: 1.5;
  }
  .review-meta{
    display: flex;
    align-items: center;
    gap: .6rem;
    color: var(--text-muted);
    font-size: .95rem;
  }
  .review-meta svg{
    width: 16px;
    height: 16px;
    color: var(--blue);
  }
  .review-nav{
    position: absolute;
    right: 1.7rem;
    bottom: 1.5rem;
    display: flex;
    gap: .6rem;
    z-index: 9;
  }
  .review-nav button{
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px -6px rgba(0,0,0,0.15);
    color: var(--text-dark);
  }
  .review-nav button svg{ width: 16px; height: 16px; }

  @media (max-width: 991px){
    .review-nav{
      position: relative;
      bottom: auto;
      right: auto;
      margin-top: 1rem;
    }
  }

  /* trust row */
  .trust-row{
    margin-top: 3.2rem;
    padding-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
  }
  .trust-item{
    border-right: 1px solid #EEE;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1 1 260px;
  }
  .trust-item:last-child{
    border-right: none;
  }
  .trust-icon{
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .trust-icon svg{
    width: 24px;
    height: 24px;
    color: var(--blue);
  }
  .trust-title{
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: .2rem;
  }
  .trust-text{
    color: var(--text-muted);
    font-size: .98rem;
    line-height: 1.4;
  }

  @media (max-width: 991px){
    .trust-row{
      padding-top: 0;
      padding-bottom: 1rem;
    }
  }

  /* floating search card */
  .search-card-wrap{
    position: relative;
  }
  .deco-gold{
    position: absolute;
    width: 130px; height: 130px;
    background: var(--gold);
    border-radius: 50%;
    top: -1.5rem;
    left: -3rem;
    z-index: 0;
  }
  .deco-blue-big{
    position: absolute;
    width: 180px; height: 180px;
    background: var(--blue-light);
    border-radius: 50%;
    top: 8rem;
    right: -3.5rem;
    z-index: 0;
    animation: float3 4s ease-in-out infinite alternate;
  }
  .deco-blue-small{
    position: absolute;
    width: 110px; height: 110px;
    background: var(--blue-light);
    border-radius: 50%;
    bottom: -3rem;
    left: 1rem;
    z-index: 0;
    animation: float2 4s ease-in-out infinite alternate;
  }
  .deco-gold-small{
    position: absolute;
    width: 90px; height: 90px;
    background: var(--gold);
    border-radius: 50%;
    top: 12rem;
    right: -2.5rem;
    z-index: 0;
    animation: float2 3s ease-in-out infinite alternate;
  }

  .search-card{
    background: #fff;
    border-radius: 28px;
    padding: 2.4rem 2.2rem;
    box-shadow: 0 40px 70px -25px rgba(0,0,0,0.25);
    position: relative;
    z-index: 1;
    font-family: 'Poppins', sans-serif;
  }
  .search-card-title{
    font-weight: 500;
    font-size: 1.5rem;
    margin-bottom: .3rem;
  }
  .search-card-subtitle{
    color: var(--text-muted);
    font-size: 1.02rem;
    margin-bottom: 1.6rem;
  }

  .modality-toggle{
    display: flex;
    gap: 1.8rem;
    margin-bottom: 1.6rem;
    color: var(--text-muted);
  }
  .modality-option{
    display: flex;
    align-items: center;
    gap: .55rem;
    font-weight: 400;
    font-size: 1.02rem;
    cursor: pointer;
  }
  .modality-option input{
    width: 20px;
    height: 20px;
    accent-color: var(--blue);
  }

  .search-select-wrap{
    position: relative;
    margin-bottom: 1.1rem;
  }
  .search-select-wrap select{
    width: 100%;
    padding: 1rem 1.3rem;
    border-radius: 14px;
    border: none;
    background: #F7F6F4;
    font-size: 1.02rem;
    color: var(--text-muted);
    appearance: none;
    cursor: pointer;
  }
  .search-select-wrap::after{
    content: "";
    position: absolute;
    right: 1.3rem;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2.2px solid #555;
    border-bottom: 2.2px solid #555;
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
  }

  .btn-search-psy{
    width: 100%;
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 1.1rem;
    font-weight: 600;
    font-size: 1.08rem;
    margin: .6rem 0 1.2rem 0;
    transition: transform .3s ease;
  }
  .btn-search-psy:hover{ 
    background: var(--blue); 
    color:#fff; 
    transition: transform .3s ease;
    transform: translateY(-2px);  
  }

  .search-card-footer{
    text-align: center;
    color: var(--text-muted);
    font-size: .98rem;
    margin-bottom: 0;
  }
  .search-card-footer a{
    color: var(--blue);
    font-weight: 600;
    text-decoration: underline;
  }

  @media (max-width: 991px){
    .hero-inner{ padding: 1.5rem 1.5rem; }
    .search-card-wrap{ margin-top: 0rem; }
    .main-nav{ display: none; }
  }

  /*********************/

  .steps-section{
    padding: 6rem 1rem;
    max-width: 1400px;
    margin: 0 auto;
  }

  .steps-section .arrow-3{
    bottom: -15%;
    left: 25%;
    width: auto;
  }

  .steps-section .arrow-4{
    top: 2%;
    right: 27%;
    width: auto;
  }

  .eyebrow{
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
    text-align: center;
  }

  .section-title{
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: clamp(2rem, 5vw, 3.2rem);
    text-align: center;
    margin-top: 0.5rem;
  }

  .section-subtitle{
    text-align: center;
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 620px;
    margin: 1rem auto 3.5rem auto;
    line-height: 1.5;
  }

  .steps-row{
    position: relative;
  }

  .step-card{
    background: var(--card-bg);
    border-radius: 28px;
    padding: 2.5rem 2rem;
    text-align: center;
    /*box-shadow: 0 25px 60px -20px rgba(0,0,0,0.12);*/
  }

  .step-card.center{
    transform: translateY(2.5rem);
  }

  .step-title{
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    line-height: 1.3;
  }

  .step-text{
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.55;
    max-width: 320px;
    margin: 0 auto;
  }

  /* hand-drawn circle underline behind key phrase */
  .circled{
    position: relative;
    display: inline-block;
    white-space: normal;
  }
  .circled img{
    position: absolute;
    left: -8%;
    top: -32%;
    z-index: 0;
    pointer-events: none;
  }
  .circled span{
    position: relative;
    z-index: 1;
  }

  /* connecting arrows (desktop only) */
  .arrow-svg{
    position: absolute;
    z-index: 2;
    pointer-events: none;
  }
  .arrow-1{
    bottom: -3.2rem;
    left: 32%;
    width: 20%;
    min-width: 160px;
  }
  .arrow-2{
    top: -2.8rem;
    right: 32%;
    width: 20%;
    min-width: 160px;
  }

  @media (max-width: 991px){
    .step-card.center{ transform: none; margin-top: 1.5rem; margin-bottom: 1.5rem; }
    .arrow-svg{ display: none; }
    .steps-row .col-lg-4{ margin-bottom: 1rem; }
  }


  /********/

  .psy-section{
    padding: 5rem 0rem 6rem;
    text-align: center;
    position: relative;
  }

  .psy-title{
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: clamp(2rem, 4.5vw, 3rem);
    margin-bottom: 1.25rem;
  }

  .psy-subtitle{
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 720px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.55;
  }

  .search-select{
    max-width: 480px;
    margin: 0 auto 4rem auto;
    position: relative;
  }
  .search-select select{
    width: 100%;
    padding: 1rem 1.4rem;
    border-radius: 16px;
    border: none;
    background: #fff;
    color: var(--text-muted);
    /*box-shadow: 0 15px 35px -12px rgba(0,0,0,0.15);*/
    font-size: 1.05rem;
    appearance: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;

  }
  .search-select::after{
    content: "";
    position: absolute;
    right: 1.4rem;
    top: 50%;
    width: 12px;
    height: 12px;
    border-right: 2.5px solid #333;
    border-bottom: 2.5px solid #333;
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
  }

  /* decorative floating circles */
  .deco-circle{
    position: absolute;
    border-radius: 50%;
    z-index: 0;
  }
  .deco-1{ width: 190px; height: 190px; background:#fff; top: 27rem; left: 6%; opacity:.7; animation: float2 2s ease-in-out infinite alternate;}
  .deco-2{ width: 150px; height: 150px; background: var(--blue-light); top: 40rem; left: 20%; animation: float1 4s ease-in-out infinite alternate;}
  .deco-3{ width: 170px; height: 170px; background: var(--blue-light); top: 26rem; right: 16%; animation: float2 3s ease-in-out infinite alternate;}
  .deco-4{ width: 120px; height: 120px; background: var(--gold); top: 42rem; right: 25%; animation: float3 4s ease-in-out infinite alternate;}

  .psy-carousel-wrap{
    position: relative;
    z-index: 1;
    padding: 1rem 0 0 0;
    overflow: hidden;
  }

  .psyCarousel.swiper{
    width: 100%;
    padding: 2rem 0 1rem 0;
    overflow: visible;
  }

  .psyCarousel .swiper-slide{
    width: 260px;
    transition: transform .4s ease, opacity .4s ease, filter .4s ease;
    filter: grayscale(15%);
    transform: scale(0.9);
  }
  .psyCarousel .swiper-slide.swiper-slide-active{
    opacity: 1;
    filter: none;
    transform: scale(1.08);
  }
  .psyCarousel .swiper-slide-prev,
  .psyCarousel .swiper-slide-next{
    filter: none;
  }

  .psy-photo{
    width: 100%;
    aspect-ratio: 1 / 1.05;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 45px -15px rgba(0,0,0,0.25);
    display: block;
  }

  .psy-info{
    margin-top: 1.75rem;
    min-height: 150px;
  }

  .psy-tags{
    display: flex;
    justify-content: center;
    gap: .6rem;
    flex-wrap: wrap;
    margin-bottom: .9rem;
  }
  .psy-tag{
    background: #fff;
    color: var(--blue);
    font-weight: 500;
    font-size: .95rem;
    padding: .45rem 1.2rem;
    border-radius: 999px;
    font-family: 'Poppins', sans-serif;
  }

  .psy-name{
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    margin-bottom: .15rem;
  }
  .psy-role{
    color: var(--text-muted);
    font-size: 1.05rem;
    font-family: 'Poppins', sans-serif;
  }

  .btn-see-all{
    font-family: 'Poppins', sans-serif;
    margin-top: 2.2rem;
    text-decoration: none;
    background: var(--accent-blue);
    display: table;
    padding: 20px 30px;
    justify-content: center;
    align-items: center;
    gap: 15px;
    border-radius: 100px;
    color: #fff;
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .btn-see-all:hover{
    transform: translateY(-2px);
    
  }

  @media (max-width: 576px){
    .swiper-slide{ width: 190px; }
    .deco-circle{ display:none; }
  }


  /********/

  .topics-wrap{
    padding: 5rem 1rem 8rem 1rem;
    position: relative;
  }

  .topics-panel{
    background: var(--blue-light);
    border-radius: 40px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 3.5rem 2rem 3.5rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .eyebrow{
    letter-spacing: 0.15em;
    font-size: 0.8rem;
    font-weight: 600;
    color: #444;
  }

  .topics-title{
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin: 0.6rem 0 1rem 0;
  }

  .topics-subtitle{
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 2.75rem;
  }

  .tags-wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 950px;
    margin: 0 auto 3rem auto;
  }

  .topic-pill{
    background: #fff;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 1rem 1.9rem;
    border-radius: 999px;
    transition: all .4s ease;
    text-decoration: none;
  }
  .topic-pill:hover{
    transform: translateY(-3px);
    background: var(--blue);
    color: var(--white);
	transition: all .4s ease;
  }

  .not-found-text{
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
  }

  /* decorative circles peeking below the panel */
  .deco-circle{
    position: absolute;
    border-radius: 50%;
    z-index: 0;
  }
  .deco-gold{
    width: 90px; height: 90px;
    background: var(--gold);
    bottom: -1rem;
    left: 28%;
    animation: float1 2s ease-in-out infinite alternate;
  }
  .deco-blue{
    width: 70px; height: 70px;
    background: var(--blue-light);
    bottom: -2.5rem;
    left: 22%;
    animation: float3 2s ease-in-out infinite alternate;
  }
  .deco-white{
    width: 130px; height: 130px;
    background: #fff;
    bottom: -3.5rem;
    right: 18%;
    animation: float1 3s ease-in-out infinite alternate;
  }

  @media (max-width: 576px){
    .topics-panel{ border-radius: 28px; padding: 2.5rem 1.25rem; }
    .topic-pill{ font-size: .95rem; padding: .8rem 1.4rem; }
  }


  /**************/

    .faq-section{
    padding: 5rem 1rem;
  }

  .faq-title{
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin-bottom: 1rem;
  }

  .faq-subtitle{
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.55;
    max-width: 340px;
    margin-bottom: 2.2rem;
  }

  .btn-all-questions{
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 1rem 2.2rem;
    font-weight: 600;
    font-size: 1.02rem;
    box-shadow: 0 15px 30px -10px rgba(91,141,217,0.5);
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .btn-all-questions:hover{
    transform: translateY(-2px);
    color: #fff;
  }

  /* --- Accordion (accordion-js) custom skin --- */
  .accordion-container{
  }

  .ac{
    background: #fff;
    border-radius: 20px;
    margin-bottom: 1.4rem;
    overflow: hidden;
    box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.05);
  }

  .ac-header{
    margin: 0;
  }

  .ac-trigger{
    width: 100%;
    background: transparent;
    border: none;
    text-align: left;
    padding: 1.3rem 1.75rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.15rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
  }

  /* hide the library's default arrow, we draw our own plus/x icon */
  .ac-trigger::after{
    display: none !important;
  }

  .ac-icon{
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg);
    position: relative;
  }
  .ac-icon::before,
  .ac-icon::after{
    content: "";
    position: absolute;
    background: var(--blue);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform .3s ease;
  }
  .ac-icon::before{
    width: 14px;
    height: 2.5px;
  }
  .ac-icon::after{
    width: 2.5px;
    height: 14px;
  }
  .ac.is-active .ac-icon::after{
    transform: translate(-50%, -50%) rotate(90deg) scale(0);
  }

  .ac-panel{
    background: #fff;
  }
  .ac-text{
    padding: 0 1.75rem 1.6rem 1.75rem;
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.55;
  }

  @media (max-width: 991px){
    .faq-subtitle{ max-width: 100%; }
  }


  /*****************/

  .blog-section{
    padding: 5rem 0 6rem 0;
    overflow: hidden;
  }

  .blog-title{
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: clamp(2.2rem, 5vw, 3rem);
    text-align: center;
  }

  .blog-subtitle{
    text-align: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 1rem auto 3rem auto;
  }

  .blog-swiper{
    overflow: visible;
    padding: 0 1rem;
  }

  .blog-swiper .swiper-slide{
    height: auto;
  }

  .blog-swiper .swiper-wrapper{
    align-items: stretch;
  }

  .blog-slide{
    width: 400px;
  }

  .blog-card{
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .blog-card-img-wrap{
    position: relative;
  }
  .blog-card-img{
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
  }
  .blog-like-btn{
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px -6px rgba(0,0,0,0.25);
    border: none;
    color: var(--blue);
  }
  .blog-like-btn svg{
    width: 20px;
    height: 20px;
  }

  .blog-card-body{
    padding: 1.5rem 1.6rem 1.75rem 1.6rem;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .blog-author{
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.1rem;
  }
  .blog-author img{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
  }
  .blog-author-name{
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.2;
  }
  .blog-author-loc{
    color: var(--text-muted);
    font-size: .9rem;
  }

  .blog-card-title{
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.35rem;
    margin-bottom: .75rem;
    line-height: 1.3;
  }

  .blog-card-excerpt{
    color: var(--text-muted);
    font-size: .98rem;
    line-height: 1.55;
    margin-bottom: 1.5rem;
    flex: 1;
  }

  .btn-read-more{
    background: transparent;
    color: var(--blue);
    border: 1px solid var(--blue);
    border-radius: 999px;
    font-size: .98rem;
    transition: background .2s ease, color .2s ease;
    display: block;
    width: 100%;
    padding: 9px 28px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    font-weight: 500;
  }

  .btn-read-more:hover{
    background: var(--blue);
    color: #fff;
  }

  .blog-nav-wrap{
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
  }
  .blog-nav-btn{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px -10px rgba(0,0,0,0.2);
    color: var(--text-dark);
    transition: background .2s ease, color .2s ease;
  }
  .blog-nav-btn:hover{
    background: var(--blue);
    color: #fff;
  }
  .blog-nav-btn svg{ width: 20px; height: 20px; }

  @media (max-width: 576px){
    .blog-slide{ width: 300px; }
  }


  /**********************/

  .perks-section{
    padding: 6rem 1rem;
  }

  .perks-row{
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }

  .perk-item{
    flex: 0 0 auto;
    width: 260px;
    text-align: center;
  }

  .perk-icon-circle{
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 15px 35px -15px rgba(0,0,0,0.15);
  }
  .perk-icon-circle svg{
    width: 46px;
    height: 46px;
  }

  .perk-title{
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: .9rem;
  }

  .perk-text{
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.5;
    max-width: 260px;
    margin: 0 auto;
  }

  .perk-arrow{
    flex: 1 1 auto;
    align-self: flex-start;
    margin-top: 40px;
    padding: 0 .5rem;
  }
  .perk-arrow svg{
    width: 100%;
    height: 70px;
    display: block;
  }

  @media (max-width: 1200px){
    .perk-arrow{ display: none; }
    .perks-row{
      justify-content: center;
      gap: 2.5rem;
    }
  }

  @media (max-width: 900px){
    .perks-row{
      flex-wrap: wrap;
      align-items: center;
    }
  }


  /*********************/

  .press-section{
    padding: 4.5rem 0 5rem 0;
    overflow: hidden;
  }

  .press-title{
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.9rem;
    text-align: center;
    margin-bottom: 3rem;
  }

  /* fade the edges so logos appear to enter/exit softly */
  .press-mask{
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
  }

  .press-swiper{
    overflow: visible;
  }

  .press-swiper .swiper-wrapper{
    transition-timing-function: linear !important;
  }

  .press-slide{
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .press-logo{
    height: 34px;
    max-width: 170px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .65;
  }

  /* text fallback style, in case real logo files aren't plugged in yet */
  .press-logo-text{
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: .02em;
    color: #6b6b6b;
    white-space: nowrap;
    background: var(--bg);
  }

  .press-logo-text img{
    mix-blend-mode: multiply;
  }

  /***********/
  .footer-wrap{
    padding: 3rem 1rem;
  }

  .site-footer{
    background: var(--blue);
    border-radius: 36px;
    max-width: 1500px;
    margin: 0 auto;
    padding: 3.5rem 3rem 0 3rem;
    color: var(--white);
    overflow: hidden;
  }

  /* logo */
  .footer-logo{
    display: flex;
    align-items: baseline;
    gap: .4rem;
    margin-bottom: 1.75rem;
  }

  footer .accordion-container{
    margin-bottom: 2.5rem;
  }

  footer .ac{
    background: transparent;
    box-shadow: 0 0 0 0;
    border-bottom: 1px solid rgba(255,255,255,0.6);
    border-radius: 0;
    margin-bottom: 0;
  }

  footer .ac-trigger{
    padding: 1.2rem 0rem;
    color: var(--white);
  }

  footer .ac-panel{
    background: transparent;
  }

  footer .ac-panel ul{
    margin: 0;
    padding: 0;
    list-style: none;
  }

  footer .ac-panel ul li{
    margin-bottom: 1rem;
  }

  @media (max-width: 991px){
    .footer-logo{
      margin: 0 auto 1.75rem;
      display: table;
    }
    .company-name, .company-info, .partner-line{
      text-align: center;
    }

    .social-icons{
      justify-content: center;
    }
  }

  .footer-logo .online-tag{
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: #fff;
    opacity: .9;
  }

  .company-name{
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: .5rem;
  }
  .company-info{
    font-size: .98rem;
    line-height: 1.6;
  }
  .company-info a{
    color: #fff;
    text-decoration: underline;
  }

  .partner-line{
    margin-top: 1.4rem;
    font-size: .95rem;
  }
  .partner-line a{
    color: #fff;
    text-decoration: underline;
  }

  .social-icons{
    display: flex;
    gap: 1rem;
    margin-top: 1.6rem;
  }
  .social-icons a{ 
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
  }
  .social-icons a:hover{
    opacity: 0.8;
    transition: all .2s ease;
  }
  .social-icons svg{
    width: 18px;
    height: 18px;
  }

  .footer-col-title{
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }

  .footer-links{
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-links li{
    margin-bottom: 1.15rem;
  }
  .footer-links a{
    color: #fff;
    text-decoration: none;
    font-size: 1.05rem;
    opacity: .95;
    transition: opacity .2s ease;
  }
  .footer-links a:hover{
    opacity: 1;
    text-decoration: underline;
  }

  /* hand-drawn circle around "Iscriviti" */
  .circled-word{
    position: relative;
    display: inline-block;
  }
  .circled-word svg{
    position: absolute;
    left: -14%;
    top: -35%;
    width: 128%;
    height: 175%;
    pointer-events: none;
  }
  .circled-word span{
    position: relative;
    font-weight: 700;
  }

  .footer-bottom{
    border-top: 1px solid rgba(255,255,255,.3);
    margin-top: 3rem;
    padding: 1.6rem 0;
    text-align: center;
    font-size: .92rem;
    line-height: 1.6;
  }
  .footer-bottom a{
    color: #fff;
    text-decoration: underline;
  }

  @media (max-width: 991px){
    .steps-section, .psy-section, .topics-wrap, .faq-section, .blog-section, .perks-section, .press-section{
      padding-bottom: 0;
    }
  }

  @media (max-width: 767px){
    .site-footer{ padding: 2.5rem 1.5rem 0 1.5rem; border-radius: 26px; }
    .footer-col-title{ margin-top: 1.5rem; }
  }

  @keyframes float1 {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-15px); /* Spostamento verso l'alto di 15px */
    }
  }

  @keyframes float2 {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(30px); 
    }
  }

  @keyframes float3 {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-20px); 
    }
  }