/* ============================================================
   AARSH INSTITUTE
   CLASS 9 NOTES
============================================================ */

.notes9-page{
    --yellow:#fdbe00;
    --maroon:#7a0c0f;
    --white:#ffffff;
    --black:#050505;
    --card:#101010;
    --card2:#151515;
    --border:rgba(255,255,255,.09);
    --muted:rgba(255,255,255,.65);

    background:var(--black);
    color:var(--white);
    overflow:hidden;
    position:relative;
}

.notes9-page *,
.notes9-page *::before,
.notes9-page *::after{
    box-sizing:border-box;
}

.notes9-page button,
.notes9-page input,
.notes9-page select,
.notes9-page textarea{
    font:inherit;
}


/* ============================================================
   CONTAINER
============================================================ */

.notes9-page .container{
    width:min(1280px,92%);
    margin:auto;
    position:relative;
    z-index:5;
}

.notes9-page .container-small{
    width:min(900px,92%);
    margin:auto;
    position:relative;
    z-index:5;
}

.notes9-page .section-padding{
    padding:130px 0;
}

.notes9-page .dark-section{
    background:#0a0a0a;
}


/* ============================================================
   HERO
============================================================ */

.notes9-hero{
    min-height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.notes9-hero .hero-bg{
    position:absolute;
    inset:0;
}

.notes9-hero .hero-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:.18;
}

.notes9-hero .hero-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            90deg,
            rgba(5,5,5,.98) 0%,
            rgba(5,5,5,.88) 50%,
            rgba(5,5,5,.48) 100%
        ),
        linear-gradient(
            to bottom,
            rgba(0,0,0,.2),
            rgba(0,0,0,.96)
        );
}

.notes9-hero .hero-grid{
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );
    background-size:60px 60px;
}

.notes9-hero .hero-blob{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
    pointer-events:none;
}

.notes9-hero .hero-blob-1{
    width:500px;
    height:500px;
    background:rgba(253,190,0,.15);
    top:-200px;
    left:-180px;
}

.notes9-hero .hero-blob-2{
    width:550px;
    height:550px;
    background:rgba(122,12,15,.24);
    right:-200px;
    bottom:-220px;
}

.notes9-hero .hero-content{
    max-width:900px;
    padding:160px 0 120px;
}

.notes9-hero .hero-badge{
    display:inline-flex;
    align-items:center;
    padding:12px 22px;
    border-radius:999px;
    border:1px solid rgba(253,190,0,.25);
    background:rgba(253,190,0,.06);
    color:var(--yellow);
    font-size:12px;
    font-weight:800;
    letter-spacing:3px;
    margin-bottom:28px;
}

.notes9-hero .hero-title{
    margin:0;
    font-size:clamp(70px,9vw,125px);
    line-height:.9;
    letter-spacing:-5px;
    font-weight:900;
}

.notes9-hero .hero-title span{
    display:block;
    color:var(--yellow);
}

.notes9-hero .hero-subtitle{
    max-width:780px;
    margin:30px 0 0;
    font-size:20px;
    line-height:1.8;
    color:rgba(255,255,255,.7);
}

.notes9-hero .hero-buttons,
.notes9-page .hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-top:36px;
}

.notes9-page .primary-btn,
.notes9-page .secondary-btn{
    min-height:56px;
    padding:0 30px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-weight:800;
    transition:.3s ease;
}

.notes9-page .primary-btn{
    background:var(--yellow);
    color:#050505;
}

.notes9-page .primary-btn:hover{
    transform:translateY(-3px);
}

.notes9-page .secondary-btn{
    color:#fff;
    border:1px solid rgba(255,255,255,.15);
    background:rgba(255,255,255,.04);
}

.notes9-page .secondary-btn:hover{
    color:var(--yellow);
    border-color:var(--yellow);
    transform:translateY(-3px);
}


/* ============================================================
   STATS
============================================================ */

.notes9-page .stats-section{
    position:relative;
    z-index:10;
    margin-top:-55px;
}

.notes9-page .stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.notes9-page .stat-card{
    min-height:180px;
    padding:28px;
    border-radius:25px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.055),
            rgba(255,255,255,.015)
        ),
        #0d0d0d;
    border:1px solid var(--border);
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.notes9-page .stat-card h3{
    margin:0;
    font-size:38px;
    color:var(--yellow);
    line-height:1;
}

.notes9-page .stat-card p{
    margin:12px 0 0;
    color:var(--muted);
    font-size:13px;
}


/* ============================================================
   SECTION HEADING
============================================================ */

.notes9-page .section-heading{
    max-width:850px;
    margin:0 auto 65px;
    text-align:center;
}

.notes9-page .mini-title{
    display:block;
    color:var(--yellow);
    font-size:11px;
    font-weight:900;
    letter-spacing:3px;
    margin-bottom:16px;
}

.notes9-page .section-heading h2{
    margin:0;
    font-size:clamp(42px,5vw,68px);
    line-height:1.08;
    letter-spacing:-2px;
}

.notes9-page .section-heading h2 span{
    color:var(--yellow);
}

.notes9-page .section-heading > p{
    max-width:650px;
    margin:20px auto 0;
    color:var(--muted);
    line-height:1.8;
}


/* ============================================================
   SUBJECT FILTER
============================================================ */

.subject-filter-wrapper{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
}

.subject-filter-btn{
    min-height:48px;
    padding:0 22px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.1);
    background:#111;
    color:rgba(255,255,255,.72);
    font-weight:700;
    cursor:pointer;
    transition:.3s ease;
}

.subject-filter-btn:hover{
    color:var(--yellow);
    border-color:rgba(253,190,0,.5);
}

.subject-filter-btn.active{
    background:var(--yellow);
    border-color:var(--yellow);
    color:#050505;
}


/* ============================================================
   NOTES GRID
============================================================ */

.notes-resource-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.note-resource-card{
    position:relative;
    display:flex;
    flex-direction:column;
    background:#101010;
    border:1px solid var(--border);
    border-radius:26px;
    padding:17px;
    overflow:hidden;
    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.note-resource-card:hover{
    transform:translateY(-7px);
    border-color:rgba(253,190,0,.5);
    box-shadow:0 25px 60px rgba(0,0,0,.28);
}

.note-resource-card.is-hidden{
    display:none !important;
}


/* ============================================================
   COVER IMAGE
============================================================ */

.note-cover{
    width:100%;
    aspect-ratio:16 / 10;
    border-radius:19px;
    overflow:hidden;
    position:relative;
    background:#181818;
}

.note-cover > img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    transition:transform .5s ease;
}

.note-resource-card:hover .note-cover > img{
    transform:scale(1.035);
}

.note-cover-placeholder{
    width:100%;
    height:100%;
    min-height:100%;
    padding:25px;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:flex-end;
    position:relative;
    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(253,190,0,.18),
            transparent 36%
        ),
        linear-gradient(
            135deg,
            #171717,
            #080808
        );
}

.note-cover-placeholder::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );
    background-size:30px 30px;
}

.note-cover-placeholder svg{
    width:50px;
    height:50px;
    padding:13px;
    border-radius:15px;
    background:var(--yellow);
    color:#050505;
    position:relative;
    z-index:2;
    margin-bottom:15px;
}

.note-cover-placeholder span{
    position:relative;
    z-index:2;
    color:#fff;
    font-size:24px;
    font-weight:900;
}

.note-cover-badge{
    position:absolute;
    top:14px;
    right:14px;
    z-index:5;
    padding:7px 11px;
    border-radius:999px;
    background:var(--yellow);
    color:#050505;
    font-size:9px;
    font-weight:900;
    letter-spacing:1px;
}


/* ============================================================
   NOTE CONTENT
============================================================ */

.note-resource-content{
    flex:1;
    display:flex;
    flex-direction:column;
    padding:20px 5px 4px;
}

.note-card-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:13px;
}

.note-subject,
.note-category{
    display:inline-flex;
    align-items:center;
    min-height:28px;
    padding:0 11px;
    border-radius:999px;
    font-size:9px;
    font-weight:900;
    letter-spacing:1px;
}

.note-subject{
    color:var(--yellow);
    background:rgba(253,190,0,.06);
    border:1px solid rgba(253,190,0,.22);
}

.note-category{
    color:rgba(255,255,255,.6);
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
}

.note-chapter{
    margin-bottom:8px;
    color:var(--yellow);
    font-size:11px;
    font-weight:800;
    letter-spacing:.5px;
}

.note-title{
    margin:0;
    color:#fff;
    font-size:22px;
    line-height:1.35;
}

.note-description{
    margin:13px 0 18px;
    color:var(--muted);
    font-size:14px;
    line-height:1.7;
}

.note-meta{
    margin-top:auto;
    padding:15px 0;
    border-top:1px solid rgba(255,255,255,.07);
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
}

.note-meta span{
    display:flex;
    align-items:center;
    gap:6px;
    color:rgba(255,255,255,.5);
    font-size:11px;
}

.note-meta svg{
    width:14px;
    height:14px;
    color:var(--yellow);
}


/* ============================================================
   DOWNLOAD BUTTON
============================================================ */

.download-note-btn{
    width:100%;
    min-height:53px;
    padding:0 18px;
    border:0;
    border-radius:15px;
    background:var(--yellow);
    color:#050505;
    font-weight:900;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    transition:.3s ease;
}

.download-note-btn > span{
    display:flex;
    align-items:center;
    gap:8px;
}

.download-note-btn svg{
    width:17px;
    height:17px;
}

.download-note-btn:hover{
    transform:translateY(-2px);
}


/* ============================================================
   EMPTY STATES
============================================================ */

.filter-empty-state,
.notes-empty-state{
    max-width:600px;
    margin:30px auto 0;
    padding:60px 30px;
    border-radius:28px;
    border:1px dashed rgba(255,255,255,.13);
    background:rgba(255,255,255,.015);
    text-align:center;
}

.empty-icon{
    width:65px;
    height:65px;
    margin:0 auto 20px;
    border-radius:20px;
    background:rgba(253,190,0,.08);
    color:var(--yellow);
    display:flex;
    align-items:center;
    justify-content:center;
}

.empty-icon svg{
    width:28px;
    height:28px;
}

.filter-empty-state h3,
.notes-empty-state h3{
    margin:0;
    font-size:28px;
}

.filter-empty-state p,
.notes-empty-state p{
    max-width:480px;
    margin:12px auto 0;
    color:var(--muted);
    line-height:1.75;
}

.notes-empty-state > span{
    display:block;
    margin-bottom:12px;
    color:var(--yellow);
    font-size:10px;
    font-weight:900;
    letter-spacing:3px;
}


/* ============================================================
   FEATURES
============================================================ */

.notes9-page .feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.notes9-page .feature-card{
    min-height:300px;
    padding:35px;
    border-radius:26px;
    border:1px solid var(--border);
    background:#101010;
    transition:.35s ease;
}

.notes9-page .feature-card:hover{
    transform:translateY(-7px);
    border-color:rgba(253,190,0,.4);
}

.notes9-page .feature-card > svg{
    width:58px;
    height:58px;
    padding:15px;
    border-radius:17px;
    background:rgba(253,190,0,.08);
    color:var(--yellow);
    margin-bottom:45px;
}

.notes9-page .feature-card h3{
    margin:0 0 13px;
    color:#fff;
    font-size:21px;
}

.notes9-page .feature-card p{
    margin:0;
    color:var(--muted);
    line-height:1.75;
}


/* ============================================================
   FAQ
============================================================ */

.notes9-page .faq-wrapper{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.notes9-page .faq-item{
    border:1px solid var(--border);
    border-radius:20px;
    background:#101010;
    overflow:hidden;
}

.notes9-page .faq-question{
    width:100%;
    min-height:80px;
    padding:20px 25px;
    border:0;
    background:transparent;
    color:#fff;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    text-align:left;
    font-weight:800;
}

.notes9-page .faq-question svg{
    width:20px;
    height:20px;
    color:var(--yellow);
    flex-shrink:0;
    transition:transform .3s ease;
}

.notes9-page .faq-answer{
    display:none;
    padding:0 25px 25px;
}

.notes9-page .faq-answer p{
    margin:0;
    color:var(--muted);
    line-height:1.8;
}

.notes9-page .faq-item.active .faq-answer{
    display:block;
}

.notes9-page .faq-item.active .faq-question svg{
    transform:rotate(45deg);
}


/* ============================================================
   FINAL CTA
============================================================ */

.notes9-page .final-cta{
    position:relative;
    overflow:hidden;
    padding:145px 0;
    text-align:center;
    background:#050505;
}

.notes9-page .final-cta::before{
    content:"";
    position:absolute;
    width:650px;
    height:350px;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    border-radius:50%;
    background:rgba(253,190,0,.07);
    filter:blur(100px);
}

.notes9-page .final-cta h2{
    margin:0;
    font-size:clamp(45px,6vw,80px);
    line-height:1.05;
    letter-spacing:-3px;
}

.notes9-page .final-cta h2 span{
    display:block;
    color:var(--yellow);
}

.notes9-page .final-cta p{
    max-width:650px;
    margin:24px auto 0;
    color:var(--muted);
    line-height:1.8;
}

.notes9-page .cta-buttons{
    justify-content:center;
}


/* ============================================================
   DOWNLOAD MODAL
============================================================ */

.download-modal{
    position:fixed;
    inset:0;
    z-index:999999;
    padding:25px;
    display:flex;
    align-items:center;
    justify-content:center;

    opacity:0;
    visibility:hidden;
    pointer-events:none;

    transition:
        opacity .3s ease,
        visibility .3s ease;
}

.download-modal.active{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

.download-modal-backdrop{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.86);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
}

.download-modal-dialog{
    width:min(1050px,100%);
    max-height:calc(100vh - 50px);
    position:relative;
    z-index:2;
    overflow:auto;
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    border-radius:30px;
    border:1px solid rgba(255,255,255,.12);
    background:#0d0d0d;
    box-shadow:0 30px 100px rgba(0,0,0,.7);
}


/* ============================================================
   MODAL LEFT
============================================================ */

.download-modal-info{
    padding:55px 42px;
    border-right:1px solid rgba(255,255,255,.07);
    background:
        radial-gradient(
            circle at 0 0,
            rgba(253,190,0,.1),
            transparent 40%
        ),
        #090909;
}

.modal-mini-title{
    color:var(--yellow);
    font-size:10px;
    font-weight:900;
    letter-spacing:3px;
}

.download-modal-info h2{
    margin:18px 0;
    font-size:45px;
    line-height:1.05;
    letter-spacing:-2px;
}

.download-modal-info h2 span{
    display:block;
    color:var(--yellow);
}

.download-modal-info > p{
    color:var(--muted);
    line-height:1.75;
}

.selected-note-box{
    margin-top:30px;
    padding:20px;
    border-radius:18px;
    border:1px solid rgba(253,190,0,.18);
    background:rgba(253,190,0,.05);
}

.selected-note-box small{
    display:block;
    color:rgba(255,255,255,.42);
    font-size:9px;
    font-weight:900;
    letter-spacing:2px;
}

.selected-note-box strong{
    display:block;
    margin-top:8px;
    color:#fff;
    line-height:1.4;
}

.selected-note-box span{
    display:block;
    margin-top:6px;
    color:var(--yellow);
    font-size:12px;
}

.download-benefits{
    list-style:none;
    padding:0;
    margin:30px 0 0;
    display:flex;
    flex-direction:column;
    gap:13px;
}

.download-benefits li{
    display:flex;
    align-items:center;
    gap:10px;
    color:rgba(255,255,255,.7);
    font-size:13px;
}

.download-benefits svg{
    width:17px;
    height:17px;
    color:var(--yellow);
}


/* ============================================================
   MODAL RIGHT
============================================================ */

.download-modal-form-side{
    position:relative;
    padding:55px 42px 40px;
}

.download-modal-close{
    position:absolute;
    top:18px;
    right:18px;
    z-index:20;
    width:42px;
    height:42px;
    padding:0;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.12);
    background:#191919;
    color:#fff;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
}

.download-modal-close:hover{
    color:var(--yellow);
    border-color:var(--yellow);
}

.download-modal-close svg{
    width:18px;
    height:18px;
}


/* ============================================================
   FORM
============================================================ */

.modal-form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:17px;
}

.form-group{
    margin-bottom:17px;
}

.form-group.full-width{
    width:100%;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    color:rgba(255,255,255,.72);
    font-size:12px;
    font-weight:700;
}

.form-group label span{
    color:var(--yellow);
}

.form-group input,
.form-group select{
    width:100%;
    height:51px;
    padding:0 15px;
    border:1px solid rgba(255,255,255,.1);
    border-radius:13px;
    outline:none;
    background:#151515;
    color:#fff;
    caret-color:var(--yellow);
    transition:
        border-color .25s ease,
        background .25s ease;
}

.form-group input::placeholder{
    color:rgba(255,255,255,.28);
}

.form-group input:focus,
.form-group select:focus{
    border-color:var(--yellow);
    background:#181818;
}

.form-group input[readonly]{
    color:var(--yellow);
    background:#111;
}

.form-group select{
    cursor:pointer;
}

.form-group option{
    color:#fff;
    background:#151515;
}


/* ============================================================
   MOBILE NUMBER
============================================================ */

.mobile-input-wrap{
    position:relative;
    display:flex;
    align-items:center;
}

.country-code{
    height:51px;
    min-width:58px;
    border:1px solid rgba(255,255,255,.1);
    border-right:0;
    border-radius:13px 0 0 13px;
    background:#111;
    color:var(--yellow);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
    font-weight:800;
}

.mobile-input-wrap input{
    border-radius:0 13px 13px 0;
}


/* ============================================================
   CONSENT
============================================================ */

.consent-row{
    display:flex;
    align-items:flex-start;
    gap:11px;
    color:rgba(255,255,255,.55);
    font-size:11px;
    line-height:1.6;
    cursor:pointer;
}

.consent-row input{
    width:16px;
    height:16px;
    margin:2px 0 0;
    flex-shrink:0;
    accent-color:var(--yellow);
}


/* ============================================================
   FORM RESPONSE
============================================================ */

.form-response{
    display:none;
    margin-top:15px;
    padding:12px 14px;
    border-radius:11px;
    font-size:12px;
    line-height:1.5;
}

.form-response.error{
    display:block;
    color:#ffb3b3;
    border:1px solid rgba(255,70,70,.25);
    background:rgba(255,70,70,.07);
}

.form-response.success{
    display:block;
    color:#bfffc9;
    border:1px solid rgba(63,200,95,.25);
    background:rgba(63,200,95,.07);
}


/* ============================================================
   SUBMIT
============================================================ */

.modal-submit-btn{
    width:100%;
    min-height:55px;
    margin-top:18px;
    padding:0 20px;
    border:0;
    border-radius:14px;
    background:var(--yellow);
    color:#050505;
    font-weight:900;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    transition:.3s ease;
}

.modal-submit-btn:hover{
    transform:translateY(-2px);
}

.modal-submit-btn:disabled{
    opacity:.65;
    cursor:not-allowed;
    transform:none;
}

.modal-submit-btn svg{
    width:18px;
    height:18px;
}

.modal-security{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    margin-top:13px;
    color:rgba(255,255,255,.35);
    text-align:center;
    font-size:10px;
}

.modal-security svg{
    width:13px;
    height:13px;
}


/* ============================================================
   CURSOR LIGHT
============================================================ */

.light-cursor{
    position:fixed;
    width:300px;
    height:300px;
    border-radius:50%;
    background:rgba(253,190,0,.07);
    filter:blur(80px);
    pointer-events:none !important;
    z-index:1;
    transform:translate(-50%,-50%);
}


/* ============================================================
   IMPORTANT CURSOR FIX
============================================================ */

/*
   Decorative cursor form ke actual mouse cursor ko
   interfere nahi karega.
*/

.download-modal,
.download-modal-dialog,
.download-modal-form-side{
    cursor:default;
}

.download-modal input[type="text"],
.download-modal input[type="email"],
.download-modal input[type="tel"],
.download-modal textarea{
    cursor:text !important;
    caret-color:#fdbe00 !important;
}

.download-modal select,
.download-modal button,
.download-modal label{
    cursor:pointer !important;
}

.download-modal input:focus{
    caret-color:#fdbe00 !important;
}


/* ============================================================
   MODAL BODY LOCK
============================================================ */

body.notes9-modal-open{
    overflow:hidden !important;
}


/* ============================================================
   REVEAL
============================================================ */

.reveal-up{
    opacity:0;
    transform:translateY(50px);
    transition:
        opacity .8s ease,
        transform .8s ease;
}

.reveal-up.active{
    opacity:1;
    transform:translateY(0);
}


/* ============================================================
   TABLET
============================================================ */

@media(max-width:1100px){

    .notes-resource-grid{
        grid-template-columns:repeat(2,1fr);
    }

}


/* ============================================================
   TABLET / MOBILE
============================================================ */

@media(max-width:850px){

    .notes9-hero{
        min-height:auto;
    }

    .notes9-hero .hero-content{
        padding:150px 0 120px;
    }

    .notes9-hero .hero-title{
        letter-spacing:-3px;
    }

    .notes9-hero .hero-subtitle{
        font-size:17px;
    }

    .notes9-page .stats-section{
        margin-top:-35px;
    }

    .notes9-page .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .notes9-page .section-padding{
        padding:95px 0;
    }

    .notes9-page .feature-grid{
        grid-template-columns:1fr;
    }

    .download-modal{
        padding:15px;
    }

    .download-modal-dialog{
        grid-template-columns:1fr;
        max-height:calc(100vh - 30px);
    }

    .download-modal-info{
        padding:40px 28px;
        border-right:0;
        border-bottom:1px solid rgba(255,255,255,.07);
    }

    .download-modal-form-side{
        padding:40px 28px;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media(max-width:600px){

    .notes9-page .container,
    .notes9-page .container-small{
        width:94%;
    }

    .notes9-hero .hero-content{
        padding:130px 0 100px;
    }

    .notes9-hero .hero-badge{
        padding:10px 15px;
        font-size:9px;
        letter-spacing:2px;
    }

    .notes9-hero .hero-title{
        font-size:clamp(55px,19vw,80px);
        letter-spacing:-3px;
    }

    .notes9-hero .hero-subtitle{
        font-size:15px;
        line-height:1.7;
    }

    .notes9-page .hero-buttons{
        flex-direction:column;
    }

    .notes9-page .primary-btn,
    .notes9-page .secondary-btn{
        width:100%;
    }

    .notes9-page .stats-grid{
        gap:10px;
    }

    .notes9-page .stat-card{
        min-height:145px;
        padding:18px 10px;
    }

    .notes9-page .stat-card h3{
        font-size:28px;
    }

    .notes9-page .section-heading{
        margin-bottom:45px;
    }

    .notes9-page .section-heading h2{
        letter-spacing:-1.5px;
    }

    .subject-filter-wrapper{
        justify-content:flex-start;
        flex-wrap:nowrap;
        overflow-x:auto;
        padding-bottom:10px;
        scrollbar-width:none;
    }

    .subject-filter-wrapper::-webkit-scrollbar{
        display:none;
    }

    .subject-filter-btn{
        flex-shrink:0;
    }

    .notes-resource-grid{
        grid-template-columns:1fr;
    }

    .note-title{
        font-size:20px;
    }

    .notes9-page .final-cta{
        padding:100px 0;
    }

    .notes9-page .final-cta h2{
        letter-spacing:-2px;
    }

    .download-modal{
        padding:8px;
        align-items:flex-start;
    }

    .download-modal-dialog{
        margin-top:8px;
        max-height:calc(100vh - 16px);
        border-radius:20px;
    }

    .download-modal-info{
        padding:35px 22px;
    }

    .download-modal-info h2{
        font-size:36px;
    }

    .download-modal-form-side{
        padding:35px 20px 30px;
    }

    .modal-form-grid{
        grid-template-columns:1fr;
        gap:0;
    }

}


/* ============================================================
   TOUCH DEVICE
============================================================ */

@media(hover:none){

    .light-cursor{
        display:none;
    }

}