/* ============================================================
   AARSH INSTITUTE
   CLASS 6 NOTES PAGE
   Premium Dark Academic Design
============================================================ */


/* ============================================================
   ROOT PAGE
============================================================ */

.notes6-page{
    --notes-yellow:#FDBE00;
    --notes-red:#7A0C0F;
    --notes-black:#050505;
    --notes-card:#0d0d0d;
    --notes-card-2:#111111;
    --notes-border:rgba(255,255,255,.08);
    --notes-muted:rgba(255,255,255,.58);

    position:relative;
    background:var(--notes-black);
    color:#fff;
    overflow:hidden;
    min-height:100vh;
}

.notes6-page *,
.notes6-page *::before,
.notes6-page *::after{
    box-sizing:border-box;
}

.notes6-container{
    width:min(1280px,92%);
    margin:0 auto;
    position:relative;
    z-index:5;
}

.notes6-small-container{
    width:min(900px,92%);
    margin:0 auto;
    position:relative;
    z-index:5;
}


/* ============================================================
   CURSOR LIGHT
============================================================ */

.notes6-cursor-light{
    position:fixed;
    width:320px;
    height:320px;
    border-radius:50%;
    pointer-events:none;
    background:rgba(253,190,0,.06);
    filter:blur(90px);
    transform:translate(-50%,-50%);
    z-index:1;
}


/* ============================================================
   HERO
============================================================ */

.notes6-hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.notes6-hero-bg{
    position:absolute;
    inset:0;
}

.notes6-hero-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:.18;
    filter:saturate(.7);
}

.notes6-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,.58) 100%
        ),
        linear-gradient(
            to bottom,
            rgba(0,0,0,.20),
            #050505 98%
        );
}

.notes6-grid-pattern{
    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:65px 65px;
}

.notes6-orb{
    position:absolute;
    border-radius:50%;
    filter:blur(140px);
    pointer-events:none;
}

.notes6-orb-one{
    width:600px;
    height:600px;
    left:-300px;
    top:-200px;
    background:rgba(253,190,0,.16);
}

.notes6-orb-two{
    width:600px;
    height:600px;
    right:-300px;
    bottom:-220px;
    background:rgba(122,12,15,.22);
}

.notes6-hero-content{
    position:relative;
    max-width:900px;
    padding:170px 0 120px;
}

.notes6-eyebrow{
    display:flex;
    align-items:center;
    gap:14px;
    color:var(--notes-yellow);
    font-size:12px;
    font-weight:800;
    letter-spacing:.30em;
    margin-bottom:28px;
}

.notes6-eyebrow-line{
    width:42px;
    height:1px;
    background:var(--notes-yellow);
}

.notes6-hero-title{
    margin:0;
    font-size:clamp(75px,10vw,145px);
    line-height:.83;
    font-weight:900;
    letter-spacing:-.035em;
}

.notes6-hero-title span{
    display:block;
    color:var(--notes-yellow);
}

.notes6-hero-description{
    max-width:720px;
    margin-top:30px;
    color:rgba(255,255,255,.67);
    font-size:20px;
    line-height:1.75;
}

.notes6-free-strip{
    width:max-content;
    max-width:100%;
    display:flex;
    align-items:center;
    gap:15px;
    margin-top:30px;
    padding:13px 18px;
    border:1px solid rgba(253,190,0,.17);
    background:rgba(253,190,0,.055);
    border-radius:16px;
}

.notes6-free-icon{
    width:43px;
    height:43px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    background:var(--notes-yellow);
    color:#000;
}

.notes6-free-icon svg{
    width:20px;
    height:20px;
}

.notes6-free-strip strong{
    display:block;
    font-size:13px;
    color:#fff;
}

.notes6-free-strip span{
    display:block;
    margin-top:3px;
    color:rgba(255,255,255,.45);
    font-size:11px;
}

.notes6-hero-actions{
    display:flex;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
    margin-top:38px;
}


/* ============================================================
   BUTTONS
============================================================ */

.notes6-btn{
    min-height:56px;
    padding:0 28px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    text-decoration:none;
    text-transform:uppercase;
    letter-spacing:.10em;
    font-size:11px;
    font-weight:900;
    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease,
        border-color .3s ease;
}

.notes6-btn svg{
    width:17px;
    height:17px;
}

.notes6-btn-primary{
    color:#050505;
    background:var(--notes-yellow);
    box-shadow:0 15px 40px rgba(253,190,0,.13);
}

.notes6-btn-primary:hover{
    color:#050505;
    background:#fff;
    transform:translateY(-3px);
}

.notes6-btn-secondary{
    color:#fff;
    background:rgba(255,255,255,.035);
    border:1px solid rgba(255,255,255,.13);
}

.notes6-btn-secondary:hover{
    border-color:var(--notes-yellow);
    color:var(--notes-yellow);
    transform:translateY(-3px);
}


/* ============================================================
   HERO SCROLL
============================================================ */

.notes6-scroll-indicator{
    position:absolute;
    right:45px;
    bottom:45px;
    z-index:5;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:rgba(255,255,255,.35);
}

.notes6-scroll-indicator span{
    writing-mode:vertical-rl;
    font-size:9px;
    letter-spacing:.28em;
}

.notes6-scroll-indicator svg{
    width:17px;
    animation:notesScroll 1.7s infinite;
}

@keyframes notesScroll{
    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(7px);
    }
}


/* ============================================================
   STATS
============================================================ */

.notes6-stats{
    position:relative;
    z-index:10;
    margin-top:-45px;
}

.notes6-stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    border:1px solid var(--notes-border);
    border-radius:25px;
    overflow:hidden;
    background:rgba(12,12,12,.96);
    box-shadow:0 30px 80px rgba(0,0,0,.35);
}

.notes6-stat{
    position:relative;
    padding:32px 25px;
    text-align:center;
}

.notes6-stat:not(:last-child){
    border-right:1px solid var(--notes-border);
}

.notes6-stat-icon{
    width:40px;
    height:40px;
    margin:0 auto 13px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    color:var(--notes-yellow);
    background:rgba(253,190,0,.07);
}

.notes6-stat-icon svg{
    width:19px;
}

.notes6-stat strong{
    display:block;
    color:var(--notes-yellow);
    font-size:34px;
    line-height:1;
}

.notes6-stat p{
    margin:8px 0 0;
    color:rgba(255,255,255,.40);
    font-size:10px;
    text-transform:uppercase;
    letter-spacing:.15em;
}


/* ============================================================
   SECTIONS
============================================================ */

.notes6-section{
    position:relative;
    padding:145px 0 80px;
}

.notes6-section-heading{
    max-width:800px;
    margin:0 auto 65px;
    text-align:center;
}

.notes6-mini-heading{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:13px;
    margin-bottom:18px;
    color:var(--notes-yellow);
    font-size:10px;
    font-weight:900;
    letter-spacing:.25em;
}

.notes6-mini-heading span{
    width:30px;
    height:1px;
    background:var(--notes-yellow);
}

.notes6-section-heading h2{
    margin:0;
    font-size:clamp(42px,6vw,70px);
    line-height:1.05;
    letter-spacing:-.03em;
}

.notes6-section-heading h2 em{
    display:block;
    color:var(--notes-yellow);
    font-style:normal;
}

.notes6-section-heading p{
    max-width:650px;
    margin:20px auto 0;
    color:var(--notes-muted);
    line-height:1.8;
}


/* ============================================================
   SUBJECT TABS
============================================================ */

.notes6-subject-tabs{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:13px;
}

.notes6-subject-btn{
    border:1px solid var(--notes-border);
    outline:none;
    min-height:94px;
    padding:15px;
    border-radius:18px;
    background:#0d0d0d;
    color:#fff;
    cursor:pointer;
    display:flex;
    align-items:center;
    gap:12px;
    text-align:left;
    transition:.3s ease;
}

.notes6-subject-icon{
    flex:0 0 auto;
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    background:rgba(255,255,255,.04);
    color:rgba(255,255,255,.55);
}

.notes6-subject-icon svg{
    width:19px;
    height:19px;
}

.notes6-subject-btn strong{
    display:block;
    font-size:11px;
}

.notes6-subject-btn small{
    display:block;
    margin-top:4px;
    color:rgba(255,255,255,.32);
    font-size:9px;
}

.notes6-subject-btn:hover{
    transform:translateY(-4px);
    border-color:rgba(253,190,0,.30);
}

.notes6-subject-btn.active{
    background:var(--notes-yellow);
    border-color:var(--notes-yellow);
    color:#050505;
}

.notes6-subject-btn.active .notes6-subject-icon{
    background:rgba(0,0,0,.10);
    color:#050505;
}

.notes6-subject-btn.active small{
    color:rgba(0,0,0,.55);
}


/* ============================================================
   NOTES LIBRARY
============================================================ */

.notes6-library{
    position:relative;
    padding:100px 0 145px;
    background:#090909;
}

.notes6-library::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:1px;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(253,190,0,.25),
        transparent
    );
}

.notes6-library-top{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:30px;
    margin-bottom:45px;
}

.notes6-library-label{
    display:block;
    margin-bottom:10px;
    color:var(--notes-yellow);
    font-size:10px;
    font-weight:800;
    letter-spacing:.22em;
}

.notes6-library-top h2{
    margin:0;
    font-size:50px;
    line-height:1;
}

.notes6-library-top h2 em{
    color:var(--notes-yellow);
    font-style:normal;
}

.notes6-resource-count{
    min-width:115px;
    padding:15px 18px;
    text-align:center;
    border-radius:15px;
    border:1px solid var(--notes-border);
    background:#101010;
}

.notes6-resource-count strong{
    display:block;
    color:var(--notes-yellow);
    font-size:26px;
}

.notes6-resource-count span{
    display:block;
    margin-top:3px;
    color:rgba(255,255,255,.35);
    font-size:9px;
    text-transform:uppercase;
    letter-spacing:.12em;
}


/* ============================================================
   NOTE CARDS
============================================================ */

.notes6-notes-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.notes6-note-card{
    position:relative;
    min-width:0;
    padding:25px;
    border-radius:22px;
    border:1px solid var(--notes-border);
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.025),
            transparent 55%
        ),
        #0d0d0d;
    overflow:hidden;
    transition:.35s ease;
}

.notes6-note-card::before{
    content:"";
    position:absolute;
    width:150px;
    height:150px;
    right:-90px;
    top:-90px;
    border-radius:50%;
    background:rgba(253,190,0,.09);
    filter:blur(45px);
    opacity:0;
    transition:.35s ease;
}

.notes6-note-card:hover{
    transform:translateY(-7px);
    border-color:rgba(253,190,0,.32);
    box-shadow:0 25px 60px rgba(0,0,0,.25);
}

.notes6-note-card:hover::before{
    opacity:1;
}

.notes6-note-top{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    margin-bottom:28px;
}

.notes6-note-subject{
    color:rgba(255,255,255,.48);
    font-size:9px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.12em;
}

.notes6-free-tag{
    padding:6px 9px;
    border-radius:999px;
    background:rgba(34,197,94,.08);
    border:1px solid rgba(34,197,94,.18);
    color:#86efac;
    font-size:8px;
    font-weight:900;
    letter-spacing:.12em;
}

.notes6-pdf-icon{
    width:52px;
    height:52px;
    margin-bottom:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:15px;
    background:rgba(253,190,0,.07);
    color:var(--notes-yellow);
    border:1px solid rgba(253,190,0,.10);
}

.notes6-pdf-icon svg{
    width:24px;
    height:24px;
}

.notes6-chapter-label{
    display:block;
    margin-bottom:8px;
    color:var(--notes-yellow);
    font-size:9px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.16em;
}

.notes6-note-card h3{
    margin:0;
    min-height:56px;
    font-size:21px;
    line-height:1.3;
}

.notes6-note-card > p{
    min-height:70px;
    margin:14px 0 20px;
    color:rgba(255,255,255,.43);
    font-size:12px;
    line-height:1.75;
}

.notes6-note-meta{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:13px;
    padding:15px 0;
    border-top:1px solid rgba(255,255,255,.06);
}

.notes6-note-meta span{
    display:flex;
    align-items:center;
    gap:6px;
    color:rgba(255,255,255,.34);
    font-size:9px;
}

.notes6-note-meta svg{
    width:13px;
    height:13px;
    color:var(--notes-yellow);
}

.notes6-download-btn{
    position:relative;
    z-index:2;
    width:100%;
    min-height:49px;
    margin-top:5px;
    padding:0 16px;
    border:1px solid rgba(253,190,0,.18);
    border-radius:12px;
    background:rgba(253,190,0,.06);
    color:var(--notes-yellow);
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    font-size:10px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.08em;
    transition:.3s ease;
}

.notes6-download-btn span{
    display:flex;
    align-items:center;
    gap:8px;
}

.notes6-download-btn svg{
    width:15px;
    height:15px;
}

.notes6-download-btn:hover{
    background:var(--notes-yellow);
    color:#050505;
    border-color:var(--notes-yellow);
}


/* ============================================================
   EMPTY STATE
============================================================ */

.notes6-empty{
    display:none;
    padding:70px 20px;
    text-align:center;
}

.notes6-empty svg{
    width:45px;
    height:45px;
    color:var(--notes-yellow);
    margin-bottom:15px;
}

.notes6-empty h3{
    margin:0 0 8px;
    font-size:24px;
}

.notes6-empty p{
    color:rgba(255,255,255,.4);
}


/* ============================================================
   BENEFITS
============================================================ */

.notes6-benefits{
    position:relative;
    padding:145px 0;
}

.notes6-benefit-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.notes6-benefit-card{
    position:relative;
    padding:32px 25px;
    min-height:290px;
    border:1px solid var(--notes-border);
    border-radius:22px;
    background:#0d0d0d;
    overflow:hidden;
    transition:.35s ease;
}

.notes6-benefit-card:hover{
    transform:translateY(-7px);
    border-color:rgba(253,190,0,.28);
}

.notes6-benefit-number{
    position:absolute;
    right:20px;
    top:15px;
    color:rgba(255,255,255,.035);
    font-size:60px;
    font-weight:900;
}

.notes6-benefit-icon{
    position:relative;
    width:50px;
    height:50px;
    margin-bottom:35px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:15px;
    background:rgba(253,190,0,.07);
    color:var(--notes-yellow);
}

.notes6-benefit-icon svg{
    width:22px;
}

.notes6-benefit-card h3{
    position:relative;
    margin:0 0 13px;
    font-size:18px;
}

.notes6-benefit-card p{
    position:relative;
    margin:0;
    color:rgba(255,255,255,.43);
    font-size:12px;
    line-height:1.8;
}


/* ============================================================
   FAQ
============================================================ */

.notes6-faq{
    padding:140px 0;
    background:#090909;
}

.notes6-faq-list{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.notes6-faq-item{
    border:1px solid var(--notes-border);
    border-radius:17px;
    background:#0e0e0e;
    overflow:hidden;
}

.notes6-faq-question{
    width:100%;
    min-height:70px;
    padding:0 22px;
    border:0;
    outline:0;
    background:transparent;
    color:#fff;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    text-align:left;
    font-size:14px;
    font-weight:700;
}

.notes6-faq-question svg{
    flex:0 0 auto;
    width:18px;
    height:18px;
    color:var(--notes-yellow);
    transition:.3s ease;
}

.notes6-faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
}

.notes6-faq-answer p{
    margin:0;
    padding:0 22px 22px;
    color:rgba(255,255,255,.46);
    font-size:13px;
    line-height:1.8;
}

.notes6-faq-item.active .notes6-faq-question{
    color:var(--notes-yellow);
}

.notes6-faq-item.active .notes6-faq-question svg{
    transform:rotate(45deg);
}


/* ============================================================
   FINAL CTA
============================================================ */

.notes6-final-cta{
    position:relative;
    padding:160px 0;
    text-align:center;
    overflow:hidden;
}

.notes6-cta-glow{
    position:absolute;
    width:650px;
    height:400px;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    background:rgba(253,190,0,.10);
    filter:blur(140px);
    pointer-events:none;
}

.notes6-cta-label{
    display:block;
    margin-bottom:17px;
    color:var(--notes-yellow);
    font-size:10px;
    font-weight:900;
    letter-spacing:.25em;
}

.notes6-final-cta h2{
    max-width:900px;
    margin:0 auto;
    font-size:clamp(45px,7vw,85px);
    line-height:1;
    letter-spacing:-.04em;
}

.notes6-final-cta h2 span{
    display:block;
    color:var(--notes-yellow);
}

.notes6-final-cta p{
    max-width:650px;
    margin:25px auto 35px;
    color:rgba(255,255,255,.5);
    line-height:1.8;
}


/* ============================================================
   DOWNLOAD MODAL
============================================================ */

.notes6-modal{
    position:fixed;
    inset:0;
    z-index:99999;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:25px;

    opacity:0;
    visibility:hidden;
    pointer-events:none;

    transition:
        opacity .3s ease,
        visibility .3s ease;
}

.notes6-modal.show{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

.notes6-modal-backdrop{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.84);
    backdrop-filter:blur(13px);
    -webkit-backdrop-filter:blur(13px);
}

.notes6-modal-dialog{
    position:relative;
    z-index:2;
    width:min(1000px,100%);
    max-height:92vh;
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    overflow:auto;
    border:1px solid rgba(255,255,255,.11);
    border-radius:28px;
    background:#0c0c0c;
    box-shadow:0 40px 120px rgba(0,0,0,.7);

    transform:translateY(25px) scale(.98);
    transition:transform .35s ease;
}

.notes6-modal.show .notes6-modal-dialog{
    transform:none;
}

.notes6-modal-close{
    position:absolute;
    right:17px;
    top:17px;
    z-index:10;
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.10);
    border-radius:50%;
    background:#161616;
    color:#fff;
    cursor:pointer;
    transition:.25s ease;
}

.notes6-modal-close:hover{
    background:var(--notes-yellow);
    color:#000;
}

.notes6-modal-close svg{
    width:18px;
}


/* ============================================================
   MODAL LEFT
============================================================ */

.notes6-modal-intro{
    position:relative;
    padding:50px 38px;
    overflow:hidden;
    background:
        radial-gradient(
            circle at top left,
            rgba(253,190,0,.12),
            transparent 40%
        ),
        #080808;
    border-right:1px solid var(--notes-border);
}

.notes6-modal-intro::after{
    content:"06";
    position:absolute;
    right:-15px;
    bottom:-40px;
    color:rgba(255,255,255,.025);
    font-size:200px;
    line-height:1;
    font-weight:900;
}

.notes6-modal-mini{
    position:relative;
    z-index:2;
    color:var(--notes-yellow);
    font-size:9px;
    font-weight:900;
    letter-spacing:.25em;
}

.notes6-modal-intro h2{
    position:relative;
    z-index:2;
    margin:12px 0 15px;
    font-size:45px;
    line-height:1;
}

.notes6-modal-intro h2 span{
    display:block;
    color:var(--notes-yellow);
}

.notes6-modal-intro > p{
    position:relative;
    z-index:2;
    color:rgba(255,255,255,.47);
    font-size:12px;
    line-height:1.8;
}

.notes6-selected-resource{
    position:relative;
    z-index:2;
    margin-top:30px;
    padding:18px;
    border:1px solid rgba(253,190,0,.16);
    border-radius:15px;
    background:rgba(253,190,0,.055);
}

.notes6-selected-resource span{
    display:block;
    color:rgba(255,255,255,.35);
    font-size:8px;
    font-weight:800;
    letter-spacing:.15em;
}

.notes6-selected-resource strong{
    display:block;
    margin-top:7px;
    color:#fff;
    font-size:15px;
    line-height:1.4;
}

.notes6-selected-resource small{
    display:block;
    margin-top:5px;
    color:var(--notes-yellow);
    font-size:10px;
}

.notes6-modal-points{
    position:relative;
    z-index:2;
    margin-top:28px;
    display:flex;
    flex-direction:column;
    gap:11px;
}

.notes6-modal-points > div{
    display:flex;
    align-items:center;
    gap:9px;
    color:rgba(255,255,255,.55);
    font-size:11px;
}

.notes6-modal-points svg{
    width:15px;
    height:15px;
    color:var(--notes-yellow);
}


/* ============================================================
   MODAL FORM
============================================================ */

.notes6-modal-form-wrap{
    padding:50px 38px 38px;
}

.notes6-form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.notes6-form-group{
    margin-bottom:15px;
}

.notes6-form-group label{
    display:block;
    margin-bottom:8px;
    color:rgba(255,255,255,.56);
    font-size:9px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.10em;
}

.notes6-form-group input,
.notes6-form-group select{
    width:100%;
    min-height:49px;
    padding:0 14px;
    border:1px solid rgba(255,255,255,.09);
    border-radius:11px;
    outline:none;
    background:#151515;
    color:#fff;
    font-size:12px;
    transition:.25s ease;
}

.notes6-form-group input::placeholder{
    color:rgba(255,255,255,.25);
}

.notes6-form-group input:focus,
.notes6-form-group select:focus{
    border-color:rgba(253,190,0,.65);
    box-shadow:0 0 0 3px rgba(253,190,0,.04);
}

.notes6-form-group select option{
    background:#151515;
    color:#fff;
}

.notes6-form-group select:disabled{
    opacity:.7;
}

.notes6-consent{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin:4px 0 17px;
    cursor:pointer;
}

.notes6-consent input{
    flex:0 0 auto;
    margin-top:3px;
    accent-color:var(--notes-yellow);
}

.notes6-consent span{
    color:rgba(255,255,255,.38);
    font-size:9px;
    line-height:1.65;
}

.notes6-form-submit{
    width:100%;
    min-height:54px;
    padding:0 18px;
    border:0;
    border-radius:12px;
    background:var(--notes-yellow);
    color:#050505;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    font-size:10px;
    font-weight:900;
    letter-spacing:.10em;
    text-transform:uppercase;
    transition:.3s ease;
}

.notes6-form-submit:hover{
    background:#fff;
    transform:translateY(-2px);
}

.notes6-form-submit:disabled{
    cursor:not-allowed;
    opacity:.55;
    transform:none;
}

.notes6-form-submit svg{
    width:16px;
    height:16px;
}

.notes6-form-privacy{
    margin:13px 0 0;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:7px;
    color:rgba(255,255,255,.27);
    font-size:8px;
    text-align:center;
}

.notes6-form-privacy svg{
    width:13px;
    color:var(--notes-yellow);
}


/* ============================================================
   FORM RESPONSE
============================================================ */

.notes6-form-response{
    display:none;
    margin-bottom:13px;
    padding:11px 13px;
    border-radius:9px;
    font-size:10px;
    line-height:1.6;
}

.notes6-form-response.error{
    display:block;
    color:#fecaca;
    background:rgba(239,68,68,.08);
    border:1px solid rgba(239,68,68,.20);
}

.notes6-form-response.success{
    display:block;
    color:#bbf7d0;
    background:rgba(34,197,94,.08);
    border:1px solid rgba(34,197,94,.20);
}


/* ============================================================
   REVEAL
============================================================ */

.notes6-reveal{
    opacity:0;
    transform:translateY(40px);
    transition:
        opacity .75s ease,
        transform .75s ease;
}

.notes6-reveal.active{
    opacity:1;
    transform:none;
}


/* ============================================================
   BODY MODAL LOCK
============================================================ */

body.notes-modal-open{
    overflow:hidden;
}


/* ============================================================
   TABLET
============================================================ */

@media(max-width:1100px){

    .notes6-subject-tabs{
        grid-template-columns:repeat(3,1fr);
    }

    .notes6-notes-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .notes6-benefit-grid{
        grid-template-columns:repeat(2,1fr);
    }

}


/* ============================================================
   MOBILE / TABLET
============================================================ */

@media(max-width:800px){

    .notes6-hero{
        min-height:auto;
    }

    .notes6-hero-content{
        padding:155px 0 120px;
    }

    .notes6-hero-description{
        font-size:16px;
    }

    .notes6-scroll-indicator{
        display:none;
    }

    .notes6-stats{
        margin-top:-30px;
    }

    .notes6-stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .notes6-stat:nth-child(2){
        border-right:0;
    }

    .notes6-stat:nth-child(1),
    .notes6-stat:nth-child(2){
        border-bottom:1px solid var(--notes-border);
    }

    .notes6-section{
        padding:110px 0 65px;
    }

    .notes6-subject-tabs{
        grid-template-columns:repeat(2,1fr);
    }

    .notes6-library{
        padding:80px 0 110px;
    }

    .notes6-library-top{
        align-items:flex-start;
    }

    .notes6-modal-dialog{
        grid-template-columns:1fr;
    }

    .notes6-modal-intro{
        border-right:0;
        border-bottom:1px solid var(--notes-border);
    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media(max-width:600px){

    .notes6-container,
    .notes6-small-container{
        width:calc(100% - 26px);
    }

    .notes6-cursor-light{
        display:none;
    }

    .notes6-hero-content{
        padding:135px 0 100px;
    }

    .notes6-eyebrow{
        font-size:9px;
    }

    .notes6-eyebrow-line{
        width:28px;
    }

    .notes6-hero-title{
        font-size:64px;
    }

    .notes6-hero-description{
        margin-top:22px;
        font-size:14px;
        line-height:1.7;
    }

    .notes6-free-strip{
        width:100%;
    }

    .notes6-hero-actions{
        flex-direction:column;
        align-items:stretch;
    }

    .notes6-btn{
        width:100%;
    }

    .notes6-stats-grid{
        border-radius:18px;
    }

    .notes6-stat{
        padding:24px 10px;
    }

    .notes6-stat strong{
        font-size:26px;
    }

    .notes6-stat p{
        font-size:8px;
    }

    .notes6-section-heading{
        margin-bottom:45px;
    }

    .notes6-section-heading h2{
        font-size:38px;
    }

    .notes6-section-heading p{
        font-size:12px;
    }

    .notes6-subject-tabs{
        grid-template-columns:1fr;
    }

    .notes6-subject-btn{
        min-height:75px;
    }

    .notes6-library-top{
        flex-direction:column;
    }

    .notes6-library-top h2{
        font-size:38px;
    }

    .notes6-resource-count{
        display:flex;
        align-items:center;
        gap:8px;
        width:max-content;
    }

    .notes6-resource-count strong{
        font-size:20px;
    }

    .notes6-resource-count span{
        margin:0;
    }

    .notes6-notes-grid{
        grid-template-columns:1fr;
    }

    .notes6-note-card h3,
    .notes6-note-card > p{
        min-height:auto;
    }

    .notes6-benefits{
        padding:110px 0;
    }

    .notes6-benefit-grid{
        grid-template-columns:1fr;
    }

    .notes6-benefit-card{
        min-height:auto;
    }

    .notes6-faq{
        padding:105px 0;
    }

    .notes6-final-cta{
        padding:115px 0;
    }

    .notes6-modal{
        padding:10px;
        align-items:flex-end;
    }

    .notes6-modal-dialog{
        width:100%;
        max-height:94vh;
        border-radius:23px 23px 15px 15px;
    }

    .notes6-modal-intro{
        padding:35px 22px 28px;
    }

    .notes6-modal-intro h2{
        font-size:35px;
    }

    .notes6-modal-points{
        display:none;
    }

    .notes6-modal-form-wrap{
        padding:28px 20px 25px;
    }

    .notes6-form-grid{
        grid-template-columns:1fr;
        gap:0;
    }

    .notes6-modal-close{
        width:36px;
        height:36px;
        right:13px;
        top:13px;
    }

}






/* =========================================
   FORM CURSOR FIX
========================================= */

.download-modal,
.download-modal * {
    cursor: auto;
}

.download-modal input,
.download-modal select,
.download-modal textarea {
    cursor: text !important;
}

.download-modal select {
    cursor: pointer !important;
}

.download-modal button,
.download-modal a,
.download-modal label,
.download-modal input[type="checkbox"] {
    cursor: pointer !important;
}

/* Custom light cursor must never block form */
.light-cursor {
    pointer-events: none !important;
}

/* Hide custom glow while using download form */
body.download-modal-open .light-cursor {
    opacity: 0 !important;
    visibility: hidden !important;
}




/* =========================================================
   FINAL CURSOR FIX
   Use normal browser cursor on complete Notes page
========================================================= */

.notes6-page,
.notes6-page * {
    cursor: auto !important;
}

.notes6-page a,
.notes6-page button,
.notes6-page select,
.notes6-page label,
.notes6-page input[type="checkbox"],
.notes6-page input[type="radio"],
.notes6-page [role="button"] {
    cursor: pointer !important;
}

.notes6-page input[type="text"],
.notes6-page input[type="email"],
.notes6-page input[type="tel"],
.notes6-page input[type="number"],
.notes6-page textarea {
    cursor: text !important;
}

/* Completely disable decorative cursor light */
.notes6-page .light-cursor,
#cursorLight {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}







/* ============================================================
   NOTE BOOK COVER
============================================================ */

.notes6-cover-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    margin: 22px 0 24px;
    overflow: hidden;
    border-radius: 14px;
    background: #0b0b0b;
    border: 1px solid rgba(255, 193, 7, 0.16);
}

.notes6-cover-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition:
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.55s ease;
}

.notes6-note-card:hover .notes6-cover-image {
    transform: scale(1.045);
}


/* FALLBACK WHEN COVER IMAGE IS NOT AVAILABLE */

.notes6-cover-fallback {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 190px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    padding: 24px;

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(255, 193, 7, 0.12),
            transparent 45%
        ),
        linear-gradient(
            145deg,
            #15130b,
            #080808 65%
        );
}

.notes6-cover-fallback::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(255, 193, 7, 0.15);
    border-radius: 9px;
    pointer-events: none;
}

.notes6-cover-fallback-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 17px;

    border-radius: 12px;

    color: #ffc400;
    background: rgba(255, 196, 0, 0.08);
    border: 1px solid rgba(255, 196, 0, 0.18);
}

.notes6-cover-fallback-icon svg {
    width: 23px;
    height: 23px;
}

.notes6-cover-fallback span {
    position: relative;

    margin-bottom: 7px;

    color: #ffc400;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.notes6-cover-fallback strong {
    position: relative;

    max-width: 90%;

    color: #ffffff;

    font-size: 21px;
    font-weight: 700;
    line-height: 1.25;
}

.notes6-cover-fallback small {
    position: relative;

    margin-top: 13px;

    color: rgba(255, 255, 255, 0.42);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.4px;
}


/* MOBILE */

@media (max-width: 768px) {

    .notes6-cover-wrap {
        aspect-ratio: 16 / 10;
        margin: 18px 0 20px;
    }

    .notes6-cover-fallback {
        min-height: 165px;
    }

    .notes6-cover-fallback strong {
        font-size: 18px;
    }
}