.hero{
    background:linear-gradient(
        135deg,
        #ff9800,
        #ffb84d
    );

    padding-top:120px;
    padding-bottom:120px;
    overflow:hidden;
    position:relative;
}

.hero::before{
    content:'';
    position:absolute;
    width:600px;
    height:600px;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    top:-250px;
    right:-250px;
}

.hero-content{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    gap:60px;
    flex-wrap:wrap;
}

.author-photo{
    width:240px;
    height:240px;
    border-radius:50%;
    background:#ececec;
    flex-shrink:0;
    overflow:hidden;
    border:8px solid rgba(255,255,255,0.2);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#777777;
    font-weight:700;
}

.hero-text{
    flex:1;
    min-width:300px;
}

.hero-text h1{
    color:#ffffff;
    font-size:64px;
    line-height:1.1;
    margin-bottom:25px;
}

.hero-text p{
    color:#fff4e6;
    font-size:20px;
    max-width:760px;
}

/* ========================================= */
/* MAIN */
/* ========================================= */

.main-content{
    padding-top:80px;
    padding-bottom:80px;
}

/* ========================================= */
/* STATS */
/* ========================================= */

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
    margin-bottom:60px;
}

.stat-card{
    background:#ffffff;
    border-radius:24px;
    padding:40px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
    transition:0.3s;
}

.stat-card:hover{
    transform:translateY(-6px);
}

.stat-card h3{
    font-size:42px;
    color:#ff9800;
    margin-bottom:12px;
}

.stat-card p{
    color:#666666;
}

/* ========================================= */
/* ARTICLE */
/* ========================================= */

.article{
    background:#ffffff;
    border-radius:30px;
    padding:60px;
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
}

.article h2{
    font-size:42px;
    margin-bottom:30px;
}

.article h3{
    font-size:30px;
    margin-top:50px;
    margin-bottom:20px;
}

.article p{
    font-size:18px;
    color:#444444;
    margin-bottom:24px;
}

.article ul{
    padding-left:22px;
    margin-bottom:30px;
}

.article li{
    margin-bottom:12px;
    color:#444444;
}

/* ========================================= */
/* IMAGE PLACEHOLDER */
/* ========================================= */

.image-placeholder{
    width:100%;
    height:420px;
    background:#ececec;
    border-radius:24px;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#888888;
    font-size:18px;
    font-weight:600;
    margin-top:40px;
    margin-bottom:40px;
}

/* ========================================= */
/* SOCIAL LINKS */
/* ========================================= */

.socials{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-top:30px;
}

.socials a{
    background:#fff3dd;
    color:#111111;
    padding:14px 22px;
    border-radius:14px;
    text-decoration:none;
    font-weight:700;
    transition:0.3s;
}

.socials a:hover{
    background:#ff9800;
    color:#ffffff;
}

/* ========================================= */
/* CTA */
/* ========================================= */

.cta-box{
    margin-top:60px;
    background:#fff3dd;
    padding:50px;
    border-radius:30px;
    text-align:center;
}

.cta-box h3{
    font-size:38px;
    margin-bottom:20px;
}

.cta-box p{
    max-width:720px;
    margin:0 auto 30px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary{
    background:#ff9800;
    color:#ffffff;
    text-decoration:none;
    padding:16px 30px;
    border-radius:14px;
    font-weight:700;
    transition:0.3s;
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.btn-secondary{
    background:#ffffff;
    color:#111111;
    text-decoration:none;
    padding:16px 30px;
    border-radius:14px;
    font-weight:700;
}