/* ======================================================
   ABOUT PAGE
   ====================================================== */

main.about-page{
  overflow-x: clip;
  padding-bottom: 56px;
}

/* ---------------- HERO ---------------- */

.about-hero{
  margin-top: 34px;
}

.about-title{
  font-size: 32px;
  line-height: 1.15;
  color: rgba(0,0,0,0.86);
  letter-spacing: -0.4px;
  display: table;      
  margin: 0 auto 10px;
}

.about-title::after{
  content: "";
  display: block;
  width: 100%;          
  height: 3px;
  margin: 10px auto 0;
  background: #75A5CD;  
  border-radius: 3px;
}

.about-lead{
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 8px;
}

/* KPI */
.about-kpis{
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 900px;
  margin: 10px auto 0;
}

.about-kpi{
  background: #f8fafc;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 10px 14px;
  flex: 1 1 0;        
  min-width: 0;
}

.about-kpi-value{
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
  color: #5698ce;
  text-align: center;
}

.about-kpi-label{
  font-size: 13px;
  line-height: 1.4;
  color: rgba(0,0,0,0.66);
  text-align: center;
}

/* ---------------- SEZIONI ---------------- */

.about-section{
  margin-top: 24px;
}

.about-head{
  margin-bottom: 14px;
}

.about-h2{
  margin: 0 0 8px;
  font-size: 24px;
  letter-spacing: -0.2px;
  color: rgba(0,0,0,0.86);
}

.about-h3{
  margin: 0 0 8px;
  font-size: 17px;
  color: rgba(0,0,0,0.86);
}

.about-p{
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(0,0,0,0.72);
}


/* ---------------- LIST ---------------- */
.about-areas-list{
  margin: 16px 0;
  padding: 0;
  list-style: none;
  max-width: 72ch;
  padding-left: 32px;
}

.about-areas-list li{
  position: relative;
  padding-left: 28px;
  margin: 12px 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(0,0,0,0.75);
}

.about-areas-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5698ce; 
}

/* ---------------- GRID ---------------- */

.about-grid{
  display: grid;
  gap: 14px;
}

.about-grid-2{
  grid-template-columns: 1fr 1fr;
}

.about-grid-cards{
  grid-template-columns: 1fr 1fr;
}

/* ---------------- PANEL / CARD ---------------- */

.about-panel,
.about-card{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
}

.about-panel{
  padding: 16px 18px;
  background: #f8fafc; 
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
}

.about-panel-accent{
  border-left: 5px solid #5698ce;
}


.about-card{
  padding: 16px 18px;
  background:
    linear-gradient(
      180deg,
      rgba(117,165,205,0.08) 0%,
      rgba(117,165,205,0.00) 60%
    ),
    #fff;
}

.about-card h3,
.about-card .about-h3{
  color:#5698ce;
}

/* ---------------- CHECKS ---------------- */

.about-checks{
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-checks li{
  position: relative;
  padding-left: 34px;
  margin: 14px 0;
  color: rgba(0,0,0,0.72);
  line-height: 1.6;
  font-size: 14px;
}

.about-checks li::before{
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #e1e9f7;
  color: #5698ce;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ---------------- CTA ---------------- */

.about-cta .about-h2{ 
  border-top: 0; 
  padding-top: 0;
  margin-bottom: 0;
  letter-spacing: -0.3px;
  font-size: 28px;
}


.about-cta{
  text-align: center;
  padding-top: 40px;
}

.about-cta-actions{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 10px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 0;
  border-radius: 12px;
  font-size: 14px;
  color: #fff;
  font-weight: 800;
  background: #ffffff;
  cursor: pointer;
}

.btn-primary{
  background: #3F6BB2;
}

.btn-ghost{
  background: #7cacd3;
}

.btn:hover{
  filter: brightness(0.95);
  text-decoration: none;
}


/* =========================================================
   ABOUT — MOBILE PACK
   ========================================================= */

@media (max-width: 820px){

  main.about-page{
    padding-bottom: 44px;
  }

  /* --- HERO --- */
  .about-hero{
    margin-top: 22px;
  }

  .about-title{
    font-size: 28px;
    margin-bottom: 8px;
  }

  .about-title::after{
    height: 3px;
    margin-top: 8px;
  }

  .about-lead{
    font-size: 14px;
    line-height: 1.65;
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--page-pad);
    text-align: center; 
  }

  /* KPI */
  .about-kpis{
    flex-direction: column;
    gap: 12px;
    max-width: 520px;
    padding: 0 var(--page-pad);
  }

  .about-kpi{
    padding: 12px 14px;
  }

  .about-kpi-value{
    font-size: 14px;
  }

  .about-kpi-label{
    font-size: 12.5px;
  }

  /* --- SEZIONI --- */
  .about-section{
    margin-top: 18px;
    padding: 0 var(--page-pad);
  }

  .about-h2{
    font-size: 22px;
  }

  .about-p{
    font-size: 14px;
    line-height: 1.65;
  }

  /* --- LISTA AMBITI --- */
  .about-areas-list{
    max-width: 100%;
    padding-left: 18px;   
    margin: 14px 0;
  }

  .about-areas-list li{
    padding-left: 22px;
    margin: 10px 0;
    font-size: 14px;
    line-height: 1.6;
  }

  .about-areas-list li::before{
    width: 6px;
    height: 6px;
    top: 0.62em;
  }

  /* --- GRIGLIE --- */
  .about-grid-2,
  .about-grid-cards{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* --- CARD / PANEL --- */
  .about-panel,
  .about-card{
    box-shadow: none; 
  }

  .about-panel{
    padding: 14px 14px;
  }

  .about-card{
    padding: 14px 14px;
  }

  .about-h3{
    font-size: 16px;
  }

  /* --- CHECKLIST --- */
  .about-checks li{
    font-size: 13.5px;
    padding-left: 32px;
    margin: 12px 0;
  }

  .about-checks li::before{
    width: 20px;
    height: 20px;
    font-size: 13px;
  }

  /* --- CTA --- */
  .about-cta{
    padding-top: 28px;
    padding-left: var(--page-pad);
    padding-right: var(--page-pad);
  }

  .about-cta .about-h2{
    font-size: 20px;
    line-height: 1.2;
  }

  .about-cta-actions{
    gap: 10px;
    padding-top: 12px;
  }

  /* bottoni comodi */
  .about-cta .btn{
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 12px 16px;
  }
}