/* HERO */

.sp-hero{

    padding:90px 0;

    text-align:center;

    background:
    linear-gradient(
        135deg,
        #EAFBF8,
        #FFFFFF
    );
}

.sp-badge{

    display:inline-block;

    padding:8px 18px;

    border-radius:999px;

    background:#0E9F8D;

    color:#fff;

    font-size:12px;

    font-weight:600;
}

.sp-hero h1{

    margin-top:20px;

    font-size:52px;

    font-weight:800;
}

.sp-hero p{

    max-width:850px;

    margin:20px auto 0;

    line-height:1.9;

    color:#6B7280;
}


/* INTRO */

.sp-intro{

    padding:80px 0 40px;
}

.sp-intro-card{

    background:#fff;

    padding:50px;

    border-radius:30px;

    text-align:center;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);
}

.sp-icon{

    width:90px;
    height:90px;

    margin:auto auto 20px;

    background:#EAFBF8;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;
}

.sp-icon i{

    font-size:38px;

    color:#0E9F8D;
}


/* TITLE */

.section-title-center{

    text-align:center;

    margin-bottom:40px;
}

.section-title-center span{

    color:#0E9F8D;

    font-size:12px;

    font-weight:700;
}

.section-title-center h2{

    margin-top:10px;

    font-size:40px;

    font-weight:800;
}


/* GRID */

.sp-section{

    padding:40px 0 80px;
}

.sp-grid{

    display:grid;

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

    gap:24px;
}

.sp-card{

    background:#fff;

    border-radius:24px;

    padding:30px;

    text-align:center;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);

    transition:.3s;
}

.sp-card:hover{

    transform:translateY(-4px);
}

.sp-card i{

    font-size:42px;

    color:#0E9F8D;

    margin-bottom:15px;
}

.sp-card h4{

    margin-bottom:10px;
}

.sp-card p{

    color:#6B7280;

    line-height:1.7;
}


/* COMMITMENT */

.sp-commitment{

    padding-bottom:80px;
}

.commitment-box{

    background:
    linear-gradient(
        135deg,
        #0E9F8D,
        #18B8A3
    );

    color:#fff;

    padding:60px;

    border-radius:30px;

    text-align:center;
}

.commitment-box h2{

    margin-bottom:20px;
}


/* DOWNLOAD */

.sp-download{

    padding-bottom:100px;
}

.download-card{

    background:#fff;

    text-align:center;

    padding:50px;

    border-radius:30px;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);
}

.download-card i{

    font-size:60px;

    color:#dc2626;

    margin-bottom:20px;
}

.btn-download{

    display:inline-block;

    margin-top:20px;

    background:#0E9F8D;

    color:#fff;

    padding:12px 24px;

    border-radius:999px;

    text-decoration:none;
}

/* PDF PREVIEW */

.sp-preview{

    padding:0 0 80px;
}

.pdf-preview-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:
        0 10px 25px rgba(0,0,0,.05);

    border:1px solid #E5E7EB;
}

.pdf-preview-card iframe{

    display:block;

    width:100%;

    min-height:900px;

    background:#fff;
}

.poster-preview-card {
    text-align: center;
    margin-top: 30px;
}

.poster-preview-card img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
/* MOBILE */

@media(max-width:768px){

    .sp-hero h1{

        font-size:34px;
    }

    .sp-grid{

        grid-template-columns:1fr;
    }

    .sp-intro-card,
    .download-card,
    .commitment-box{

        padding:30px 20px;
    }

}

