/* ============================================================
   AARSH INSTITUTE
   CLASS 7 NOTES
============================================================ */

.notes7-page{
    background:#050505;
    color:#fff;
    overflow:hidden;
}

.notes7-page *{
    box-sizing:border-box;
}

.notes7-page .container{
    width:min(1280px,92%);
    margin:auto;
    position:relative;
    z-index:5;
}

.notes7-page .container-small{
    width:min(900px,92%);
    margin:auto;
    position:relative;
    z-index:5;
}

.notes7-page .section-padding{
    padding:130px 0;
}

.notes7-page .dark-section{
    background:#0a0a0a;
}


/* ============================================================
   HERO
============================================================ */

.notes7-hero{
    min-height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.notes7-hero .hero-bg{
    position:absolute;
    inset:0;
}

.notes7-hero .hero-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:.20;
}

.notes7-hero .hero-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.92) 0%,
            rgba(0,0,0,.72) 50%,
            rgba(0,0,0,.52) 100%
        ),
        linear-gradient(
            to bottom,
            rgba(0,0,0,.25),
            #050505 100%
        );
}

.notes7-hero .hero-grid{
    position:absolute;
    inset:0;
    opacity:.55;

    background-image:
        linear-gradient(
            rgba(255,255,255,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        );

    background-size:60px 60px;
}

.notes7-hero .hero-blob{
    position:absolute;
    width:520px;
    height:520px;
    border-radius:50%;
    filter:blur(130px);
    pointer-events:none;
}

.notes7-hero .hero-blob-1{
    background:#febe00;
    opacity:.14;
    top:-190px;
    left:-180px;
}

.notes7-hero .hero-blob-2{
    background:#7a0c0f;
    opacity:.22;
    right:-170px;
    bottom:-190px;
}

.notes7-hero .hero-content{
    max-width:930px;
    padding-top:140px;
    padding-bottom:100px;
}

.notes7-hero .hero-badge{
    display:inline-flex;
    align-items:center;

    padding:11px 20px;

    border-radius:999px;

    border:1px solid rgba(254,190,0,.25);

    background:rgba(254,190,0,.06);

    color:#febe00;

    font-size:12px;
    font-weight:800;
    letter-spacing:2.5px;

    margin-bottom:28px;
}

.notes7-hero .hero-title{
    margin:0 0 24px;

    font-size:clamp(70px,9vw,125px);
    line-height:.9;

    font-weight:900;
    letter-spacing:-4px;
}

.notes7-hero .hero-title span{
    display:block;
    color:#febe00;
}

.notes7-hero .hero-subtitle{
    max-width:780px;

    margin:0;

    color:rgba(255,255,255,.68);

    font-size:20px;
    line-height:1.75;
}

.notes7-page .hero-buttons{
    display:flex;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;

    margin-top:38px;
}

.notes7-page .primary-btn,
.notes7-page .secondary-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-height:56px;

    padding:0 30px;

    border-radius:999px;

    text-decoration:none;

    font-size:13px;
    font-weight:800;
    letter-spacing:.5px;

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease,
        border-color .3s ease;
}

.notes7-page .primary-btn{
    background:#febe00;
    color:#050505;
    border:1px solid #febe00;
}

.notes7-page .primary-btn:hover{
    background:#fff;
    border-color:#fff;
    transform:translateY(-3px);
}

.notes7-page .secondary-btn{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.14);
    color:#fff;
}

.notes7-page .secondary-btn:hover{
    border-color:#febe00;
    color:#febe00;
    transform:translateY(-3px);
}


/* ============================================================
   STATS
============================================================ */

.notes7-page .stats-section{
    position:relative;
    z-index:10;

    margin-top:-55px;
}

.notes7-page .stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.notes7-page .stat-card{
    min-height:160px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    padding:30px 20px;

    text-align:center;

    border-radius:22px;

    background:
        linear-gradient(
            145deg,
            #121212,
            #090909
        );

    border:1px solid rgba(255,255,255,.08);

    box-shadow:
        0 20px 60px rgba(0,0,0,.28);
}

.notes7-page .stat-card h3{
    margin:0 0 8px;

    color:#febe00;

    font-size:48px;
    font-weight:900;
}

.notes7-page .stat-card p{
    margin:0;

    color:rgba(255,255,255,.58);

    font-size:13px;
    font-weight:600;
}


/* ============================================================
   SECTION HEADING
============================================================ */

.notes7-page .section-heading{
    max-width:850px;

    margin:0 auto 60px;

    text-align:center;
}

.notes7-page .mini-title{
    display:block;

    margin-bottom:14px;

    color:#febe00;

    font-size:12px;
    font-weight:800;
    letter-spacing:3px;
}

.notes7-page .section-heading h2{
    margin:0;

    font-size:clamp(38px,5vw,64px);
    line-height:1.08;

    font-weight:900;
    letter-spacing:-2px;
}

.notes7-page .section-heading h2 span{
    color:#febe00;
}

.notes7-page .section-description{
    max-width:680px;

    margin:20px auto 0;

    color:rgba(255,255,255,.58);

    font-size:16px;
    line-height:1.75;
}


/* ============================================================
   SUBJECT FILTER
============================================================ */

.notes7-filter-wrapper{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;

    gap:10px;

    max-width:1000px;
    margin:0 auto;
}

.notes7-filter-btn{
    appearance:none;

    padding:12px 20px;

    border-radius:999px;

    border:1px solid rgba(255,255,255,.1);

    background:#101010;

    color:rgba(255,255,255,.65);

    font-size:12px;
    font-weight:700;

    cursor:pointer;

    transition:.3s ease;
}

.notes7-filter-btn:hover{
    color:#febe00;
    border-color:rgba(254,190,0,.4);
}

.notes7-filter-btn.active{
    background:#febe00;
    border-color:#febe00;
    color:#050505;
}


/* ============================================================
   LIVE NOTES
============================================================ */

.notes7-live-section{
    position:relative;
}

.notes7-notes-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));

    gap:26px;
}

.notes7-note-card{
    min-width:0;

    overflow:hidden;

    border-radius:24px;

    background:
        linear-gradient(
            145deg,
            #121212,
            #090909
        );

    border:1px solid rgba(255,255,255,.08);

    transition:
        transform .4s cubic-bezier(.2,.8,.2,1),
        border-color .4s ease,
        box-shadow .4s ease;
}

.notes7-note-card:hover{
    transform:translateY(-8px);

    border-color:rgba(254,190,0,.38);

    box-shadow:
        0 28px 70px rgba(0,0,0,.38);
}


/* ============================================================
   COVER IMAGE
============================================================ */

.notes7-cover-wrap{
    position:relative;

    width:100%;
    aspect-ratio:16 / 10;

    overflow:hidden;

    background:#0b0b0b;

    border-bottom:
        1px solid rgba(255,255,255,.07);
}

.notes7-cover-image{
    display:block;

    width:100%;
    height:100%;

    object-fit:cover;
    object-position:center;

    transition:
        transform .55s cubic-bezier(.22,1,.36,1),
        filter .55s ease;
}

.notes7-note-card:hover .notes7-cover-image{
    transform:scale(1.05);
}


/* ============================================================
   FALLBACK COVER
============================================================ */

.notes7-cover-fallback{
    position:relative;

    width:100%;
    height:100%;
    min-height:220px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    padding:30px;

    text-align:center;

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(254,190,0,.15),
            transparent 48%
        ),
        linear-gradient(
            145deg,
            #18150b,
            #090909 65%
        );
}

.notes7-cover-fallback::before{
    content:"";

    position:absolute;
    inset:14px;

    border-radius:12px;

    border:
        1px solid rgba(254,190,0,.15);

    pointer-events:none;
}

.notes7-cover-fallback-icon{
    position:relative;

    width:54px;
    height:54px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:18px;

    border-radius:14px;

    background:rgba(254,190,0,.08);

    border:
        1px solid rgba(254,190,0,.2);

    color:#febe00;
}

.notes7-cover-fallback-icon svg{
    width:26px;
    height:26px;
}

.notes7-cover-fallback span{
    position:relative;

    margin-bottom:7px;

    color:#febe00;

    font-size:10px;
    font-weight:900;
    letter-spacing:2.4px;
}

.notes7-cover-fallback strong{
    position:relative;

    max-width:90%;

    color:#fff;

    font-size:23px;
    line-height:1.25;
}

.notes7-cover-fallback small{
    position:relative;

    margin-top:12px;

    color:rgba(255,255,255,.38);

    font-size:9px;
    font-weight:700;
    letter-spacing:1.6px;
}


/* ============================================================
   FREE BADGE
============================================================ */

.notes7-free-badge{
    position:absolute;
    top:15px;
    right:15px;

    z-index:4;

    padding:7px 11px;

    border-radius:999px;

    background:#febe00;

    color:#050505;

    font-size:9px;
    font-weight:900;
    letter-spacing:1px;

    box-shadow:
        0 7px 20px rgba(0,0,0,.28);
}


/* ============================================================
   NOTE CONTENT
============================================================ */

.notes7-card-content{
    padding:25px;
}

.notes7-card-meta{
    display:flex;
    align-items:center;
    flex-wrap:wrap;

    gap:8px;

    margin-bottom:16px;
}

.notes7-subject-label,
.notes7-chapter-label{
    display:inline-flex;
    align-items:center;

    padding:7px 10px;

    border-radius:999px;

    font-size:9px;
    font-weight:800;
    letter-spacing:.8px;

    line-height:1;
}

.notes7-subject-label{
    background:rgba(254,190,0,.08);

    border:
        1px solid rgba(254,190,0,.17);

    color:#febe00;
}

.notes7-chapter-label{
    background:rgba(255,255,255,.04);

    border:
        1px solid rgba(255,255,255,.08);

    color:rgba(255,255,255,.55);
}

.notes7-note-title{
    margin:0 0 12px;

    color:#fff;

    font-size:21px;
    line-height:1.35;

    font-weight:800;
}

.notes7-note-description{
    min-height:72px;

    margin:0 0 23px;

    color:rgba(255,255,255,.54);

    font-size:13px;
    line-height:1.75;
}


/* ============================================================
   DOWNLOAD BUTTON
============================================================ */

.notes7-download-btn{
    width:100%;
    min-height:52px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:15px;

    padding:0 18px;

    border:1px solid rgba(254,190,0,.22);

    border-radius:13px;

    background:rgba(254,190,0,.06);

    color:#febe00;

    font-family:inherit;
    font-size:11px;
    font-weight:900;
    letter-spacing:.7px;

    cursor:pointer;

    transition:.3s ease;
}

.notes7-download-btn svg{
    width:18px;
    height:18px;
}

.notes7-download-btn:hover{
    background:#febe00;
    color:#050505;
    border-color:#febe00;
}


/* ============================================================
   EMPTY STATE
============================================================ */

.notes7-empty-state,
.notes7-no-filter-result{
    max-width:700px;

    margin:0 auto;

    padding:65px 30px;

    text-align:center;

    border-radius:25px;

    background:#101010;

    border:
        1px solid rgba(255,255,255,.08);
}

.notes7-empty-icon{
    width:70px;
    height:70px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 22px;

    border-radius:20px;

    color:#febe00;

    background:
        rgba(254,190,0,.07);

    border:
        1px solid rgba(254,190,0,.18);
}

.notes7-empty-icon svg{
    width:30px;
    height:30px;
}

.notes7-empty-state h3,
.notes7-no-filter-result h3{
    margin:0 0 10px;

    font-size:25px;
}

.notes7-empty-state p,
.notes7-no-filter-result p{
    margin:0;

    color:rgba(255,255,255,.5);

    line-height:1.7;
}


/* ============================================================
   FEATURES
============================================================ */

.notes7-page .feature-grid{
    display:grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    gap:24px;
}

.notes7-page .feature-card{
    padding:35px;

    border-radius:22px;

    background:
        linear-gradient(
            145deg,
            #121212,
            #0a0a0a
        );

    border:
        1px solid rgba(255,255,255,.08);

    transition:.35s ease;
}

.notes7-page .feature-card:hover{
    transform:translateY(-7px);

    border-color:
        rgba(254,190,0,.32);
}

.notes7-page .feature-icon{
    width:50px;
    height:50px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:22px;

    border-radius:14px;

    background:
        rgba(254,190,0,.08);

    border:
        1px solid rgba(254,190,0,.18);

    color:#febe00;
}

.notes7-page .feature-icon svg{
    width:23px;
    height:23px;
}

.notes7-page .feature-card h3{
    margin:0 0 12px;

    color:#febe00;

    font-size:19px;
}

.notes7-page .feature-card p{
    margin:0;

    color:rgba(255,255,255,.55);

    font-size:14px;
    line-height:1.75;
}


/* ============================================================
   FAQ
============================================================ */

.notes7-page .faq-wrapper{
    display:flex;
    flex-direction:column;

    gap:13px;
}

.notes7-page .faq-item{
    overflow:hidden;

    border-radius:17px;

    background:#101010;

    border:
        1px solid rgba(255,255,255,.08);
}

.notes7-page .faq-question{
    width:100%;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:20px;

    padding:22px 24px;

    border:0;

    background:transparent;

    color:#fff;

    text-align:left;

    cursor:pointer;
}

.notes7-page .faq-question h3{
    margin:0;

    font-size:15px;
    line-height:1.5;
}

.notes7-page .faq-question svg{
    width:19px;
    height:19px;

    flex-shrink:0;

    color:#febe00;

    transition:transform .3s ease;
}

.notes7-page .faq-answer{
    max-height:0;

    overflow:hidden;

    transition:
        max-height .4s ease;
}

.notes7-page .faq-answer p{
    margin:0;

    padding:
        0 24px 22px;

    color:
        rgba(255,255,255,.55);

    font-size:14px;
    line-height:1.75;
}

.notes7-page .faq-item.active
.faq-question svg{
    transform:rotate(45deg);
}


/* ============================================================
   FINAL CTA
============================================================ */

.notes7-page .final-cta{
    position:relative;

    padding:140px 0;

    text-align:center;

    background:
        radial-gradient(
            circle at center,
            rgba(254,190,0,.09),
            transparent 45%
        ),
        #050505;
}

.notes7-page .final-cta h2{
    max-width:900px;

    margin:0 auto 20px;

    font-size:
        clamp(40px,6vw,70px);

    line-height:1.08;

    font-weight:900;
}

.notes7-page .final-cta h2 span{
    color:#febe00;
}

.notes7-page .final-cta p{
    max-width:650px;

    margin:0 auto;

    color:rgba(255,255,255,.55);

    font-size:16px;
    line-height:1.7;
}

.notes7-page .cta-buttons{
    justify-content:center;
}


/* ============================================================
   MODAL
============================================================ */

.notes7-modal{
    position:fixed;
    inset:0;

    z-index:999999;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:25px;

    opacity:0;
    visibility:hidden;

    transition:
        opacity .3s ease,
        visibility .3s ease;
}

.notes7-modal.active{
    opacity:1;
    visibility:visible;
}

.notes7-modal-backdrop{
    position:absolute;
    inset:0;

    background:
        rgba(0,0,0,.82);

    backdrop-filter:
        blur(8px);
}

.notes7-modal-dialog{
    position:relative;

    z-index:2;

    width:min(760px,100%);

    max-height:
        calc(100vh - 50px);

    overflow-y:auto;

    padding:38px;

    border-radius:25px;

    background:#0d0d0d;

    border:
        1px solid rgba(255,255,255,.1);

    box-shadow:
        0 35px 100px rgba(0,0,0,.65);

    scrollbar-width:thin;
}

.notes7-modal-close{
    position:absolute;

    top:18px;
    right:18px;

    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    border:
        1px solid rgba(255,255,255,.1);

    background:#151515;

    color:#fff;

    cursor:pointer;

    transition:.3s ease;
}

.notes7-modal-close:hover{
    background:#febe00;
    color:#050505;
}

.notes7-modal-close svg{
    width:19px;
    height:19px;
}


/* ============================================================
   MODAL HEADER
============================================================ */

.notes7-modal-header{
    padding-right:45px;

    margin-bottom:24px;
}

.notes7-modal-badge{
    display:inline-block;

    margin-bottom:13px;

    color:#febe00;

    font-size:10px;
    font-weight:900;
    letter-spacing:2px;
}

.notes7-modal-header h2{
    margin:0 0 10px;

    font-size:32px;
    line-height:1.2;
}

.notes7-modal-header p{
    margin:0;

    max-width:580px;

    color:rgba(255,255,255,.5);

    font-size:13px;
    line-height:1.7;
}


/* ============================================================
   SELECTED NOTE
============================================================ */

.notes7-selected-note{
    display:flex;
    flex-direction:column;

    gap:5px;

    margin-bottom:24px;

    padding:16px 18px;

    border-radius:13px;

    background:
        rgba(254,190,0,.055);

    border:
        1px solid rgba(254,190,0,.16);
}

.notes7-selected-note span{
    color:rgba(255,255,255,.42);

    font-size:9px;
    font-weight:800;
    letter-spacing:1.4px;
}

.notes7-selected-note strong{
    color:#febe00;

    font-size:15px;
}

.notes7-selected-note small{
    color:rgba(255,255,255,.52);
}


/* ============================================================
   FORM
============================================================ */

.notes7-download-form{
    display:grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap:17px;
}

.notes7-form-group{
    min-width:0;
}

.notes7-form-full{
    grid-column:1 / -1;
}

.notes7-form-group label{
    display:block;

    margin-bottom:8px;

    color:rgba(255,255,255,.72);

    font-size:11px;
    font-weight:700;
}

.notes7-form-group input,
.notes7-form-group select{
    width:100%;
    height:51px;

    padding:0 15px;

    border-radius:11px;

    border:
        1px solid rgba(255,255,255,.1);

    outline:none;

    background:#151515;

    color:#fff;

    font-family:inherit;
    font-size:13px;

    transition:
        border-color .25s ease,
        background .25s ease;
}

.notes7-form-group input:focus,
.notes7-form-group select:focus{
    border-color:
        rgba(254,190,0,.65);

    background:#181818;
}

.notes7-form-group input::placeholder{
    color:
        rgba(255,255,255,.27);
}

.notes7-form-group input:disabled{
    color:
        rgba(255,255,255,.5);

    cursor:not-allowed;
}


/* ============================================================
   PHONE
============================================================ */

.notes7-phone-wrap{
    display:flex;

    height:51px;

    overflow:hidden;

    border-radius:11px;

    border:
        1px solid rgba(255,255,255,.1);

    background:#151515;

    transition:border-color .25s ease;
}

.notes7-phone-wrap:focus-within{
    border-color:
        rgba(254,190,0,.65);
}

.notes7-phone-wrap span{
    min-width:55px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-right:
        1px solid rgba(255,255,255,.08);

    color:#febe00;

    font-size:12px;
    font-weight:800;
}

.notes7-phone-wrap input{
    height:100%;

    border:0 !important;
    border-radius:0;

    background:transparent !important;
}


/* ============================================================
   CONSENT
============================================================ */

.notes7-consent{
    padding-top:2px;
}

.notes7-consent label{
    display:flex;
    align-items:flex-start;

    gap:10px;

    cursor:pointer;
}

.notes7-consent input{
    width:17px;
    height:17px;

    margin-top:2px;

    flex-shrink:0;

    accent-color:#febe00;
}

.notes7-consent span{
    color:rgba(255,255,255,.48);

    font-size:11px;
    line-height:1.6;
}


/* ============================================================
   FORM MESSAGE
============================================================ */

.notes7-form-message{
    display:none;

    padding:12px 15px;

    border-radius:9px;

    font-size:12px;
    line-height:1.5;
}

.notes7-form-message.error{
    display:block;

    color:#ff8080;

    background:
        rgba(255,70,70,.08);

    border:
        1px solid rgba(255,70,70,.18);
}

.notes7-form-message.success{
    display:block;

    color:#72df9b;

    background:
        rgba(70,220,130,.08);

    border:
        1px solid rgba(70,220,130,.18);
}


/* ============================================================
   SUBMIT BUTTON
============================================================ */

.notes7-submit-btn{
    width:100%;
    min-height:55px;

    display:flex;
    align-items:center;
    justify-content:center;

    gap:10px;

    border:0;

    border-radius:12px;

    background:#febe00;

    color:#050505;

    font-family:inherit;
    font-size:12px;
    font-weight:900;
    letter-spacing:.5px;

    cursor:pointer;

    transition:
        transform .3s ease,
        background .3s ease;
}

.notes7-submit-btn:hover{
    background:#fff;
    transform:translateY(-2px);
}

.notes7-submit-btn:disabled{
    opacity:.65;
    cursor:not-allowed;
    transform:none;
}

.notes7-submit-btn svg{
    width:18px;
    height:18px;
}


/* ============================================================
   SECURITY
============================================================ */

.notes7-form-security{
    display:flex;
    align-items:center;
    justify-content:center;

    gap:7px;

    margin-top:18px;

    color:rgba(255,255,255,.32);

    font-size:10px;
}

.notes7-form-security svg{
    width:14px;
    height:14px;

    color:#febe00;
}


/* ============================================================
   BODY MODAL LOCK
============================================================ */

body.notes7-modal-open{
    overflow:hidden !important;
}


/* ============================================================
   CURSOR LIGHT
============================================================ */

.notes7-page .light-cursor{
    position:fixed;

    width:300px;
    height:300px;

    border-radius:50%;

    background:
        rgba(254,190,0,.07);

    filter:blur(85px);

    pointer-events:none;

    z-index:1;

    transform:
        translate(-50%,-50%);

    opacity:1;
}


/* ============================================================
   IMPORTANT:
   FORM AREA ME CURSOR LIGHT HIDE

   Isse form fill karte waqt cursor/arrow gayab hone wala
   purana issue nahi hoga.
============================================================ */

body.notes7-modal-open
.notes7-page .light-cursor{
    opacity:0 !important;
}


/* ============================================================
   REVEAL
============================================================ */

.notes7-page .reveal-up{
    opacity:0;

    transform:
        translateY(45px);

    transition:
        opacity .75s ease,
        transform .75s ease;
}

.notes7-page .reveal-up.active{
    opacity:1;

    transform:
        translateY(0);
}


/* ============================================================
   TABLET
============================================================ */

@media(max-width:1050px){

    .notes7-notes-grid{
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }

    .notes7-page .stats-grid{
        grid-template-columns:
            repeat(2,1fr);
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media(max-width:768px){

    .notes7-page .section-padding{
        padding:90px 0;
    }

    .notes7-hero{
        min-height:auto;
    }

    .notes7-hero .hero-content{
        padding-top:170px;
        padding-bottom:130px;
    }

    .notes7-hero .hero-title{
        font-size:62px;
        letter-spacing:-2px;
    }

    .notes7-hero .hero-subtitle{
        font-size:16px;
        line-height:1.7;
    }

    .notes7-page .stats-section{
        margin-top:-45px;
    }

    .notes7-page .stats-grid{
        grid-template-columns:
            repeat(2,1fr);

        gap:12px;
    }

    .notes7-page .stat-card{
        min-height:125px;
        padding:22px 12px;
    }

    .notes7-page .stat-card h3{
        font-size:35px;
    }

    .notes7-page .section-heading{
        margin-bottom:42px;
    }

    .notes7-page .section-heading h2{
        font-size:39px;
    }

    .notes7-filter-wrapper{
        justify-content:flex-start;

        flex-wrap:nowrap;

        overflow-x:auto;

        padding-bottom:8px;

        scrollbar-width:none;
    }

    .notes7-filter-wrapper::-webkit-scrollbar{
        display:none;
    }

    .notes7-filter-btn{
        flex:0 0 auto;
    }

    .notes7-notes-grid{
        grid-template-columns:1fr;
    }

    .notes7-cover-wrap{
        aspect-ratio:16 / 10;
    }

    .notes7-page .feature-grid{
        grid-template-columns:1fr;
    }

    .notes7-page .final-cta{
        padding:100px 0;
    }

    .notes7-modal{
        padding:12px;
        align-items:flex-end;
    }

    .notes7-modal-dialog{
        width:100%;

        max-height:
            calc(100vh - 24px);

        padding:28px 20px 24px;

        border-radius:22px 22px 14px 14px;
    }

    .notes7-modal-header{
        padding-right:35px;
    }

    .notes7-modal-header h2{
        font-size:27px;
    }

    .notes7-download-form{
        grid-template-columns:1fr;
    }

    .notes7-form-full{
        grid-column:auto;
    }

    .notes7-modal-close{
        top:14px;
        right:14px;

        width:38px;
        height:38px;
    }

    /*
       Mobile par decorative custom light ki
       koi need nahi.
    */

    .notes7-page .light-cursor{
        display:none;
    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media(max-width:480px){

    .notes7-hero .hero-title{
        font-size:52px;
    }

    .notes7-page .stats-grid{
        grid-template-columns:1fr 1fr;
    }

    .notes7-page .stat-card h3{
        font-size:31px;
    }

    .notes7-card-content{
        padding:21px;
    }

    .notes7-note-title{
        font-size:19px;
    }

    .notes7-cover-fallback{
        min-height:190px;
    }

    .notes7-page .hero-buttons{
        flex-direction:column;
        align-items:stretch;
    }

    .notes7-page .primary-btn,
    .notes7-page .secondary-btn{
        width:100%;
    }

}