/* =========================================
        AI READINESS SECTION
========================================= */

.readiness-section{

    position: relative;

    padding: 140px 0;

    background: #fafaf8;

    overflow: hidden;

}

/* subtle drafting paper */

.readiness-section::before{

    content: "";

    position: absolute;

    inset: 0;

    background-image:

        linear-gradient(rgba(0,0,0,.025) 1px, transparent 1px),

        linear-gradient(90deg, rgba(0,0,0,.025) 1px, transparent 1px);

    background-size: 48px 48px;

    opacity: .35;

    pointer-events: none;

}

/* =========================================
            HEADER
========================================= */

.readiness-header{

    position: relative;

    max-width: 760px;

    margin-bottom: 90px;

    z-index: 2;

}

.header-meta{

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 24px;

}

.section-index{

    font-size: 12px;

    font-weight: 600;

    letter-spacing: .18em;

    text-transform: uppercase;

    color: #666;

}

.revision{

    font-size: 12px;

    color: #9b9b9b;

    letter-spacing: .15em;

}

.readiness-header h2{

    font-size: 58px;

    font-weight: 700;

    line-height: 1.05;

    color: #111;

    letter-spacing: -2px;

    margin-bottom: 28px;

}

.readiness-header p{

    font-size: 18px;

    line-height: 1.9;

    color: #666;

    max-width: 680px;

}

/* =========================================
        GRID
========================================= */

.assessment-grid{

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 36px;

    position: relative;

    z-index: 2;

}

/* =========================================
        SHEET
========================================= */

.assessment-sheet{

    background: rgba(255,255,255,.94);

    border: 1px solid #e8e8e8;

    padding: 34px;

    position: relative;

    transition: .35s ease;

}

/* paper corners */

.assessment-sheet::before{

    content: "";

    position: absolute;

    inset: 10px;

    border: 1px dashed rgba(0,0,0,.04);

    pointer-events: none;

}

.assessment-sheet:hover{

    transform: translateY(-6px);

    border-color: #d6d6d6;

}

/* =========================================
            SHEET HEADER
========================================= */

.sheet-header{

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 30px;

}

.sheet-id{

    font-size: 11px;

    letter-spacing: .18em;

    text-transform: uppercase;

    color: #999;

}

.sheet-score{

    font-size: 34px;

    font-weight: 700;

    color: #ff8b4d;

    line-height: 1;

}

/* =========================================
            TITLE
========================================= */

.assessment-sheet h3{

    font-size: 30px;

    margin-bottom: 30px;

    color: #111;

    letter-spacing: -.5px;

}

/* =========================================
            CHECKLIST
========================================= */

.check-list{

    list-style: none;

    padding: 0;

    margin: 0;

    display: flex;

    flex-direction: column;

    gap: 18px;

}

.check-list li{

    display: flex;

    align-items: center;

    font-size: 16px;

    color: #444;

}

.check-list li::before{

    content: "●";

    font-size: 10px;

    color: #ff8b4d;

    margin-right: 14px;

}

/* =========================================
        CONSULTANT NOTE
========================================= */

.sheet-note{

    margin-top: 38px;

    padding-top: 24px;

    border-top: 1px solid #ececec;

}

.sheet-note span{

    display: block;

    margin-bottom: 12px;

    font-size: 11px;

    letter-spacing: .18em;

    text-transform: uppercase;

    color: #999;

}

.sheet-note p{

    margin: 0;

    font-size: 15px;

    line-height: 1.8;

    color: #666;

}

/* =========================================
        SUMMARY
========================================= */

.readiness-summary{

    margin-top: 120px;

    display: grid;

    grid-template-columns: 2fr 1fr;

    gap: 50px;

    align-items: start;

}

.summary-title{

    display: inline-block;

    margin-bottom: 40px;

    font-size: 13px;

    letter-spacing: .18em;

    text-transform: uppercase;

    color: #777;

}

.summary-sheet{

    background: white;

    border: 1px solid #e7e7e7;

    padding: 40px;

}

.summary-sheet span{

    display: block;

    margin-bottom: 18px;

    font-size: 12px;

    letter-spacing: .16em;

    text-transform: uppercase;

    color: #999;

}

.summary-sheet h3{

    font-size: 72px;

    line-height: 1;

    color: #111;

    margin-bottom: 12px;

}

.summary-sheet strong{

    display: block;

    margin-bottom: 24px;

    font-size: 22px;

    color: #ff8b4d;

}

.summary-sheet p{

    color: #666;

    line-height: 1.9;

}

/* =========================================
        RESPONSIVE
========================================= */

@media(max-width:992px){

    .assessment-grid{

        grid-template-columns: 1fr;

    }

    .readiness-summary{

        grid-template-columns: 1fr;

    }

    .readiness-header h2{

        font-size: 42px;

    }

}