.hero{
   
    overflow:hidden;
    position:relative;

}


.hero-content{

    max-width:650px;
    position:relative;
    z-index:10;

}

.hero h1{

    
    line-height:1.25;
    font-weight:800;
    color:#111;

}

.hero h1 span{

    color:#ff6400;

}

.hero p{

    margin-top:30px;
    font-size:20px;
    line-height:1.5;
    color:#555;

}

.hero-buttons{

    display:flex;
    gap:20px;
    margin-top:45px;

}

.hero-buttons .btn-primary{

    background:#ff6400;
    color:#fff;
    padding:18px 34px;
    border-radius:8px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;

}

.hero-buttons .btn-primary:hover{

    background:#eb5b00;

}

.hero-buttons .btn-secondary{

    border:2px solid #eb5b00;
    color:#222;
    padding:18px 34px;
    text-decoration:none;
    border-radius:8px;
    font-weight:700;

}

.hero-meta{

    display:flex;
    gap:35px;
    margin-top:40px;
    color:#666;
    font-size:15px;

}
.hero-meta div{
    font-weight:bold;
}
.hero-meta .fas{
    color:#ff6400;
    margin-right:5px;
}

.hero-scribble{

    position:absolute;
    left:30px;
    top:120px;

}

.hero-scribble img{

    width:95px;

}

.hero-card{

    position:absolute;
    right:70px;
    width:330px;
    background:rgba(20,20,20,.88);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    color:#fff;
    padding:32px;
    z-index:5;

}

.hero-card li{line-height:25px}

.hero-card h4{

    margin-bottom:20px;
    font-size:22px;

}

.hero-card ul{

    margin:0;
    padding:0;

}


.hero-card li{

    list-style:none;
    margin-bottom:0px;
    padding-left:28px;
    position:relative;
    color:#ddd;
    line-height:25px

}

.hero-card li:before{

    content:"✓";

    position:absolute;

    left:0;

    color:#ff6400;

    font-weight:700;

}

.hero-card strong{

    display:block;

    margin-top:20px;

    color:#ff6400;

}



.symptoms-grid{

    display:grid;

    grid-template-columns:60% 40%;

    gap:80px;

    align-items:center;

}

.symptoms h2{

    
    line-height:1.1;
    font-weight:800;
    font-size:2.3em;
    margin-bottom:20px;

}


.intro{

    color:#ff6400;
    font-weight:800;
    margin-bottom:40px;
    font-size:22px;

}

.symptom-list{

    list-style:none;
    padding:0;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px 90px;

}

.symptom-list li{

    position:relative;
    padding-left:42px;
    font-size:15px;
    line-height:1.2;
    color:#444;
    font-weight:800;

}

.symptom-list li:before{

    content:"✓";

    position:absolute;

    left:0;

    width:28px;

    height:28px;

    color:#ff6400;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

}

.symptoms-right{

    background:#fafafa;

    border-radius:24px;

    padding:60px;

    border:1px solid #eee;

}

.warning-icon{

    width:70px;

    height:70px;

    border-radius:50%;

    background:#fff4ed;

    color:#ff6400;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    font-weight:bold;

    margin-bottom:30px;

}

.small{

    color:#000;
    font-size:17px;
    margin-bottom:15px;
    font-weight:800;

}

.symptoms-right h3{

    font-size:40px;

    line-height:1.15;

    margin-bottom:25px;

}

.symptoms-right h3 span{

    color:#ff6400;

}

.symptoms-right p{

    font-size:20px;

    line-height:1.7;

    color:#666;

}

.symptoms-right .btn-primary{

    margin-top:40px;

    display:inline-block;

}