/* -------------------------------------------------------------------------------- */
						/* ! PAGINA HOME PAGE */
/* -------------------------------------------------------------------------------- */

/*---- Banner Home page ---- */

.pl-highlights{

    margin-top:-65px;
    position:relative;
    z-index:10;

}

.pl-highlights-container{

    max-width:1320px;

    margin:auto;

    background:#FFF8F3;

    border-radius:24px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    overflow:hidden;

    box-shadow:0 18px 45px rgba(0,0,0,.4);

}

.pl-highlight{

    padding:38px 34px;

    display:flex;

    align-items:flex-start;

    gap:18px;

    position:relative;

}

.pl-highlight:not(:last-child)::after{

    content:"";

    position:absolute;

    right:0;

    top:50%;

    transform:translateY(-50%);

    width:1px;

    height:65%;

    background:#ECE3DD;

}

.pl-highlight-icon{

    width:66px;

    height:66px;

    border-radius:50%;

    background:rgba(255,107,74,.10);

    display:flex;

    justify-content:center;

    align-items:center;

    flex-shrink:0;

}

.pl-highlight-icon i{

    font-size:28px;

    color:var(--primary);

}

.pl-highlight-text h3{

    margin:0 0 8px;

    font-size:1.15rem;

    color:var(--text);

}

.pl-highlight-text p{

    margin:0;

    font-size:.95rem;

    line-height:1.6;

    color:#666;

}

@media(max-width:1100px){

.pl-highlights-container{

grid-template-columns:repeat(2,1fr);

}

.pl-highlight:nth-child(2)::after{

display:none;

}

}

@media(max-width:768px){

.pl-highlights{

margin-top:35px;

}

.pl-highlights-container{

grid-template-columns:1fr;

}

.pl-highlight{

padding:28px;

}

.pl-highlight::after{

display:none;

}

}


/*---- Come funziona ---- */
/* Timeline */

.pl-timeline {
    position: relative;

    padding: 120px 20px;

    background: #ffffff;

    overflow: hidden;
}


/* Intestazione */

.pl-timeline .pl-section-heading {
    max-width: 780px;

    margin: 0 auto 70px;

    text-align: center;
}


.pl-timeline .pl-section-heading h2 {
    margin-bottom: 22px;
}


.pl-timeline .pl-section-heading h2 span {
    color: var(--primary);
}


.pl-timeline .pl-section-heading p {
    max-width: 680px;

    margin-right: auto;
    margin-left: auto;

    color: var(--muted);

    line-height: 1.7;
}



.pl-timeline-wrapper {
    position: relative;

    max-width: 1050px;

    margin: 0 auto;
}


/* LINEA CENTRALE */

.pl-timeline-line {
    position: absolute;

    top: 25px;
    bottom: 25px;
    left: 50%;

    width: 4px;

    transform: translateX(-50%);

    background: linear-gradient(
        to bottom,
        var(--primary),
        var(--secondary)
    );

    border-radius: 999px;
}


/* Elementi */

.pl-timeline-item {
    position: relative;

    width: 50%;

    padding: 20px 60px 35px;
}


/* Sinistra */

.pl-timeline-item.left {
    left: 0;

    text-align: right;
}


/* Destra */

.pl-timeline-item.right {
    left: 50%;

    text-align: left;
}


/* Punti sulla linea */

.pl-timeline-item::after {
    content: "";

    position: absolute;

    top: 55px;

    z-index: 5;

    width: 18px;
    height: 18px;

    background: var(--primary);

    border: 4px solid #ffffff;

    border-radius: 50%;

    box-shadow: 0 0 0 4px rgba(255, 107, 74, 0.15);
}


.pl-timeline-item.left::after {
    right: -9px;
}


.pl-timeline-item.right::after {
    left: -9px;
}


/* Card */

.pl-timeline-card {
    position: relative;

    padding: 32px 30px;

    background: var(--avorio);

    border: 1px solid rgba(230, 230, 230, 0.9);

    border-radius: 24px;

    box-shadow: 0 12px 35px rgba(45, 45, 45, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* Hover */

.pl-timeline-card:hover {
    transform: translateY(-6px);

    border-color: rgba(255, 107, 74, 0.25);

    box-shadow: 0 22px 48px rgba(45, 45, 45, 0.11);
}


/* Icona */

.pl-time-icon {
    display: flex;

    width: 58px;
    height: 58px;

    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    color: var(--primary);

    background: rgba(255, 107, 74, 0.10);

    border-radius: 50%;

    font-size: 1.3rem;

    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease;
}


/* Icona card a sinistra */

.pl-timeline-item.left .pl-time-icon {
    margin-left: auto;
}


/* Hover icona */

.pl-timeline-card:hover .pl-time-icon {
    color: #ffffff;

    background: var(--primary);

    transform: scale(1.06);
}


/* Testi card */

.pl-timeline-card h3 {
    margin: 0 0 12px;

    color: var(--text);

    font-family: "DM Sans", sans-serif;

    font-size: 1.3rem;
    font-weight: 700;

    line-height: 1.25;
}


.pl-timeline-card p {
    margin: 0;

    color: var(--muted);

    font-family: "Manrope", sans-serif;

    font-size: 0.94rem;

    line-height: 1.7;
}


/* Pulsante finale */

.pl-timeline-button {
    display: flex;

    justify-content: center;

    margin-top: 55px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .pl-timeline {
        padding: 100px 25px;
    }


    .pl-timeline .pl-section-heading {
        margin-bottom: 55px;
    }


    /* LINEA A SINISTRA */

    .pl-timeline-line {
        left: 29px;

        transform: none;
    }


    /* TUTTE LE CARD A DESTRA */

    .pl-timeline-item,
    .pl-timeline-item.left,
    .pl-timeline-item.right {
        left: 0;

        width: 100%;

        padding: 15px 0 30px 80px;

        text-align: left;
    }


    /* PUNTI */

    .pl-timeline-item.left::after,
    .pl-timeline-item.right::after {
        top: 50px;
        right: auto;
        left: 21px;
    }


    /* ICONE */

    .pl-timeline-item.left .pl-time-icon {
        margin-left: 0;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .pl-timeline {
        padding: 80px 18px;
    }


    .pl-timeline .pl-section-heading {
        margin-bottom: 45px;
    }


    /* TIMELINE */

    .pl-timeline-wrapper {
        max-width: 100%;
    }


    .pl-timeline-line {
        left: 18px;

        width: 3px;
    }


    .pl-timeline-item,
    .pl-timeline-item.left,
    .pl-timeline-item.right {
        padding:
            10px
            0
            25px
            52px;
    }


    /* PUNTI */

    .pl-timeline-item.left::after,
    .pl-timeline-item.right::after {
        top: 43px;
        left: 11px;

        width: 16px;
        height: 16px;

        border-width: 3px;
    }


    /* CARD */

    .pl-timeline-card {
        padding: 27px 23px;

        border-radius: 20px;
    }


    /* ICONA */

    .pl-time-icon {
        width: 52px;
        height: 52px;

        margin-bottom: 18px;

        font-size: 1.15rem;
    }


    /* TESTI */

    .pl-timeline-card h3 {
        font-size: 1.2rem;
    }


    .pl-timeline-card p {
        font-size: 0.9rem;

        line-height: 1.65;
    }


    /* PULSANTE */

    .pl-timeline-button {
        margin-top: 35px;
    }


    .pl-timeline-button .pl-btn {
        width: 100%;

        min-width: 0;
    }

}


/* =========================================================
   MOBILE PICCOLO
   ========================================================= */

@media (max-width: 420px) {

    .pl-timeline-card {
        padding: 24px 20px;
    }


    .pl-timeline-item,
    .pl-timeline-item.left,
    .pl-timeline-item.right {
        padding-left: 48px;
    }

}


/* -------- Banner Supporto Personalizzato --------------- */

.pl-services-intro {
  padding: 100px 20px;
  background: var(--white);
}

.pl-services-intro__content {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.pl-services-intro__content h2 {
  margin-bottom: 24px;
}

.pl-services-intro__content h2 span {
  color: var(--primary);
}

.pl-services-intro__content p {
  margin-bottom: 0;
}


/* =========================================================
   PAGINA CHI SONO
   ========================================================= */

/* ------- Sezione Piacere Valentina ---------*/

.pl-about{

    padding:100px 0;

    background:#ffffff;

}

.pl-about-wrapper{

    display:grid;

    grid-template-columns:520px 1fr;

    align-items:center;

    gap:90px;

}

.pl-about-image{

    position:relative;

}

.pl-about-image img{

    width:100%;

    border-radius:28px;

    box-shadow:0 30px 60px rgba(0,0,0,.12);

}

.pl-about-badge{

    position:absolute;

    bottom:35px;

    right:-35px;

    width:170px;

    height:170px;

    background:var(--primary);

    border-radius:50%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    color:#fff;

    box-shadow:0 20px 40px rgba(255,107,74,.35);

}

.pl-about-badge span{

    font-size:3rem;

    font-family:'DM Sans',sans-serif;

    font-weight:700;

    line-height:1;

}

.pl-about-badge small{

    font-size:.9rem;

    text-align:center;

    width:80%;

    margin-top:8px;

}

.section-kicker{

    display:inline-block;

    margin-bottom:18px;

    color:var(--primary);

    font-size:.9rem;

    font-weight:700;

    letter-spacing:.12em;

}

.pl-about-content h2{

    max-width:620px;

    margin-bottom:30px;

}

.pl-about-content h2 span{

    color:var(--primary);

}

.pl-about-content p{

    max-width:680px;

    margin-bottom:24px;

}

.pl-about-points{

    display:grid;

    gap:16px;

    margin:40px 0;

}

.pl-point{

    display:flex;

    align-items:center;

    gap:16px;

}

.pl-point i{

    color:var(--primary);

    font-size:1.3rem;

}

.pl-point span{

    font-weight:600;

}

/*============================
RESPONSIVE
============================*/

@media(max-width:1100px){

.pl-about-wrapper{

grid-template-columns:1fr;

gap:60px;

}

.pl-about-image{

max-width:520px;

margin:auto;

}

.pl-about-content{

text-align:center;

}

.pl-about-content h2,

.pl-about-content p{

max-width:100%;

}

.pl-about-points{

justify-content:center;

}

.pl-point{

justify-content:center;

}

}

@media(max-width:768px){

.pl-about{

padding:90px 0;

}

.pl-about-badge{

width:120px;

height:120px;

right:15px;

bottom:15px;

}

.pl-about-badge span{

font-size:2rem;

}

.pl-about-badge small{

font-size:.75rem;

}

}

/* ---- Sezione STUDI E CARRIERA ------ */

.pl-studies-career {
  width: 100%;

  padding: 110px 20px;

  background: #fff8f3;
}


.pl-studies-career__container {
  width: 100%;
  max-width: var(--container-wide, 1280px);

  margin: 0 auto;
}


.pl-studies-career__content {
  max-width: 1050px;

  margin: 0 auto;
}


.pl-studies-career__kicker {
  display: block;

  margin-bottom: 20px;

  color: var(--primary);

  font-family: "DM Sans", sans-serif;

  font-size: 0.82rem;
  font-weight: 800;

  letter-spacing: 0.1em;

  text-transform: uppercase;
}


/* Titolo */

.pl-studies-career__content h2 {
  max-width: 950px;

  margin: 0 0 35px;

  color: var(--text);

  font-family: "DM Sans", sans-serif;

  font-size: clamp(2.5rem, 4.5vw, 4.2rem);

  line-height: 1.05;

  letter-spacing: -0.045em;
}


.pl-studies-career__content h2 span {
  color: var(--primary);
}


/* Testo */

.pl-studies-career__text {
  max-width: 920px;
}


.pl-studies-career__text p {
  margin: 0 0 18px;

  color: var(--muted);

  font-family: "Manrope", sans-serif;

  font-size: 1rem;

  line-height: 1.8;
}


.pl-studies-career__text p:last-child {
  margin-bottom: 0;
}


/* Trafiletto presentazione */

.pl-studies-career__pdf {
  display: grid;

  grid-template-columns:
    auto
    minmax(0, 1fr)
    auto;

  gap: 25px;

  align-items: center;

  max-width: 1050px;

  margin: 60px auto 0;

  padding: 30px 32px;

  background: rgba(255, 255, 255, 0.72);

  border-top: 3px solid var(--primary);

  border-radius: 0 0 18px 18px;
}


/* Icona */

.pl-studies-career__pdf-icon {
  display: flex;

  width: 58px;
  height: 58px;

  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  color: var(--primary);

  background: rgba(255, 107, 74, 0.1);

  border-radius: 50%;

  font-size: 1.4rem;
}


/* Testo trafiletto */

.pl-studies-career__pdf-content > span {
  display: block;

  margin-bottom: 7px;

  color: var(--primary);

  font-family: "DM Sans", sans-serif;

  font-size: 0.7rem;
  font-weight: 800;

  letter-spacing: 0.09em;

  text-transform: uppercase;
}


.pl-studies-career__pdf-content h3 {
  margin: 0 0 6px;

  color: var(--text);

  font-family: "DM Sans", sans-serif;

  font-size: 1.2rem;

  line-height: 1.3;
}


.pl-studies-career__pdf-content p {
  margin: 0;

  color: var(--muted);

  font-family: "Manrope", sans-serif;

  font-size: 0.86rem;

  line-height: 1.55;
}


/* Pulsante */

.pl-studies-career__button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 10px;

  padding: 14px 21px;

  color: #ffffff !important;

  background: var(--primary);

  border: 2px solid var(--primary);

  border-radius: 50px;

  font-family: "DM Sans", sans-serif;

  font-size: 0.85rem;
  font-weight: 800;

  line-height: 1.2;

  text-align: center;
  text-decoration: none;

  white-space: nowrap;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}


.pl-studies-career__button i {
  color: inherit;

  font-size: 0.75rem;

  transition: transform 0.25s ease;
}


/* Hover */

.pl-studies-career__button:hover,
.pl-studies-career__button:focus {
  color: var(--primary) !important;

  background: #ffffff !important;

  border-color: var(--primary) !important;

  transform: translateY(-2px);

  box-shadow: 0 8px 22px rgba(255, 107, 74, 0.15);
}


.pl-studies-career__button:hover i,
.pl-studies-career__button:focus i {
  color: var(--primary) !important;

  transform: translateX(4px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .pl-studies-career {
    padding: 90px 30px;
  }


  .pl-studies-career__pdf {
    grid-template-columns: auto 1fr;

    gap: 20px;
  }


  .pl-studies-career__pdf-action {
    grid-column: 1 / -1;

    padding-left: 78px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .pl-studies-career {
    padding: 75px 20px;
  }


  /* TITOLO */

  .pl-studies-career__content h2 {
    margin-bottom: 28px;

    font-size: 2.35rem;

    line-height: 1.08;
  }


  /* TESTO */

  .pl-studies-career__text p {
    font-size: 0.95rem;

    line-height: 1.7;
  }


  /* TRAFILETTO */

  .pl-studies-career__pdf {
    display: block;

    margin-top: 45px;

    padding: 27px 23px;

    border-radius: 0 0 16px 16px;
  }


  .pl-studies-career__pdf-icon {
    width: 52px;
    height: 52px;

    margin-bottom: 20px;
  }


  .pl-studies-career__pdf-content h3 {
    font-size: 1.15rem;
  }


  .pl-studies-career__pdf-content p {
    font-size: 0.86rem;
  }


  .pl-studies-career__pdf-action {
    padding-left: 0;

    margin-top: 22px;
  }


  /* BOTTONE FULL WIDTH */

  .pl-studies-career__button {
    width: 100%;

    padding: 14px 18px;

    white-space: normal;
  }

}


/* =========================================================
   MOBILE PICCOLO
   ========================================================= */

@media (max-width: 420px) {

  .pl-studies-career {
    padding: 65px 18px;
  }


  .pl-studies-career__content h2 {
    font-size: 2.05rem;
  }

}


/*---- Timeline il mio percorso ---- */

.pl-career {
  padding: 110px 20px;
  background: #fff;
}

.pl-career__timeline {
  position: relative;
  max-width: 1100px;
  margin: 80px auto 0;
}


/* LINEA CENTRALE */

.pl-career__line {
  position: absolute;

  top: 0;
  bottom: 0;
  left: 50%;

  width: 4px;

  transform: translateX(-50%);

  background: linear-gradient(
    to bottom,
    var(--primary),
    var(--secondary)
  );

  border-radius: 30px;
}


/* Elementi timeline */

.pl-career__item {
  position: relative;

  width: 50%;

  padding: 30px 60px;
}

.pl-career__item--left {
  left: 0;

  text-align: right;
}

.pl-career__item--right {
  left: 50%;
}


/* Marker centrale */

.pl-career__marker {
  position: absolute;

  top: 55px;

  z-index: 10;

  display: flex;

  width: 46px;
  height: 46px;

  align-items: center;
  justify-content: center;

  color: var(--white);

  background: var(--primary);

  border: 6px solid #fff;

  border-radius: 50%;

  box-shadow: 0 0 0 6px rgba(255, 107, 74, 0.15);

  font-size: 0.95rem;
}

.pl-career__item--left .pl-career__marker {
  right: -23px;
}

.pl-career__item--right .pl-career__marker {
  left: -23px;
}


/* Card */

.pl-career__card {
  position: relative;

  padding: 36px;

  background: #fff8f3;

  border: 1px solid rgba(255, 107, 74, 0.08);

  border-radius: 24px;

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.pl-career__card:hover {
  transform: translateY(-8px);

  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}


/* Label */

.pl-career__label {
  display: block;

  margin-bottom: 12px;

  color: var(--primary);

  font-family: "DM Sans", sans-serif;

  font-size: 0.75rem;
  font-weight: 800;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

.pl-career__card h3 {
  margin: 0 0 16px;

  color: var(--text);

  font-size: 1.45rem;

  line-height: 1.2;
}

.pl-career__card p {
  margin: 0 0 24px;

  color: var(--muted);

  font-size: 0.96rem;

  line-height: 1.65;
}


/* Bottone Scopri di più */

.pl-career__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 9px;

  margin-top: 5px;
  padding: 11px 18px;

  color: var(--primary);
  background-color: transparent;

  border: 2px solid var(--primary);
  border-radius: 50px;

  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 800;

  line-height: 1;

  cursor: pointer;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}


/* Freccia */

.pl-career__button i {
  color: inherit;

  font-size: 0.8rem;

  transition: transform 0.25s ease;
}


/* Hover */

.pl-career__button:hover,
.pl-career__button:focus {
  color: #ffffff !important;

  background-color: var(--primary) !important;

  border-color: var(--primary) !important;

  box-shadow: 0 8px 20px rgba(255, 107, 74, 0.22);
}


/* Freccia bianca in hover */

.pl-career__button:hover i,
.pl-career__button:focus i {
  color: #ffffff !important;

  transform: translateX(4px);
}


/* Click */

.pl-career__button:active {
  transform: scale(0.97);
}


/* Modali */

.pl-modal {
  position: fixed;

  inset: 0;

  z-index: 99999;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 30px;

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}


/* Modale aperto */

.pl-modal.is-open {
  opacity: 1;

  visibility: visible;

  pointer-events: auto;
}


/* Sfondo */

.pl-modal__overlay {
  position: absolute;

  inset: 0;

  background: rgba(20, 28, 34, 0.72);

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}


/* Finestra modale */

.pl-modal__dialog {
  position: relative;

  z-index: 2;

  width: 100%;
  max-width: 760px;
  max-height: calc(100vh - 60px);

  padding: 52px;

  overflow-y: auto;

  background: #fff;

  border-radius: 30px;

  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.25);

  transform: translateY(25px) scale(0.97);

  transition: transform 0.3s ease;
}

.pl-modal.is-open .pl-modal__dialog {
  transform: translateY(0) scale(1);
}


/* Chiusura */

.pl-modal__close {
  position: absolute;

  top: 22px;
  right: 22px;

  display: flex;

  width: 42px;
  height: 42px;

  align-items: center;
  justify-content: center;

  padding: 0;

  color: var(--text);

  background: #fff8f3;

  border: 0;

  border-radius: 50%;

  font-size: 1.15rem;

  cursor: pointer;

  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.pl-modal__close:hover {
  color: var(--white);

  background: var(--primary);

  transform: rotate(90deg);
}


/* Icona */

.pl-modal__icon {
  display: flex;

  width: 68px;
  height: 68px;

  align-items: center;
  justify-content: center;

  margin-bottom: 25px;

  color: var(--primary);

  background: rgba(255, 107, 74, 0.1);

  border-radius: 20px;

  font-size: 1.6rem;
}


/* Testi modale */

.pl-modal__kicker {
  display: block;

  margin-bottom: 12px;

  color: var(--primary);

  font-family: "DM Sans", sans-serif;

  font-size: 0.78rem;
  font-weight: 800;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

.pl-modal__dialog h2 {
  max-width: 650px;

  margin: 0 0 28px;

  color: var(--text);

  font-size: clamp(2rem, 4vw, 3rem);

  line-height: 1.08;

  letter-spacing: -0.035em;
}

.pl-modal__dialog h2 span {
  color: var(--primary);
}

.pl-modal__content p {
  margin: 0 0 18px;

  color: var(--muted);

  font-size: 1rem;

  line-height: 1.75;
}

.pl-modal__content p:last-child {
  margin-bottom: 0;
}


/* Tag specializzazioni */

.pl-modal__tags {
  display: flex;

  flex-wrap: wrap;

  gap: 9px;

  margin-top: 27px;
}

.pl-modal__tags span {
  display: inline-flex;

  padding: 9px 14px;

  color: var(--primary);

  background: rgba(255, 107, 74, 0.09);

  border: 1px solid rgba(255, 107, 74, 0.16);

  border-radius: 30px;

  font-size: 0.8rem;
  font-weight: 700;
}


/* Blocca scroll quando modale aperto */

body.pl-modal-open {
  overflow: hidden;
}


/* =========================================================
   RESPONSIVE TIMELINE
   ========================================================= */

@media (max-width: 900px) {

  .pl-career__line {
    left: 35px;

    transform: none;
  }

  .pl-career__item {
    left: 0 !important;

    width: 100%;

    padding: 0 0 45px 90px;

    text-align: left;
  }

  .pl-career__item--left,
  .pl-career__item--right {
    left: 0;
  }

  .pl-career__item .pl-career__marker {
    top: 30px;
    left: 13px;
    right: auto;
  }

}


/* =========================================================
   RESPONSIVE MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .pl-career {
    padding: 80px 18px;
  }

  .pl-career__timeline {
    margin-top: 55px;
  }

  .pl-career__line {
    left: 22px;
  }

  .pl-career__item {
    padding-left: 60px;
  }

  .pl-career__item .pl-career__marker {
    left: 0;

    width: 44px;
    height: 44px;
  }

  .pl-career__card {
    padding: 28px 24px;

    border-radius: 20px;
  }

  .pl-career__card h3 {
    font-size: 1.25rem;
  }


  /* MODALE MOBILE */

  .pl-modal {
    padding: 15px;
  }

  .pl-modal__dialog {
    max-height: calc(100vh - 30px);

    padding: 38px 25px 32px;

    border-radius: 24px;
  }

  .pl-modal__close {
    top: 16px;
    right: 16px;

    width: 38px;
    height: 38px;
  }

  .pl-modal__icon {
    width: 58px;
    height: 58px;

    margin-bottom: 20px;

    border-radius: 17px;

    font-size: 1.35rem;
  }

  .pl-modal__dialog h2 {
    padding-right: 10px;

    font-size: 1.9rem;
  }

  .pl-modal__content p {
    font-size: 0.95rem;

    line-height: 1.65;
  }

}

/* ------------------------------------------------ */
                       /*PAGINA SERVIZI*/
/* ------------------------------------------------ */

/*----  Sezione A chi mi rivolgo ---- */


/* Sezione */

.pl-target {
    padding: 130px 20px;
    background: var(--avorio);
}


/* Intestazione */

.pl-target .pl-section-heading {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.pl-target .pl-section-heading h2 {
    margin-bottom: 22px;
}

.pl-target .pl-section-heading h2 span {
    color: var(--primary);
}

.pl-target .pl-section-heading p {
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;

    color: var(--muted);
    line-height: 1.75;
}


/* Griglia */

.pl-target-grid {
    display: grid;

    /*
     * Utilizziamo 6 colonne virtuali.
     * Le prime 3 card occupano 2 colonne ciascuna.
     * Le ultime 2 vengono centrate nella seconda riga.
     */
    grid-template-columns: repeat(6, 1fr);

    gap: 28px;

    max-width: 1180px;
    margin: 65px auto 0;
}


/* Prima riga */

.pl-target-card:nth-child(1) {
    grid-column: 1 / 3;
}

.pl-target-card:nth-child(2) {
    grid-column: 3 / 5;
}

.pl-target-card:nth-child(3) {
    grid-column: 5 / 7;
}


/* Seconda riga centrata */

.pl-target-card:nth-child(4) {
    grid-column: 2 / 4;
}

.pl-target-card:nth-child(5) {
    grid-column: 4 / 6;
}


/* Card */

.pl-target-card {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    min-height: 100%;

    padding: 38px 34px;

    overflow: hidden;

    background: var(--white);

    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* Decorazione leggera */

.pl-target-card::after {
    content: "";

    position: absolute;

    top: -55px;
    right: -55px;

    width: 135px;
    height: 135px;

    background: rgba(255, 107, 74, 0.045);

    border-radius: 50%;

    pointer-events: none;

    transition: transform 0.35s ease;
}


/* Hover card */

.pl-target-card:hover {
    transform: translateY(-8px);

    border-color: rgba(255, 107, 74, 0.20);

    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.10);
}

.pl-target-card:hover::after {
    transform: scale(1.15);
}


/* Icona */

.pl-target-icon {
    position: relative;
    z-index: 2;

    display: flex;

    width: 64px;
    height: 64px;

    flex-shrink: 0;

    align-items: center;
    justify-content: center;

    margin-bottom: 26px;

    color: var(--primary);

    background: rgba(255, 107, 74, 0.10);

    border-radius: 50%;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.pl-target-icon i {
    font-size: 1.45rem;
}


/* Hover icona */

.pl-target-card:hover .pl-target-icon {
    color: var(--white);

    background: var(--primary);

    transform: scale(1.06);
}


/* Titolo card */

.pl-target-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 15px;

    color: var(--text);

    font-family: "DM Sans", sans-serif;

    font-size: 1.3rem;
    font-weight: 700;

    line-height: 1.3;
}


/* Testo card */

.pl-target-card p {
    position: relative;
    z-index: 2;

    margin: 0;

    color: var(--muted);

    font-family: "Manrope", sans-serif;

    font-size: 0.93rem;

    line-height: 1.72;
}


/* =========================================================
  						 RESPONSIVE
   ========================================================= */

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .pl-target {
        padding: 100px 25px;
    }


    .pl-target-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 24px;

        margin-top: 50px;
    }


    /*
     * Annulliamo il posizionamento desktop
     */

    .pl-target-card:nth-child(1),
    .pl-target-card:nth-child(2),
    .pl-target-card:nth-child(3),
    .pl-target-card:nth-child(4),
    .pl-target-card:nth-child(5) {
        grid-column: auto;
    }


    /*
     * Quinta card centrata
     */

    .pl-target-card:nth-child(5) {
        grid-column: 1 / -1;

        width: calc(50% - 12px);

        justify-self: center;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .pl-target {
        padding: 80px 18px;
    }


    .pl-target .pl-section-heading {
        text-align: left;
    }


    .pl-target .pl-section-heading p {
        margin-left: 0;
    }


    .pl-target-grid {
        grid-template-columns: 1fr;

        gap: 20px;

        margin-top: 42px;
    }


    /*
     * Tutte le card occupano l'intera larghezza
     */

    .pl-target-card:nth-child(1),
    .pl-target-card:nth-child(2),
    .pl-target-card:nth-child(3),
    .pl-target-card:nth-child(4),
    .pl-target-card:nth-child(5) {
        grid-column: auto;

        width: 100%;
    }


    .pl-target-card {
        padding: 30px 26px;

        border-radius: 20px;
    }


    .pl-target-icon {
        width: 58px;
        height: 58px;

        margin-bottom: 22px;
    }


    .pl-target-icon i {
        font-size: 1.3rem;
    }


    .pl-target-card h3 {
        font-size: 1.22rem;
    }


    .pl-target-card p {
        font-size: 0.91rem;

        line-height: 1.68;
    }

}


/* =========================================================
   MOBILE PICCOLO
   ========================================================= */

@media (max-width: 420px) {

    .pl-target {
        padding: 70px 18px;
    }


    .pl-target-card {
        padding: 27px 22px;
    }

}

/* ---- Sezione Ambiti di specializzazione / Autismo e CAA ---- */

.pl-specialization {
    position: relative;
    padding: 120px 20px;
    overflow: hidden;
    background: var(--avorio);
}


/* =========================================================
   STRUTTURA
   ========================================================= */

.pl-specialization__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    gap: 75px;
    max-width: 1180px;
    margin: 0 auto;
    align-items: center;
}

.pl-specialization__content {
    max-width: 680px;
}


/* =========================================================
   CONTENUTO PRINCIPALE
   ========================================================= */

.pl-specialization__content .section-kicker {
    margin-bottom: 18px;
}

.pl-specialization__content h2 {
    margin: 0 0 24px;
    font-size: clamp(2.6rem, 4.5vw, 4.2rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.pl-specialization__content h2 span {
    color: var(--primary);
}

.pl-specialization__content > h3 {
    max-width: 580px;
    margin: 0 0 30px;
    font-size: 1.45rem;
    line-height: 1.35;
}

.pl-specialization__text p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 0.97rem;
    line-height: 1.8;
}

.pl-specialization__text p:last-child {
    margin-bottom: 0;
}

.pl-specialization__text strong {
    color: var(--text);
}


/* SPAZIO PRIMA DEL PULSANTE GLOBALE */

.pl-specialization__content > .pl-btn {
    margin-top: 32px;
}


/* =========================================================
   CARD AUTISMO E CAA
   ========================================================= */

.pl-specialization__visual {
    position: relative;
    padding: 48px 42px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    box-shadow: 0 20px 55px rgba(45, 45, 45, 0.08);
}


/* DECORAZIONI */

.pl-specialization__visual::before,
.pl-specialization__visual::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.pl-specialization__visual::before {
    top: -90px;
    right: -90px;
    width: 230px;
    height: 230px;
    background: rgba(0, 168, 168, 0.07);
}

.pl-specialization__visual::after {
    bottom: -75px;
    left: -75px;
    width: 180px;
    height: 180px;
    background: rgba(255, 107, 74, 0.06);
}


/* =========================================================
   ICONA
   ========================================================= */

.pl-specialization__visual-icon {
    position: relative;
    z-index: 2;
    display: flex;
    width: 66px;
    height: 66px;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: var(--secondary);
    background: rgba(0, 168, 168, 0.10);
    border-radius: 20px;
    font-size: 1.45rem;
}


/* =========================================================
   CONTENUTO CARD
   ========================================================= */

.pl-specialization__visual-kicker {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.pl-specialization__visual h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 18px;
    font-size: 2rem;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.pl-specialization__visual h3 span {
    color: var(--secondary);
}

.pl-specialization__visual > p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: var(--muted);
    font-size: 0.93rem;
    line-height: 1.7;
}


/* =========================================================
   STRUMENTI CAA
   ========================================================= */

.pl-specialization__tools {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 30px;
}

.pl-specialization__tool {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: var(--avorio);
    border-radius: 13px;
    font-size: 0.82rem;
    font-weight: 600;
}

.pl-specialization__tool i {
    width: 18px;
    color: var(--primary);
    text-align: center;
}


/* =========================================================
   LINK APPROFONDIMENTO
   ========================================================= */

.pl-specialization__discover {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 28px;
    color: var(--primary);
    font-size: 0.86rem;
    font-weight: 800;
    text-decoration: none;
}

.pl-specialization__discover i {
    font-size: 0.72rem;
    transition: transform 0.25s ease;
}

.pl-specialization__discover:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.pl-specialization__discover:hover i {
    transform: translateX(4px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {

    .pl-specialization {
        padding: 100px 25px;
    }

    .pl-specialization__grid {
        grid-template-columns: 1fr;
        gap: 50px;
        max-width: 760px;
    }

    .pl-specialization__content {
        max-width: none;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .pl-specialization {
        padding: 80px 18px;
    }

    .pl-specialization__grid {
        gap: 40px;
    }

    .pl-specialization__content h2 {
        font-size: 2.45rem;
    }

    .pl-specialization__content > h3 {
        margin-bottom: 25px;
        font-size: 1.3rem;
    }

    .pl-specialization__text p {
        font-size: 0.94rem;
        line-height: 1.72;
    }

    .pl-specialization__content > .pl-btn {
        width: 100%;
        margin-top: 28px;
    }

    .pl-specialization__visual {
        padding: 35px 27px;
        border-radius: 24px;
    }

    .pl-specialization__visual-icon {
        width: 58px;
        height: 58px;
        margin-bottom: 24px;
        border-radius: 17px;
        font-size: 1.25rem;
    }

    .pl-specialization__visual h3 {
        font-size: 1.7rem;
    }

    .pl-specialization__tools {
        grid-template-columns: 1fr;
    }

}

/* ---- Sezione Consulenze Online ----*/

/*----  Sezione - Consulenze Online ---- */


/* =========================================================
   SEZIONE
   ========================================================= */

.pl-online {
    padding: 120px 20px;
    background: var(--white);
}


/* =========================================================
   STRUTTURA
   ========================================================= */

.pl-online__grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
    gap: 70px;
    max-width: 1180px;
    margin: 0 auto;
    align-items: start;
}


/* =========================================================
   INTRODUZIONE
   ========================================================= */

.pl-online__intro {
    position: sticky;
    top: 140px;
}

.pl-online__intro .section-kicker {
    margin-bottom: 18px;
}

.pl-online__intro h2 {
    margin: 0 0 26px;
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    line-height: 1.07;
    letter-spacing: -0.04em;
}

.pl-online__intro h2 span {
    color: var(--primary);
}

.pl-online__intro > p {
    max-width: 500px;
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
}

.pl-online__intro > p strong {
    color: var(--text);
}


/* =========================================================
   RICHIAMO VIDEO
   ========================================================= */

.pl-online__question {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-top: 35px;
    padding-top: 28px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.pl-online__question > i {
    display: flex;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: rgba(255, 107, 74, 0.10);
    border-radius: 50%;
}

.pl-online__question span {
    display: block;
    margin-bottom: 6px;
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.pl-online__question p {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.6;
}


/* =========================================================
   GRIGLIA SERVIZI
   ========================================================= */

.pl-online__services {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}


/* =========================================================
   CARD
   ========================================================= */

.pl-online__card {
    position: relative;
    padding: 30px 28px;
    overflow: hidden;
    background: var(--avorio);
    border: 1px solid rgba(0, 0, 0, 0.045);
    border-radius: 22px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.pl-online__card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 74, 0.18);
    box-shadow: 0 18px 40px rgba(45, 45, 45, 0.08);
}


/* =========================================================
   TESTATA CARD
   ========================================================= */

.pl-online__card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.pl-online__icon {
    display: flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: rgba(255, 107, 74, 0.10);
    border-radius: 16px;
    font-size: 1.15rem;
    transition:
        color 0.3s ease,
        background-color 0.3s ease;
}

.pl-online__card:hover .pl-online__icon {
    color: var(--white);
    background: var(--primary);
}

.pl-online__card-top > span {
    color: rgba(45, 45, 45, 0.13);
    font-size: 1.6rem;
    font-weight: 800;
}


/* =========================================================
   CONTENUTO CARD
   ========================================================= */

.pl-online__card h3 {
    margin: 0 0 12px;
    font-size: 1.2rem;
    line-height: 1.3;
}

.pl-online__card p {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.pl-online__card p:last-child {
    margin-bottom: 0;
}


/* CARD STRATEGIE PIÙ AMPIA */

.pl-online__card:nth-child(2) {
    grid-row: span 2;
}


/* =========================================================
   LINGUE + CTA
   ========================================================= */

.pl-online__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    max-width: 1180px;
    margin: 55px auto 0;
    padding: 28px 32px;
    background: var(--secondary);
    border-radius: 22px;
}

.pl-online__languages {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pl-online__language-icon {
    display: flex;
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    background: var(--white);
    border-radius: 18px;
    font-size: 1.3rem;
}

.pl-online__languages span {
    display: block;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.pl-online__languages h3 {
    margin: 0 0 4px;
    color: var(--white);
    font-size: 1.15rem;
}

.pl-online__languages p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.86rem;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {

    .pl-online {
        padding: 100px 25px;
    }

    .pl-online__grid {
        grid-template-columns: 1fr;
        gap: 50px;
        max-width: 760px;
    }

    .pl-online__intro {
        position: static;
    }

    .pl-online__footer {
        max-width: 760px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .pl-online {
        padding: 80px 18px;
    }

    .pl-online__grid {
        gap: 40px;
    }

    .pl-online__intro h2 {
        font-size: 2.4rem;
    }

    .pl-online__services {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .pl-online__card:nth-child(2) {
        grid-row: auto;
    }

    .pl-online__card {
        padding: 27px 24px;
    }

    .pl-online__footer {
        flex-direction: column;
        align-items: stretch;
        margin-top: 40px;
        padding: 27px 24px;
    }

    .pl-online__languages {
        align-items: flex-start;
    }

    .pl-online__footer .pl-btn {
        width: 100%;
    }

}


/* =========================================================
   MOBILE PICCOLO
   ========================================================= */

@media (max-width: 420px) {

    .pl-online__intro h2 {
        font-size: 2.15rem;
    }

    .pl-online__question {
        gap: 13px;
    }

    .pl-online__question > i {
        width: 44px;
        height: 44px;
    }

    .pl-online__languages {
        flex-direction: column;
    }

}

/*----  Sezione Recensioni ---- */


/* =========================================================
   SEZIONE
   ========================================================= */

.pl-reviews {
    position: relative;

    padding: 110px 20px;

    overflow: hidden;

    background: var(--white);
}


/* =========================================================
   INTESTAZIONE
   ========================================================= */

.pl-reviews .pl-section-heading {
    position: relative;
    z-index: 2;

    max-width: 800px;

    margin: 0 auto 65px;

    text-align: center;
}


.pl-reviews .pl-section-heading h2 {
    margin-bottom: 22px;
}


.pl-reviews .pl-section-heading h2 span {
    color: var(--primary);
}


.pl-reviews .pl-section-heading p {
    max-width: 690px;

    margin-right: auto;
    margin-left: auto;

    color: var(--muted);

    line-height: 1.75;
}


/* =========================================================
   CAROUSEL
   ========================================================= */

.pl-reviews-carousel {
    position: relative;

    max-width: 1240px;

    margin: 0 auto;

    padding: 0 62px;
}


/* FINESTRA */

.pl-reviews-viewport {
    width: 100%;

    overflow: hidden;

    padding: 10px 4px 25px;
}


/* TRACK */

.pl-reviews-track {
    display: flex;

    gap: 28px;

    align-items: flex-start;

    transition: transform 0.5s cubic-bezier(.22, .61, .36, 1);

    will-change: transform;
}


/* =========================================================
   CARD
   ========================================================= */

.pl-review-card {
    position: relative;

    flex: 0 0 calc((100% - 56px) / 3);

    display: flex;
    flex-direction: column;

    min-width: 0;

    padding: 36px 32px 30px;

    overflow: hidden;

    background: var(--white);

    border: 1px solid rgba(230, 230, 230, 0.95);
    border-radius: 26px;

    box-shadow: 0 14px 35px rgba(45, 45, 45, 0.07);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


/* DECORAZIONE */

.pl-review-card::before {
    content: "";

    position: absolute;

    top: -55px;
    right: -55px;

    width: 145px;
    height: 145px;

    background: rgba(255, 107, 74, 0.07);

    border-radius: 50%;

    transition: transform 0.35s ease;
}


.pl-review-card:hover {
    transform: translateY(-6px);

    border-color: rgba(255, 107, 74, 0.30);

    box-shadow: 0 22px 48px rgba(45, 45, 45, 0.11);
}


.pl-review-card:hover::before {
    transform: scale(1.2);
}


/* =========================================================
   AUTORE
   ========================================================= */

.pl-review-top {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: auto 1fr auto;

    gap: 14px;

    align-items: center;

    margin-bottom: 22px;
}


.pl-review-avatar {
    display: flex;

    width: 54px;
    height: 54px;

    flex-shrink: 0;

    align-items: center;
    justify-content: center;

    color: var(--white);

    background: var(--primary);

    border-radius: 50%;

    font-family: "DM Sans", sans-serif;

    font-size: 1.15rem;
    font-weight: 700;

    box-shadow: 0 8px 20px rgba(255, 107, 74, 0.24);
}


.pl-review-author h3 {
    margin: 0 0 3px;

    color: var(--text);

    font-family: "DM Sans", sans-serif;

    font-size: 1.05rem;
}


.pl-review-author span {
    color: var(--muted);

    font-size: 0.86rem;
}


.pl-review-quote {
    color: rgba(0, 168, 168, 0.20);

    font-size: 2rem;
}


/* =========================================================
   STELLE
   ========================================================= */

.pl-review-stars {
    position: relative;
    z-index: 2;

    display: flex;

    gap: 5px;

    margin-bottom: 22px;

    color: #F5A623;

    font-size: 0.92rem;
}


/* =========================================================
   TESTO RECENSIONE
   ========================================================= */

.pl-review-text-wrapper {
    position: relative;
    z-index: 2;
}


.pl-review-text {
    margin: 0;

    color: var(--text);

    font-family: "Manrope", sans-serif;

    font-size: 0.96rem;

    line-height: 1.75;
}


/* TESTO CHIUSO */

.pl-review-card:not(.is-expanded) .pl-review-text {
    display: -webkit-box;

    overflow: hidden;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
}


/* =========================================================
   MOSTRA ALTRO
   ========================================================= */

.pl-review-more {
    position: relative;
    z-index: 3;

    display: none;

    align-items: center;

    gap: 8px;

    align-self: flex-start;

    margin-top: 18px;

    padding: 0;

    color: var(--primary);

    background: transparent;

    border: 0;

    font-family: "DM Sans", sans-serif;

    font-size: 0.86rem;
    font-weight: 800;

    cursor: pointer;

    transition: color 0.25s ease;
}


/* VISIBILE SOLO SE NECESSARIO */

.pl-review-card.has-overflow .pl-review-more {
    display: inline-flex;
}
.pl-review-more:hover{
	background-color: transparent !important;
}

.pl-review-more:hover span {
    text-decoration: underline;
    text-underline-offset: 4px;
}


.pl-review-more i {
    font-size: 0.7rem;

    transition: transform 0.3s ease;
}


/* FRECCIA QUANDO APERTO */

.pl-review-card.is-expanded .pl-review-more i {
    transform: rotate(180deg);
}


/* =========================================================
   FRECCE CAROUSEL
   ========================================================= */

.pl-reviews-arrow {
    position: absolute;

    top: 50%;

    z-index: 10;

    display: flex;

    width: 48px;
    height: 48px;

    align-items: center;
    justify-content: center;

    padding: 0;

    color: var(--primary);

    background: var(--white);

    border: 1px solid rgba(255, 107, 74, 0.20);
    border-radius: 50%;

    box-shadow: 0 10px 28px rgba(45, 45, 45, 0.10);

    font-size: 1rem;

    cursor: pointer;

    transform: translateY(-50%);

    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.pl-reviews-arrow--prev {
    left: 0;
}


.pl-reviews-arrow--next {
    right: 0;
}


.pl-reviews-arrow:hover {
    color: var(--white);

    background: var(--primary);

    box-shadow: 0 12px 30px rgba(255, 107, 74, 0.25);

    transform: translateY(-50%) scale(1.06);
}


.pl-reviews-arrow:disabled {
    opacity: 0.3;

    cursor: default;

    pointer-events: none;
}


/* =========================================================
   INDICATORI
   ========================================================= */

.pl-reviews-dots {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    margin-top: 20px;
}


.pl-reviews-dot {
    width: 9px;
    height: 9px;

    padding: 0;

    background: rgba(45, 45, 45, 0.18);

    border: 0;
    border-radius: 50%;

    cursor: pointer;

    transition:
        width 0.25s ease,
        background-color 0.25s ease;
}


.pl-reviews-dot.is-active {
    width: 26px;

    background: var(--primary);

    border-radius: 20px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {

    .pl-reviews-carousel {
        padding: 0 58px;
    }


    .pl-review-card {
        flex-basis: calc((100% - 28px) / 2);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .pl-reviews {
        padding: 80px 18px;
    }


    .pl-reviews .pl-section-heading {
        margin-bottom: 45px;

        text-align: left;
    }


    .pl-reviews .pl-section-heading p {
        margin-left: 0;
    }


    .pl-reviews-carousel {
        padding: 0 42px;
    }


    .pl-reviews-track {
        gap: 20px;
    }


    .pl-review-card {
        flex-basis: 100%;

        padding: 30px 24px 28px;

        border-radius: 22px;
    }


    .pl-reviews-arrow {
        width: 38px;
        height: 38px;

        font-size: 0.82rem;
    }


    /* SU MOBILE MOSTRIAMO QUALCHE RIGA IN PIÙ */

    .pl-review-card:not(.is-expanded) .pl-review-text {
        -webkit-line-clamp: 7;
    }

}


/* =========================================================
   MOBILE PICCOLO
   ========================================================= */

@media (max-width: 420px) {

    .pl-reviews-carousel {
        padding: 0 34px;
    }


    .pl-review-card {
        padding: 27px 21px;
    }


    .pl-review-avatar {
        width: 48px;
        height: 48px;

        font-size: 1rem;
    }


    .pl-review-quote {
        font-size: 1.65rem;
    }

}

/* ------------------------------------------------------------------- */
						/* ! CSS Personalizzato */

/*---- Bottoni ---- */

.pl-hero-actions{
    display:flex;
    gap:22px;
    flex-wrap:wrap;
}

.pl-btn{
    min-width:240px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:18px 30px;

    border-radius:999px;

    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.04em;
}

.pl-btn-primary{
    background:var(--primary);
    color:#fff;
}

.pl-btn-primary:hover{
    transform:translateY(-3px);
color: white;
}

.pl-btn-outline{
    border:2px solid var(--secondary);
    color: var(--text);
    background:rgba(255,255,255,.05);
}

.pl-btn-outline:hover{
    background:var(--secondary);
color: white;
}


