nav{
    background:#071B36;
}

.section-tag{
    display:inline-flex;
    align-items:center;
    padding:8px 18px;
    border-radius:50px;
    background:#F5E8CB;
    color:#8B6A2F;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
}

.diag-hero{
    background:linear-gradient(
        135deg,
        #071B36 0%,
        #0B1F3A 60%,
        #10284D 100%
    );
    padding:170px 0 100px;
    overflow:hidden;
}

.diag-hero .container{
    width:1200px;
    max-width:90%;
    margin:0 auto;
}

.diag-hero .section-tag{
    background:rgba(255,255,255,.08);
    color:#C89B4B;
    border:1px solid rgba(255,255,255,.12);
}

.diag-hero-layout{
    display:grid;
    grid-template-columns:52% 48%;
    gap:60px;
    align-items:center;
}

.diag-hero-left h1{
    margin-top:22px;
    font-size:48px;
    line-height:1.2;
    color:#ffffff;
    letter-spacing:-1px;
}

.diag-hero-left h1 .highlight{
    color:#C89B4B;
}

.diag-hero-left p{
    margin-top:22px;
    font-size:17px;
    line-height:1.8;
    color:rgba(255,255,255,.75);
    max-width:520px;
}

.diag-hero-left .hero-buttons{
    margin-top:32px;
    display:flex;
    gap:18px;
}

.hero-trust-row{
    display:flex;
    gap:28px;
    margin-top:44px;
    flex-wrap:wrap;
}

.hero-trust-item{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:14px;
    color:rgba(255,255,255,.7);
}

.hero-trust-item i{
    width:18px;
    height:18px;
    color:#C89B4B;
    stroke-width:1.75;
}

.diag-hero-right{
    position:relative;
}

.snapshot-card{
    background:#111C33;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:32px;
    box-shadow:0 30px 60px rgba(0,0,0,.35);
}

.snapshot-card h3{
    color:#ffffff;
    font-size:17px;
    font-weight:500;
    margin-bottom:24px;
}

.snapshot-bars{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.snapshot-bar-row{
    display:grid;
    grid-template-columns:150px 1fr 40px;
    align-items:center;
    gap:12px;
}

.bar-label{
    font-size:13px;
    color:rgba(255,255,255,.65);
}

.bar-track{
    height:8px;
    background:rgba(255,255,255,.08);
    border-radius:10px;
    overflow:hidden;
}

.bar-fill{
    height:100%;
    background:#C89B4B;
    border-radius:10px;
}

.bar-value{
    font-size:13px;
    color:#C89B4B;
    font-weight:600;
    text-align:right;
}

.stat-mini-card{
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#111C33;
    border:1px solid rgba(255,255,255,.08);
    border-radius:14px;
    padding:18px 24px;
    margin-top:16px;
}

.mini-label{
    font-size:14px;
    color:rgba(255,255,255,.65);
}

.mini-value{
    font-size:20px;
    font-weight:700;
    color:#ffffff;
}

.mini-value.high{
    color:#7ED957;
}

.diag-process{
    padding:90px 0;
    background:#ffffff;
}

.diag-process .container{
    width:1200px;
    max-width:90%;
    margin:0 auto;
}

.section-heading.center{
    text-align:center;
    max-width:700px;
    margin:0 auto 70px;
}

.section-heading.center h2{
    margin-top:20px;
    font-size:38px;
    line-height:1.25;
    color:#0B1F3A;
    letter-spacing:-1px;
}

.process-steps{
    position:relative;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.process-steps::before{
    content:"";
    position:absolute;
    top:32px;
    left:10%;
    right:10%;
    height:0;
    border-top:2px dashed #C89B4B;
    z-index:0;
}

.process-step{
    position:relative;
    z-index:1;
    text-align:center;
}

.process-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:64px;
    height:64px;
    border-radius:50%;
    background:#F8F9FB;
    border:1px solid #ECECEC;
    margin:0 auto 22px;
}

.process-icon i{
    width:24px;
    height:24px;
    color:#0B1F3A;
    stroke-width:1.75;
}

.process-step h3{
    font-size:17px;
    color:#0B1F3A;
    margin-bottom:10px;
}

.process-step p{
    font-size:14px;
    color:#666;
    line-height:1.7;
    max-width:210px;
    margin:0 auto;
}

.diag-outcome{
    padding:90px 0;
    background:#F8F9FB;
}

.diag-outcome .container{
    width:1200px;
    max-width:90%;
    margin:0 auto;
}

.outcome-layout{
    display:grid;
    grid-template-columns:38% 62%;
    gap:70px;
    align-items:center;
}

.outcome-left h2{
    margin-top:20px;
    font-size:36px;
    line-height:1.25;
    color:#0B1F3A;
    letter-spacing:-1px;
}

.outcome-list{
    list-style:none;
    padding:0;
    margin-top:30px;
}

.outcome-list li{
    position:relative;
    padding-left:32px;
    margin-bottom:16px;
    font-size:16px;
    line-height:1.6;
    color:#333;
}

.outcome-list li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:#C89B4B;
    font-weight:700;
}

.report-mock{
    background:#0B1F3A;
    border-radius:20px;
    padding:36px;
    box-shadow:0 30px 60px rgba(0,0,0,.15);
}

.report-header{
    margin-bottom:28px;
}

.report-logo{
    color:#C89B4B;
    font-weight:700;
    font-size:15px;
}

.report-header p{
    color:#ffffff;
    font-size:22px;
    font-weight:500;
    margin-top:8px;
}

.report-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.report-block{
    background:#ffffff;
    border-radius:14px;
    padding:22px;
}

.report-block-title{
    display:block;
    font-size:13px;
    font-weight:600;
    color:#0B1F3A;
    margin-bottom:16px;
}

.report-line{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:13px;
    color:#555;
    margin-bottom:12px;
}

.dot{
    width:8px;
    height:8px;
    border-radius:50%;
    flex-shrink:0;
}

.dot.high{
    background:#E24B4A;
}

.dot.mid{
    background:#C89B4B;
}

.report-metric{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:14px;
    font-size:13px;
    color:#555;
}

.report-metric strong{
    font-size:18px;
}

.report-metric strong.up{
    color:#43A047;
}

.diag-pricing{
    padding:90px 0;
    background:#ffffff;
}

.diag-pricing .container{
    width:1200px;
    max-width:90%;
    margin:0 auto;
}

.pricing-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:32px;
    max-width:900px;
    margin:0 auto;
}

.pricing-card{
    position:relative;
    background:#ffffff;
    border:1px solid #ECECEC;
    border-radius:20px;
    padding:44px 36px;
}

.pricing-card.featured{
    border:2px solid #C89B4B;
    box-shadow:0 25px 60px rgba(0,0,0,.08);
}

.most-popular{
    position:absolute;
    top:-14px;
    left:50%;
    transform:translateX(-50%);
    background:#C89B4B;
    color:#0B1F3A;
    font-size:12px;
    font-weight:700;
    letter-spacing:.5px;
    padding:6px 16px;
    border-radius:50px;
}

.pricing-label{
    display:block;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    color:#8B6A2F;
    margin-bottom:16px;
}

.pricing-card h3{
    font-size:24px;
    color:#0B1F3A;
    margin-bottom:14px;
    line-height:1.3;
}

.pricing-price{
    font-size:32px;
    font-weight:700;
    color:#0B1F3A;
    margin-bottom:16px;
}

.pricing-desc{
    font-size:14px;
    color:#666;
    line-height:1.7;
    margin-bottom:26px;
}

.pricing-features{
    list-style:none;
    padding:0;
    margin-bottom:32px;
}

.pricing-features li{
    position:relative;
    padding-left:28px;
    margin-bottom:14px;
    font-size:14px;
    color:#333;
}

.pricing-features li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:#C89B4B;
    font-weight:700;
}

.outline-dark-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:52px;
    border-radius:50px;
    border:1px solid #0B1F3A;
    color:#0B1F3A;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.outline-dark-btn:hover{
    background:#0B1F3A;
    color:#ffffff;
}

.gold-btn.full-width{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:52px;
}
.diag-urgency{
    padding:100px 0;
    background:#0B1F3A;
}

.diag-urgency .container{
    width:1200px;
    max-width:90%;
    margin:0 auto;
}

.section-tag.dark{
    background:rgba(255,255,255,.08);
    color:#C89B4B;
    border:1px solid rgba(255,255,255,.12);
}

.urgency-layout{
    display:grid;
    grid-template-columns:55% 45%;
    gap:60px;
    align-items:center;
}

.urgency-left h2{
    margin-top:20px;
    font-size:34px;
    line-height:1.3;
    color:#ffffff;
    letter-spacing:-1px;
}

.urgency-left p{
    margin-top:22px;
    font-size:16px;
    line-height:1.8;
    color:rgba(255,255,255,.7);
    max-width:520px;
}

.urgency-left .gold-btn{
    display:inline-block;
    margin-top:32px;
}

.urgency-right{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.urgency-stat{
    display:flex;
    align-items:flex-start;
    gap:18px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;
    padding:22px 26px;
}

.urgency-stat i,
.urgency-stat svg{
    width:24px;
    height:24px;
    color:#C89B4B;
    stroke-width:1.75;
    flex-shrink:0;
    margin-top:2px;
}


.urgency-stat h4{
    font-size:16px;
    color:#ffffff;
    margin-bottom:6px;
}

.urgency-stat p{
    font-size:14px;
    color:rgba(255,255,255,.6);
    line-height:1.6;
    margin:0;
}
.diag-cta{
    padding:70px 0;
    background:#071B36;
}

.diag-cta .container{
    width:1200px;
    max-width:90%;
    margin:0 auto;
}

.diag-cta-layout{
    display:grid;
    grid-template-columns:50% 50%;
    gap:40px;
    align-items:center;
}

.diag-cta h2{
    font-size:36px;
    line-height:1.3;
    color:#ffffff;
    letter-spacing:-1px;
}

.diag-cta .cta-right p{
    font-size:16px;
    color:rgba(255,255,255,.75);
    line-height:1.8;
    margin-bottom:26px;
}

.diag-cta .cta-buttons{
    display:flex;
    gap:18px;
}

.outline-btn-dark{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:52px;
    padding:0 30px;
    border-radius:50px;
    border:1px solid rgba(255,255,255,.35);
    color:#ffffff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.outline-btn-dark:hover{
    background:#ffffff;
    color:#0B1F3A;
}
@media (max-width: 900px){

    .diag-hero-left h1{
        font-size:36px;
    }

    .diag-hero-layout{
        grid-template-columns:1fr;
        gap:40px;
    }

    .snapshot-bar-row{
        grid-template-columns:110px 1fr 36px;
    }

    .process-steps{
        grid-template-columns:repeat(2,1fr);
        gap:40px 24px;
    }

    .process-steps::before{
        display:none;
    }

    .outcome-layout{
        grid-template-columns:1fr;
        gap:30px;
    }

    .report-row{
        grid-template-columns:1fr;
        gap:16px;
    }

    .pricing-grid{
        grid-template-columns:1fr;
        max-width:500px;
    }

    .urgency-layout{
        grid-template-columns:1fr;
        gap:30px;
    }

    .diag-cta-layout{
        grid-template-columns:1fr;
        gap:24px;
    }

}

@media (max-width: 600px){

    .diag-hero{
        padding:140px 0 80px;
    }

    .diag-hero-left h1{
        font-size:28px;
    }

    .process-steps{
        grid-template-columns:1fr;
    }

    .hero-buttons,
    .hero-trust-row{
        flex-direction:column;
        align-items:flex-start;
    }

    .hero-buttons{
        width:100%;
    }

    .hero-buttons a{
        width:100%;
        text-align:center;
    }

}
@media (max-width: 600px){

    .diag-process,
    .diag-outcome,
    .diag-pricing,
    .diag-urgency,
    .diag-cta{
        padding-top:50px;
        padding-bottom:50px;
    }
    .snapshot-card,
    .report-mock,
    .pricing-card{
        padding:26px 22px;
    }

    .urgency-stat{
        padding:18px 20px;
    }

}
