.cpa-guide-page{
    padding:34px 0 20px;
}

.cpa-guide-hero{
    background:linear-gradient(135deg,#ffffff,#f8fbff);
    border:1px solid #dbeafe;
    border-radius:32px;
    padding:30px;
    box-shadow:0 24px 70px rgba(15,23,42,.07);
    margin-bottom:22px;
    display:grid;
    grid-template-columns:1fr 320px;
    gap:24px;
    align-items:center;
}

.cpa-guide-kicker{
    display:inline-flex;
    width:fit-content;
    background:rgba(231,76,60,.10);
    color:#E74C3C;
    border:1px solid rgba(231,76,60,.16);
    padding:9px 14px;
    border-radius:999px;
    font-weight:950;
    margin-bottom:16px;
}

.cpa-guide-hero h1{
    margin:0 0 10px;
    font-size:clamp(2rem,4vw,3.2rem);
    letter-spacing:-1.3px;
}

.cpa-guide-hero p{
    margin:0;
    color:#64748b;
    line-height:1.75;
    max-width:760px;
}

.cpa-guide-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:22px;
}

.cpa-guide-btn{
    text-decoration:none;
    background:#E74C3C;
    color:#fff;
    border-radius:999px;
    padding:13px 18px;
    font-weight:950;
    display:inline-flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 14px 28px rgba(231,76,60,.18);
}

.cpa-guide-btn.secondary{
    background:#0f172a;
}

.cpa-guide-card{
    background:linear-gradient(135deg,#0f172a,#E74C3C);
    color:#fff;
    border-radius:28px;
    padding:24px;
    box-shadow:0 22px 55px rgba(15,23,42,.18);
}

.cpa-guide-card span{
    display:block;
    opacity:.85;
    font-weight:850;
}

.cpa-guide-card strong{
    display:block;
    font-size:1.6rem;
    font-weight:950;
    margin:8px 0;
}

.cpa-guide-card small{
    opacity:.82;
    font-weight:800;
}

.video-card,
.guide-card,
.mistakes-card,
.final-cta-card{
    background:#fff;
    border:1px solid #dbeafe;
    border-radius:28px;
    padding:24px;
    box-shadow:0 18px 50px rgba(15,23,42,.05);
    margin-bottom:22px;
}

.video-box{
    position:relative;
    width:100%;
    padding-top:56.25%;
    border-radius:24px;
    overflow:hidden;
    background:#0f172a;
}

.video-box iframe{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
}

.video-card p,
.guide-card p,
.final-cta-card p{
    color:#64748b;
    line-height:1.75;
    margin:14px 0 0;
}

.guide-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.guide-card h2,
.mistakes-card h2,
.final-cta-card h2{
    margin:0 0 10px;
    font-size:1.45rem;
}

.mistakes-list{
    display:grid;
    gap:12px;
    margin-top:16px;
}

.mistakes-list div{
    background:#f8fbff;
    border:1px solid #dbeafe;
    border-radius:18px;
    padding:14px;
    color:#334155;
    font-weight:850;
    line-height:1.6;
}

.final-cta-card{
    text-align:center;
}

.final-cta-card p{
    max-width:680px;
    margin:0 auto 20px;
}

@media(max-width:900px){
    .cpa-guide-hero{
        grid-template-columns:1fr;
    }

    .guide-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:560px){
    .cpa-guide-page{
        padding-top:22px;
    }

    .cpa-guide-hero{
        padding:22px;
        border-radius:26px;
    }

    .cpa-guide-actions{
        flex-direction:column;
    }

    .cpa-guide-btn{
        width:100%;
    }
}