.single-report-page{

    padding:40px 0 80px;

    background:#b2cde8;

}

/*==================================================
REPORT HERO
==================================================*/

.report-hero{

    padding:30px 0 80px;

    margin-bottom:90px;

    background:linear-gradient(
        180deg,
        #F8FBFF 0%,
        #EEF5FF 100%
    );

    border-radius:24px;

    position:relative;

    overflow:hidden;

}
.report-hero::before{

    content:"";

    position:absolute;

    width:420px;

    height:400px;

    right:-140px;

    top:-80px;

    background:rgba(37,99,235,.10);

    border-radius:50%;

}

.report-breadcrumb{

    display:flex;

    align-items:center;

    gap:8px;
    margin-bottom:22px;
    margin-left: 15px;

    flex-wrap:wrap;

}

.report-breadcrumb a{

    color:#2563EB;

    text-decoration:none;

}

.report-hero-grid{

    display:grid;

    grid-template-columns:320px 1fr;

    gap:50px;

    align-items:center;

}

.report-cover{

    background:#fff;
    margin-left:25px;

    border:1px solid #E2E8F0;

    border-radius:16px;

    padding:15px;

    box-shadow:0 12px 30px rgba(15,23,42,.06);


    width:100%;

    max-width:320px;

    margin:auto;
}

.report-cover img{

    width:100%;

    display:block;

    border-radius:12px;

}
.report-cover-image{

    width:100%;

    height:auto;

    display:block;

    border-radius:14px;

}
.report-info h1{

    font-size:56px;

    line-height:1.1;

    font-weight:800;

    letter-spacing:-1px;

    margin-bottom:22px;

    color:#0F172A;

}

.report-short-description{

    font-size:20px;

    line-height:1.8;

    max-width:700px;

    margin-bottom:30px;

}
.report-details-grid{

    display:grid;

    grid-template-columns:repeat(2,180px);

    gap:16px 24px;

    margin-bottom:28px;

}

.detail-card{

    padding:22px;

    min-height:95px;

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.detail-card span{

    display:block;

    color:#64748B;

    font-size:13px;

    margin-bottom:8px;

}

.detail-card strong{

    color:#0F172A;

    font-size:18px;

}
.report-actions{

    display:flex;

    gap:18px;

    align-items:center;

    flex-wrap:wrap;

    margin-top:10px;

}

.sample-btn{

    display:flex;

    justify-content:center;

    align-items:center;

    min-width:210px;

    height:58px;

    padding:0 30px;

    background:#2563EB;

    color:#fff;

    border:1px solid #2563EB;

    border-radius:12px;

    text-decoration:none;

    font-size:16px;

    font-weight:600;

    transition:.3s ease;

    box-sizing:border-box;

}

.sample-btn:hover{

    background:#1D4ED8;

    border-color:#1D4ED8;

    color:#fff;

}

.custom-btn{

    display:flex;

    justify-content:center;

    align-items:center;

    min-width:210px;

    height:58px;

    padding:0 30px;

    background:#fff;

    border:1px solid #CBD5E1;

    color:#0F172A;

    border-radius:12px;

    text-decoration:none;

    font-size:16px;

    font-weight:600;

    transition:.3s ease;

    box-sizing:border-box;

}

.custom-btn:hover{

    background:#2563EB;

    border-color:#2563EB;

    color:#fff;

}
@media(max-width:991px){

.report-hero-grid{

    grid-template-columns:1fr;

    gap:40px;
    align-items:start;

}

.report-cover{

    width:100%;

    max-width:320px;

    margin:0 auto;

    margin-top:-30px;

}

.report-details-grid{

    grid-template-columns:repeat(2,1fr);

}

}

.report-content{

max-width:900px;

margin:auto;

font-size:19px;

line-height:2;

color:#17181b;

}
/*====================================
REPORT TABS
====================================*/

.report-tabs{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:60px;

    margin:0 auto 50px;

    padding-bottom:18px;

    border-bottom:1px solid #D8E3F0;

    max-width:900px;

}

.tab-btn{

    background:none;

    border:none;

    font-size:18px;

    font-weight:600;

    color:#64748B;

    cursor:pointer;

    padding:0;

    position:relative;

    transition:.3s;

}

.tab-btn:hover{

    color:#2563EB;

}

.tab-btn.active{

    color:#2563EB;

}

.tab-btn.active::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-20px;

    width:100%;

    height:3px;

    background:#2563EB;

    border-radius:20px;

}

/*====================================
TAB CONTENT
====================================*/

.report-tab-content{

    display:none;

}

.report-tab-content.active{

    display:block;

}

.preview-lock{

margin:80px auto;

max-width:900px;

padding:60px;

text-align:center;

background:white;

border-radius:20px;

box-shadow:0 20px 50px rgba(15,98,254,.08);

}

.buy-report-btn{

    display:flex;

    justify-content:center;

    align-items:center;

    min-width:210px;

    height:58px;

    padding:0 30px;

    margin:0;

    background:#2563EB;

    border:1px solid #2563EB;

    color:#fff;

    border-radius:12px;

    font-size:16px;

    font-weight:600;

    text-decoration:none;

    cursor:pointer;

    transition:.3s ease;

    box-sizing:border-box;

}

.buy-report-btn:hover{

    background:#1D4ED8;

    border-color:#1D4ED8;

}