.sp-page{
    padding:60px 0 90px;

    background:
        linear-gradient(
            180deg,
            #f8fbff 0%,
            #f2f6fb 100%
        );
}

/* HERO */

.sp-hero{
    margin-bottom:70px;
}

.sp-hero-content h1{
    font-size:64px;

    font-weight:900;

    line-height:1.1;

    color:#16315c;

    margin-bottom:24px;
}

.sp-hero-content p{
    font-size:18px;

    line-height:1.9;

    color:#64748b;

    margin-bottom:34px;
}

.hero-actions{
    display:flex;

    gap:18px;

    flex-wrap:wrap;
}

.hero-btn{
    height:60px;

    padding:0 30px;

    border-radius:18px;

    display:flex;

    align-items:center;

    gap:12px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;
}

.hero-btn.primary{
    background:#002f6c;

    color:white;
}

.hero-btn.secondary{
    background:white;

    color:#16315c;

    border:1px solid #dbe7f3;
}

.hero-btn:hover{
    transform:translateY(-4px);
}

.sp-hero-image img{
    width:100%;

    border-radius:34px;

    object-fit:cover;

    box-shadow:
        0 18px 45px rgba(15,23,42,.08);
}

/* INFO */

.sp-info-grid{
    display:grid;

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

    gap:30px;

    margin-bottom:80px;
}

.sp-info-card{
    background:white;

    border-radius:30px;

    padding:36px;

    border:1px solid #e7edf5;

    text-align:center;

    box-shadow:
        0 12px 35px rgba(15,23,42,.05);
}

.info-icon{
    width:80px;
    height:80px;

    border-radius:24px;

    margin:auto auto 24px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:36px;
}

.info-icon.blue{
    background:#eff6ff;
    color:#2563eb;
}

.info-icon.green{
    background:#ecfdf5;
    color:#16a34a;
}

.info-icon.orange{
    background:#fff7ed;
    color:#ea580c;
}

.sp-info-card h4{
    font-size:28px;

    font-weight:800;

    color:#16315c;

    margin-bottom:16px;
}

.sp-info-card p{
    color:#64748b;

    line-height:1.9;
}

/* PDF */

.sp-document-section{
    margin-bottom:40px;
}

.pdf-card{
    background:white;

    border-radius:34px;

    overflow:hidden;

    border:1px solid #e7edf5;

    box-shadow:
        0 12px 35px rgba(15,23,42,.05);
}

.pdf-toolbar{
    height:80px;

    padding:0 30px;

    border-bottom:1px solid #eef2f7;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;
}

.pdf-title{
    display:flex;

    align-items:center;

    gap:14px;

    font-size:18px;

    font-weight:700;

    color:#16315c;
}

.pdf-title i{
    font-size:26px;

    color:#dc2626;
}

.pdf-toolbar a{
    height:46px;

    padding:0 20px;

    border-radius:14px;

    background:#eff6ff;

    color:#2563eb;

    display:flex;

    align-items:center;

    gap:10px;

    text-decoration:none;

    font-weight:700;
}

.pdf-wrapper{
    height:90vh;
}

.pdf-wrapper iframe{
    width:100%;
    height:100%;

    border:none;
}

/* RESPONSIVE */

@media(max-width:992px){

    .sp-info-grid{
        grid-template-columns:1fr;
    }

    .sp-hero-content h1{
        font-size:46px;
    }

}

@media(max-width:768px){

    .sp-page{
        padding:40px 0 60px;
    }

    .sp-hero-content h1{
        font-size:38px;
    }

    .hero-actions{
        flex-direction:column;
    }

    .pdf-toolbar{
        height:auto;

        padding:20px;

        flex-direction:column;

        align-items:flex-start;
    }

    .pdf-wrapper{
        height:70vh;
    }

}