/* =========================================================
   AARSH INSTITUTE
   CLASS 10 NOTES
   ========================================================= */

.notes10-page{
    --n10-yellow:#febe00;
    --n10-red:#7a0c0f;
    --n10-black:#050505;
    --n10-dark:#0a0a0a;
    --n10-card:#111111;
    --n10-border:rgba(255,255,255,.09);
    --n10-text:#ffffff;
    --n10-muted:rgba(255,255,255,.64);

    background:var(--n10-black);
    color:var(--n10-text);
    overflow:hidden;
    min-height:100vh;
}

.notes10-page *,
.notes10-modal *{
    box-sizing:border-box;
}

.notes10-container{
    width:min(1280px,92%);
    margin:0 auto;
    position:relative;
    z-index:5;
}

.notes10-container-small{
    width:min(900px,92%);
    margin:0 auto;
    position:relative;
    z-index:5;
}

.notes10-section{
    padding:130px 0;
    position:relative;
}

.notes10-dark-section{
    background:#090909;
}


/* =========================================================
   HERO
   ========================================================= */

.notes10-hero{
    min-height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:#050505;
}

.notes10-hero-bg{
    position:absolute;
    inset:0;
}

.notes10-hero-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:.18;
}

.notes10-hero-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.96) 0%,
            rgba(0,0,0,.78) 48%,
            rgba(0,0,0,.55) 100%
        ),
        linear-gradient(
            to bottom,
            rgba(0,0,0,.25),
            #050505
        );
}

.notes10-hero-grid{
    position:absolute;
    inset:0;
    opacity:.7;
    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;
}

.notes10-hero-blob{
    position:absolute;
    width:520px;
    height:520px;
    border-radius:50%;
    filter:blur(130px);
    pointer-events:none;
}

.notes10-hero-blob-1{
    background:#febe00;
    opacity:.13;
    left:-220px;
    top:-180px;
}

.notes10-hero-blob-2{
    background:#7a0c0f;
    opacity:.20;
    right:-220px;
    bottom:-180px;
}

.notes10-hero-content{
    max-width:940px;
    padding-top:130px;
    padding-bottom:100px;
}

.notes10-hero-badge{
    display:inline-flex;
    align-items:center;
    padding:11px 22px;
    border:1px solid rgba(254,190,0,.30);
    background:rgba(254,190,0,.07);
    color:var(--n10-yellow);
    border-radius:999px;
    font-size:12px;
    font-weight:800;
    letter-spacing:2.5px;
    margin-bottom:30px;
}

.notes10-hero-title{
    margin:0;
    font-size:clamp(70px,9vw,125px);
    line-height:.92;
    letter-spacing:-5px;
    font-weight:900;
}

.notes10-hero-title span{
    display:block;
    color:var(--n10-yellow);
}

.notes10-hero-subtitle{
    max-width:790px;
    margin:30px 0 0;
    color:rgba(255,255,255,.70);
    font-size:20px;
    line-height:1.8;
}

.notes10-hero-buttons{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:16px;
    margin-top:38px;
}

.notes10-primary-btn,
.notes10-secondary-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:56px;
    padding:0 31px;
    border-radius:999px;
    text-decoration:none;
    font-weight:800;
    transition:
        transform .25s ease,
        border-color .25s ease,
        background .25s ease;
}

.notes10-primary-btn{
    background:var(--n10-yellow);
    color:#000;
    border:1px solid var(--n10-yellow);
}

.notes10-primary-btn:hover{
    transform:translateY(-3px);
}

.notes10-secondary-btn{
    color:#fff;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.13);
}

.notes10-secondary-btn:hover{
    border-color:rgba(254,190,0,.65);
    transform:translateY(-3px);
}


/* =========================================================
   STATS
   ========================================================= */

.notes10-stats-section{
    position:relative;
    z-index:10;
    margin-top:-65px;
    padding-bottom:30px;
}

.notes10-stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.notes10-stat-card{
    min-height:175px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:30px 20px;
    background:#101010;
    border:1px solid var(--n10-border);
    border-radius:26px;
}

.notes10-stat-card h3{
    margin:0 0 7px;
    color:var(--n10-yellow);
    font-size:48px;
    line-height:1;
    font-weight:900;
}

.notes10-stat-card p{
    margin:0;
    color:var(--n10-muted);
    font-size:14px;
}


/* =========================================================
   SECTION HEADINGS
   ========================================================= */

.notes10-section-heading{
    max-width:850px;
    margin:0 auto 65px;
    text-align:center;
}

.notes10-mini-title{
    display:block;
    margin-bottom:15px;
    color:var(--n10-yellow);
    font-size:12px;
    line-height:1.4;
    font-weight:800;
    letter-spacing:3px;
    text-transform:uppercase;
}

.notes10-section-heading h2,
.notes10-final-cta h2{
    margin:0;
    font-size:clamp(40px,5vw,66px);
    line-height:1.08;
    letter-spacing:-2px;
    font-weight:900;
}

.notes10-section-heading h2 span,
.notes10-final-cta h2 span{
    color:var(--n10-yellow);
}

.notes10-section-heading p{
    max-width:700px;
    margin:20px auto 0;
    color:var(--n10-muted);
    font-size:16px;
    line-height:1.8;
}


/* =========================================================
   SUBJECT FILTERS
   ========================================================= */

.notes10-subject-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:22px;
}

.notes10-subject-card{
    appearance:none;
    width:100%;
    min-height:210px;
    padding:30px;
    text-align:left;
    color:#fff;
    background:#101010;
    border:1px solid var(--n10-border);
    border-radius:25px;
    cursor:pointer;
    font-family:inherit;
    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease;
}

.notes10-subject-card:hover{
    transform:translateY(-7px);
    border-color:rgba(254,190,0,.55);
}

.notes10-subject-card.active{
    background:
        linear-gradient(
            145deg,
            rgba(254,190,0,.11),
            #101010 60%
        );
    border-color:rgba(254,190,0,.70);
}

.notes10-subject-icon{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
    border-radius:14px;
    background:rgba(254,190,0,.10);
    color:var(--n10-yellow);
}

.notes10-subject-icon svg{
    width:22px;
    height:22px;
}

.notes10-subject-card h3{
    margin:0 0 10px;
    font-size:19px;
    font-weight:800;
}

.notes10-subject-card p{
    margin:0;
    color:var(--n10-muted);
    font-size:14px;
    line-height:1.65;
}


/* =========================================================
   MATERIAL CARDS
   ========================================================= */

.notes10-material-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:28px;
}

.notes10-material-card{
    min-width:0;
    overflow:hidden;
    background:#101010;
    border:1px solid var(--n10-border);
    border-radius:28px;
    transition:
        transform .3s ease,
        border-color .3s ease;
}

.notes10-material-card:hover{
    transform:translateY(-7px);
    border-color:rgba(254,190,0,.45);
}

.notes10-material-card[hidden]{
    display:none !important;
}

.notes10-material-cover{
    height:330px;
    position:relative;
    overflow:hidden;
    background:#161616;
}

.notes10-material-cover img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .5s ease;
}

.notes10-material-card:hover .notes10-material-cover img{
    transform:scale(1.035);
}

.notes10-cover-placeholder{
    width:100%;
    height:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:14px;
    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(254,190,0,.12),
            transparent 38%
        ),
        #121212;
    color:var(--n10-yellow);
}

.notes10-cover-placeholder svg{
    width:55px;
    height:55px;
}

.notes10-cover-placeholder span{
    color:#fff;
    font-size:18px;
    font-weight:800;
}

.notes10-category-badge{
    position:absolute;
    top:18px;
    left:18px;
    display:inline-flex;
    padding:8px 13px;
    border-radius:999px;
    background:rgba(0,0,0,.78);
    border:1px solid rgba(255,255,255,.13);
    color:#fff;
    font-size:11px;
    font-weight:800;
    letter-spacing:.5px;
}

.notes10-material-body{
    padding:27px;
}

.notes10-material-subject{
    display:inline-flex;
    margin-bottom:12px;
    color:var(--n10-yellow);
    font-size:12px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:1.4px;
}

.notes10-material-body h3{
    margin:0;
    color:#fff;
    font-size:22px;
    line-height:1.35;
    font-weight:850;
}

.notes10-chapter-name{
    display:flex;
    align-items:center;
    gap:8px;
    margin-top:13px;
    color:rgba(255,255,255,.65);
    font-size:13px;
}

.notes10-chapter-name svg{
    width:15px;
    height:15px;
    color:var(--n10-yellow);
    flex:0 0 auto;
}

.notes10-material-body p{
    min-height:66px;
    margin:18px 0 23px;
    color:var(--n10-muted);
    font-size:14px;
    line-height:1.65;
}

.notes10-download-btn{
    appearance:none;
    width:100%;
    min-height:52px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:12px 18px;
    background:var(--n10-yellow);
    color:#000;
    border:0;
    border-radius:14px;
    font-family:inherit;
    font-size:14px;
    font-weight:850;
    cursor:pointer;
    transition:
        transform .25s ease,
        opacity .25s ease;
}

.notes10-download-btn:hover:not(:disabled){
    transform:translateY(-2px);
}

.notes10-download-btn svg{
    width:18px;
    height:18px;
}

.notes10-download-btn.disabled,
.notes10-download-btn:disabled{
    background:#202020;
    color:rgba(255,255,255,.35);
    cursor:not-allowed;
}


/* =========================================================
   EMPTY STATE
   ========================================================= */

.notes10-empty-state,
.notes10-filter-empty{
    max-width:720px;
    margin:0 auto;
    padding:70px 30px;
    text-align:center;
    background:#101010;
    border:1px solid var(--n10-border);
    border-radius:28px;
}

.notes10-empty-icon,
.notes10-filter-empty > svg{
    width:64px;
    height:64px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
    color:var(--n10-yellow);
}

.notes10-empty-icon svg{
    width:40px;
    height:40px;
}

.notes10-filter-empty > svg{
    width:42px;
    height:42px;
}

.notes10-empty-state h3,
.notes10-filter-empty h3{
    margin:0 0 12px;
    font-size:25px;
}

.notes10-empty-state p,
.notes10-filter-empty p{
    max-width:540px;
    margin:0 auto;
    color:var(--n10-muted);
    line-height:1.7;
}


/* =========================================================
   FEATURE CARDS
   ========================================================= */

.notes10-feature-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:25px;
}

.notes10-feature-card{
    min-height:245px;
    padding:35px;
    background:#101010;
    border:1px solid var(--n10-border);
    border-radius:27px;
    transition:
        transform .3s ease,
        border-color .3s ease;
}

.notes10-feature-card:hover{
    transform:translateY(-6px);
    border-color:rgba(254,190,0,.42);
}

.notes10-feature-icon{
    width:52px;
    height:52px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:27px;
    border-radius:15px;
    background:rgba(254,190,0,.09);
    color:var(--n10-yellow);
}

.notes10-feature-icon svg{
    width:24px;
    height:24px;
}

.notes10-feature-card h3{
    margin:0 0 13px;
    font-size:21px;
}

.notes10-feature-card p{
    margin:0;
    color:var(--n10-muted);
    font-size:14px;
    line-height:1.75;
}


/* =========================================================
   FAQ
   ========================================================= */

.notes10-faq-wrapper{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.notes10-faq-item{
    overflow:hidden;
    background:#101010;
    border:1px solid var(--n10-border);
    border-radius:20px;
}

.notes10-faq-question{
    appearance:none;
    width:100%;
    min-height:78px;
    padding:22px 25px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    text-align:left;
    color:#fff;
    background:transparent;
    border:0;
    font-family:inherit;
    font-size:16px;
    font-weight:800;
    cursor:pointer;
}

.notes10-faq-question svg{
    width:20px;
    height:20px;
    flex:0 0 auto;
    color:var(--n10-yellow);
    transition:transform .3s ease;
}

.notes10-faq-item.active .notes10-faq-question svg{
    transform:rotate(45deg);
}

.notes10-faq-answer{
    display:none;
    padding:0 25px 24px;
}

.notes10-faq-item.active .notes10-faq-answer{
    display:block;
}

.notes10-faq-answer p{
    margin:0;
    color:var(--n10-muted);
    line-height:1.75;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.notes10-final-cta{
    position:relative;
    overflow:hidden;
    padding:140px 0;
    text-align:center;
    background:
        radial-gradient(
            circle at 50% 100%,
            rgba(122,12,15,.23),
            transparent 40%
        ),
        radial-gradient(
            circle at 50% 0%,
            rgba(254,190,0,.09),
            transparent 35%
        ),
        #070707;
}

.notes10-final-cta p{
    max-width:650px;
    margin:22px auto 32px;
    color:var(--n10-muted);
    font-size:16px;
    line-height:1.75;
}


/* =========================================================
   REVEAL
   ========================================================= */

.notes10-reveal{
    opacity:0;
    transform:translateY(35px);
    transition:
        opacity .7s ease,
        transform .7s ease;
}

.notes10-reveal.active{
    opacity:1;
    transform:translateY(0);
}


/* =========================================================
   CURSOR LIGHT

   IMPORTANT:
   z-index intentionally low.
   Modal/form stays above this.
   pointer-events:none prevents input/cursor problems.
   ========================================================= */

.notes10-cursor-light{
    position:fixed;
    left:0;
    top:0;
    width:300px;
    height:300px;
    border-radius:50%;
    background:rgba(254,190,0,.055);
    filter:blur(85px);
    pointer-events:none !important;
    z-index:2;
    transform:translate(-50%,-50%);
    opacity:0;
    transition:opacity .2s ease;
    will-change:left,top;
}

.notes10-cursor-light.visible{
    opacity:1;
}


/* =========================================================
   DOWNLOAD MODAL
   ========================================================= */

.notes10-modal{
    --n10-yellow:#febe00;

    position:fixed;
    inset:0;
    z-index:999999;
    display:none;
    align-items:center;
    justify-content:center;
    padding:25px;
    color:#fff;
}

.notes10-modal.active{
    display:flex;
}

.notes10-modal-backdrop{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.84);
    backdrop-filter:blur(7px);
    -webkit-backdrop-filter:blur(7px);
}

.notes10-modal-dialog{
    position:relative;
    z-index:2;
    width:min(1050px,96vw);
    max-height:calc(100vh - 50px);
    display:grid;
    grid-template-columns:.82fr 1.25fr;
    overflow:auto;
    background:#0c0c0c;
    border:1px solid rgba(255,255,255,.14);
    border-radius:30px;
    box-shadow:0 30px 100px rgba(0,0,0,.55);

    /*
    Native cursor is explicitly restored.
    */
    cursor:auto !important;
}

.notes10-modal-dialog,
.notes10-modal-dialog *{
    cursor:auto;
}

.notes10-modal-dialog button,
.notes10-modal-dialog select,
.notes10-modal-dialog label,
.notes10-modal-dialog input[type="checkbox"]{
    cursor:pointer;
}

.notes10-modal-dialog input[type="text"],
.notes10-modal-dialog input[type="email"],
.notes10-modal-dialog input[type="tel"]{
    cursor:text !important;
}


/* LEFT */

.notes10-modal-info{
    position:relative;
    padding:55px 45px;
    overflow:hidden;
    background:
        radial-gradient(
            circle at 0 0,
            rgba(254,190,0,.11),
            transparent 35%
        ),
        #0b0b0b;
    border-right:1px solid rgba(255,255,255,.08);
}

.notes10-modal-eyebrow{
    display:block;
    margin-bottom:20px;
    color:var(--n10-yellow);
    font-size:11px;
    font-weight:900;
    letter-spacing:2.5px;
}

.notes10-modal-info h2{
    margin:0;
    font-size:43px;
    line-height:1.05;
    letter-spacing:-1.5px;
}

.notes10-modal-info h2 span{
    display:block;
    color:var(--n10-yellow);
}

.notes10-modal-info > p{
    margin:22px 0 0;
    color:rgba(255,255,255,.68);
    font-size:15px;
    line-height:1.7;
}

.notes10-selected-note{
    margin-top:32px;
    padding:21px;
    border-radius:18px;
    background:rgba(254,190,0,.055);
    border:1px solid rgba(254,190,0,.27);
}

.notes10-selected-note small{
    display:block;
    margin-bottom:9px;
    color:rgba(255,255,255,.48);
    font-size:9px;
    font-weight:900;
    letter-spacing:2px;
}

.notes10-selected-note strong{
    display:block;
    color:#fff;
    font-size:16px;
    line-height:1.4;
}

.notes10-selected-note span{
    display:block;
    margin-top:7px;
    color:var(--n10-yellow);
    font-size:13px;
}

.notes10-modal-benefits{
    display:flex;
    flex-direction:column;
    gap:15px;
    margin:30px 0 0;
    padding:0;
    list-style:none;
}

.notes10-modal-benefits li{
    display:flex;
    align-items:center;
    gap:11px;
    color:rgba(255,255,255,.72);
    font-size:13px;
}

.notes10-modal-benefits svg{
    width:16px;
    height:16px;
    color:var(--n10-yellow);
}


/* RIGHT */

.notes10-modal-form-area{
    position:relative;
    padding:55px 45px 38px;
    background:#0d0d0d;
}

.notes10-modal-close{
    position:absolute;
    top:18px;
    right:18px;
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0;
    color:#fff;
    background:#171717;
    border:1px solid rgba(255,255,255,.13);
    border-radius:50%;
    z-index:10;
}

.notes10-modal-close:hover{
    border-color:rgba(254,190,0,.55);
}

.notes10-modal-close svg{
    width:20px;
    height:20px;
}

.notes10-form-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px 16px;
}

.notes10-form-group{
    min-width:0;
}

.notes10-form-group.notes10-full{
    grid-column:1 / -1;
}

.notes10-form-group label{
    display:block;
    margin-bottom:8px;
    color:rgba(255,255,255,.82);
    font-size:11px;
    font-weight:800;
}

.notes10-form-group input,
.notes10-form-group select{
    width:100%;
    height:50px;
    padding:0 15px;
    color:#fff;
    background:#151515;
    border:1px solid rgba(255,255,255,.12);
    border-radius:12px;
    outline:none;
    font-family:inherit;
    font-size:14px;
    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.notes10-form-group input::placeholder{
    color:rgba(255,255,255,.30);
}

.notes10-form-group input:focus,
.notes10-form-group select:focus{
    border-color:var(--n10-yellow);
    box-shadow:0 0 0 3px rgba(254,190,0,.08);
    background:#171717;
}

.notes10-form-group input[readonly]{
    color:rgba(255,255,255,.70);
    cursor:default !important;
}

.notes10-form-group select{
    appearance:none;
    -webkit-appearance:none;
    background-image:
        linear-gradient(45deg,transparent 50%,#999 50%),
        linear-gradient(135deg,#999 50%,transparent 50%);
    background-position:
        calc(100% - 18px) 21px,
        calc(100% - 13px) 21px;
    background-size:5px 5px,5px 5px;
    background-repeat:no-repeat;
    padding-right:40px;
}

.notes10-form-group select option{
    color:#fff;
    background:#151515;
}

.notes10-phone-field{
    height:50px;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:#151515;
    border:1px solid rgba(255,255,255,.12);
    border-radius:12px;
    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.notes10-phone-field:focus-within{
    border-color:var(--n10-yellow);
    box-shadow:0 0 0 3px rgba(254,190,0,.08);
}

.notes10-phone-field > span{
    height:100%;
    min-width:57px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--n10-yellow);
    border-right:1px solid rgba(255,255,255,.10);
    font-size:12px;
    font-weight:900;
}

.notes10-phone-field input{
    height:100%;
    border:0 !important;
    border-radius:0;
    box-shadow:none !important;
    background:transparent !important;
}

.notes10-consent{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-top:18px;
    color:rgba(255,255,255,.55);
    font-size:10px;
    line-height:1.55;
}

.notes10-consent input{
    width:16px;
    height:16px;
    flex:0 0 auto;
    margin:1px 0 0;
    accent-color:var(--n10-yellow);
}

.notes10-form-message{
    display:none;
    margin-top:15px;
    padding:12px 14px;
    border-radius:10px;
    font-size:12px;
    line-height:1.5;
}

.notes10-form-message.error{
    display:block;
    color:#ffaaaa;
    background:rgba(190,40,40,.13);
    border:1px solid rgba(255,80,80,.30);
}

.notes10-form-message.success{
    display:block;
    color:#baf3c7;
    background:rgba(40,180,80,.11);
    border:1px solid rgba(80,220,120,.25);
}

.notes10-submit-btn{
    appearance:none;
    width:100%;
    min-height:54px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin-top:17px;
    padding:13px 18px;
    color:#000;
    background:var(--n10-yellow);
    border:0;
    border-radius:13px;
    font-family:inherit;
    font-size:13px;
    font-weight:900;
}

.notes10-submit-btn:hover{
    transform:translateY(-1px);
}

.notes10-submit-btn:disabled{
    opacity:.60;
    cursor:not-allowed;
}

.notes10-submit-btn svg{
    width:17px;
    height:17px;
}

.notes10-security{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    margin-top:15px;
    color:rgba(255,255,255,.32);
    text-align:center;
    font-size:9px;
}

.notes10-security svg{
    width:13px;
    height:13px;
    color:rgba(254,190,0,.65);
}


/* =========================================================
   MODAL BODY LOCK
   ========================================================= */

body.notes10-modal-open{
    overflow:hidden !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media(max-width:1050px){

    .notes10-subject-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .notes10-material-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .notes10-modal-dialog{
        grid-template-columns:.75fr 1.25fr;
    }

    .notes10-modal-info{
        padding:50px 32px;
    }

    .notes10-modal-form-area{
        padding:55px 32px 35px;
    }

}


/* =========================================================
   SMALL TABLET
   ========================================================= */

@media(max-width:850px){

    .notes10-section{
        padding:95px 0;
    }

    .notes10-stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .notes10-feature-grid{
        grid-template-columns:1fr;
    }

    .notes10-modal{
        padding:15px;
    }

    .notes10-modal-dialog{
        display:block;
        width:min(650px,96vw);
        max-height:calc(100vh - 30px);
    }

    .notes10-modal-info{
        padding:38px 30px;
        border-right:0;
        border-bottom:1px solid rgba(255,255,255,.08);
    }

    .notes10-modal-info h2{
        font-size:36px;
    }

    .notes10-modal-benefits{
        display:grid;
        grid-template-columns:repeat(3,1fr);
        gap:10px;
    }

    .notes10-modal-benefits li{
        align-items:flex-start;
        font-size:11px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:650px){

    .notes10-container,
    .notes10-container-small{
        width:calc(100% - 32px);
    }

    .notes10-hero{
        min-height:760px;
    }

    .notes10-hero-content{
        padding-top:120px;
        padding-bottom:100px;
    }

    .notes10-hero-title{
        font-size:62px;
        letter-spacing:-3px;
    }

    .notes10-hero-subtitle{
        margin-top:24px;
        font-size:16px;
        line-height:1.7;
    }

    .notes10-hero-buttons{
        align-items:stretch;
        flex-direction:column;
    }

    .notes10-primary-btn,
    .notes10-secondary-btn{
        width:100%;
    }

    .notes10-stats-section{
        margin-top:-45px;
    }

    .notes10-stats-grid{
        gap:12px;
    }

    .notes10-stat-card{
        min-height:130px;
        padding:22px 12px;
        border-radius:20px;
    }

    .notes10-stat-card h3{
        font-size:34px;
    }

    .notes10-stat-card p{
        font-size:12px;
    }

    .notes10-section{
        padding:80px 0;
    }

    .notes10-section-heading{
        margin-bottom:45px;
    }

    .notes10-section-heading h2,
    .notes10-final-cta h2{
        font-size:38px;
        letter-spacing:-1.4px;
    }

    .notes10-section-heading p{
        font-size:14px;
    }

    .notes10-subject-grid,
    .notes10-material-grid{
        grid-template-columns:1fr;
    }

    .notes10-subject-card{
        min-height:auto;
    }

    .notes10-material-cover{
        height:390px;
    }

    .notes10-material-body p{
        min-height:0;
    }

    .notes10-final-cta{
        padding:90px 0;
    }


    /* MODAL MOBILE */

    .notes10-modal{
        padding:8px;
        align-items:center;
    }

    .notes10-modal-dialog{
        width:100%;
        max-height:calc(100dvh - 16px);
        border-radius:22px;
    }

    .notes10-modal-info{
        padding:32px 22px 27px;
    }

    .notes10-modal-info h2{
        padding-right:42px;
        font-size:32px;
    }

    .notes10-modal-info > p{
        margin-top:16px;
        font-size:13px;
    }

    .notes10-selected-note{
        margin-top:22px;
    }

    .notes10-modal-benefits{
        display:none;
    }

    .notes10-modal-form-area{
        padding:30px 20px 25px;
    }

    .notes10-modal-close{
        position:fixed;
        top:20px;
        right:20px;
    }

    .notes10-form-grid{
        grid-template-columns:1fr;
        gap:15px;
    }

    .notes10-form-group.notes10-full{
        grid-column:auto;
    }

}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media(max-width:420px){

    .notes10-hero-title{
        font-size:52px;
    }

    .notes10-material-cover{
        height:340px;
    }

    .notes10-stats-grid{
        grid-template-columns:1fr 1fr;
    }

    .notes10-modal-info{
        padding:27px 18px 23px;
    }

    .notes10-modal-form-area{
        padding:26px 16px 22px;
    }

}


/* =========================================================
   TOUCH DEVICES

   Cursor light unnecessary on phone/tablet.
   ========================================================= */

@media(hover:none),
       (pointer:coarse){

    .notes10-cursor-light{
        display:none !important;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media(prefers-reduced-motion:reduce){

    .notes10-reveal{
        opacity:1;
        transform:none;
        transition:none;
    }

    .notes10-material-card,
    .notes10-subject-card,
    .notes10-feature-card,
    .notes10-primary-btn,
    .notes10-secondary-btn{
        transition:none;
    }

}