/* =========================================
   HERO
========================================= */

.hero{
    display:flex;
    flex-direction:column;
    gap:40px;
    padding:24px 0 48px;
}

.hero-content{
    text-align:center;
}

.hero-label{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 18px;
    background:#ffffff;
    border-radius:999px;
    font-size:13px;
    font-weight:600;
    color:#E11D48;
    margin-bottom:24px;
}

.hero h1{
    font-size:42px;
    line-height:1.08;
    font-weight:800;
    color:#111827;
    margin-bottom:20px;
    letter-spacing:-1px;
}

.hero p{
    max-width:320px;
    margin:0 auto 30px;
    font-size:17px;
    line-height:1.7;
    color:#6B7280;
}

.hero .btn{
    width:100%;
    height:56px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:18px;
    background:#E11D48;
    color:#fff;
    font-weight:700;
    text-decoration:none;
}

.hero-preview{
    display:flex;
    justify-content:center;
}

.phone{
    width:100%;
    max-width:340px;
    background:#ffffff;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.report-header{
    padding:18px 22px;
    border-bottom:1px solid #F1F5F9;
    font-size:14px;
    font-weight:600;
}

.report-body{
    padding:22px;
}

.report-body h3{
    margin-bottom:20px;
    font-size:20px;
}

.report-item{
    padding:16px 0;
    border-bottom:1px solid #F3F4F6;
}

.report-item:last-child{
    border-bottom:none;
}

.report-item strong{
    display:block;
    font-size:15px;
    margin-bottom:6px;
}

.report-item small{
    display:block;
    color:#6B7280;
    line-height:1.6;
}

/* =========================================
   PAIN
========================================= */

.pain{

    margin:56px 0;

}

.section-title{

    text-align:center;

    margin-bottom:28px;

}

.section-title h2{

    font-size:30px;
    font-weight:800;
    line-height:1.25;

    color:#111827;

    margin-bottom:10px;

}

.section-title p{

    font-size:16px;
    line-height:1.7;

    color:#6B7280;

}

.pain-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;

}

.pain-card{

    background:#FFFFFF;

    border-radius:22px;

    padding:22px 18px;

    box-shadow:0 8px 24px rgba(15,23,42,.05);

    transition:.25s;

}

.pain-card:hover{

    transform:translateY(-3px);

}

.pain-icon{

    width:52px;
    height:52px;

    border-radius:16px;

    background:#F8FAFC;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:24px;

    margin-bottom:18px;

}

.pain-card h3{

    font-size:17px;
    font-weight:700;

    line-height:1.4;

    color:#111827;

    margin-bottom:10px;

}

.pain-card p{

    font-size:14px;
    line-height:1.7;

    color:#6B7280;

}

@media (max-width:480px){

    .pain-grid{

        grid-template-columns:1fr;

    }

}