/* Hero Section */
.accreditamento {
    background-image: url("../../images/BannerAccreditamento-1rBXxrf.svg");
    background-repeat: no-repeat;
    background-size: cover;        /* 🔑 */
    background-position: center;   /* 🔑 */
    padding: 100px 0;
    min-height: 500px;
}

.accreditamento .container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

.accreditamento-text h1 {
    font-size: 2.5rem;
    color: var(--blue-medio);
    line-height: 1.2;
    font-weight: lighter;
}

.accreditamento-text h1 span { color: var(--blue-medio); font-weight: 800; }

.login-card {
    background: var(--background-login-card);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 2.19px 2.19px 13.14px 0px #00000026;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
}

.accreditamento a {
    text-decoration: none;
    width: 90%;
}

.btn-spid {
    background: var(--blue-medio);
    color: white;
}

.btn-cie {
    background: var(--background-login-card);
    color: var(--blue-medio);
}

/* Requisiti Cards */
.requisiti-section {
    padding: 60px 0;
    background-color: var(--background-white);
}

.cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: var(--std-shadow);
}

.info-box h3 { color: var(--blue-medio); margin-bottom: 15px; }

.info-box ul li::before {
    content: "";
    color: var(--blue-medio);
    font-weight: bold;
    display: inline-block;
    width: 1em;
}

/* Come funziona */
.how-it-works {
    padding: 80px 0;
    text-align: center;
}

.steps-container {
    display: flex;
    justify-content: space-around;
    position: relative;
    margin-top: 40px;
}

/* Linea di collegamento tra gli step */
.steps-container::before {
    content: ".";
    position: absolute;
    top: 35px;
    left: 15%;
    right: 15%;
    height: 5px;
    background: #C1D2EA;
    z-index: 1;
}

.step { position: relative; z-index: 2; width: 200px; }

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--blue-light);
    color: var(--blue-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    box-shadow: var(--std-shadow);
}

/* FAQ*/
.faq-section summary {
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--blue-medio);
    list-style: none;
}

summary::-webkit-details-marker { display: none; }
.faq-section div{
    font-weight: 400;
    font-size: 17px;
    color: var(--blue-medio);
}
/* Pagamenti Section */
.payments-section { background-color: var(--background-white); padding: 100px 0; }
.payments-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 50px; }

.payments-image {
    min-width: 0;
}

.payments-image img {
    max-width: 100%;
    height: auto;
}

.card-overlap {
    position: absolute;
    width: 250px;
    top: 20%;
    left: -50px;
    transform: rotate(-15deg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-radius: 10px;
}

.payment-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.payment-item i {
    font-size: 2.5rem;
    color: #0066cc;
    padding-top: 10px;
}

.fa-rss {
    rotate: 45deg;
}

.payment-item h4 {
    color: var(--blue-medio);
    font-size: 24px;
    margin-bottom: 5px;
}

/* Categorie Section */
.categories-section { padding: 80px 0; }
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.category-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    text-align: left;
    box-shadow: var(--std-shadow);
}
.category-card i { font-size: 2rem; color: var(--blue-dark); margin-bottom: 20px; opacity: 0.7; }
.category-card h4 {
    font-weight: 700;
    font-size: 24px;
    color: var(--blue-medio);
    margin-bottom: 10px; }
.category-card p { font-size: 19px; }

/* Dashboard Section */
.dashboard-section { background-color: var(--background-white); padding: 100px 0; }
.dashboard-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.dashboard-image img { width: 100%; max-width: 500px; margin-top: 30px; }

.features-list { list-style: none; margin: 30px 0; }
.features-list li { margin-bottom: 15px; font-weight: 500; display: flex; align-items: center; gap: 10px; }
.features-list i {
    color: var(--blue-medio);
    background: #ffc107;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 24px;
    height: 24px;
}

.access-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #eef4fb;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 0.85rem;
    color: var(--blue-dark);
}

/* FAQ Section */
.faq-section { padding: 80px 0; }
.faq-container { max-width: 900px; margin: 40px auto; }

details {
    border-bottom: 1px solid #C1D2EA;
    padding: 20px 0;
    cursor: pointer;
}




