/* ============================================================
   AARSH INSTITUTE
   CLASS 12 NOTES
   FINAL CSS
============================================================ */


/* ============================================================
   PAGE
============================================================ */

.notes12-page{
    background:#050505;
    color:#ffffff;
    overflow:hidden;
    position:relative;
    min-height:100vh;
}

.notes12-page *,
.notes12-modal *{
    box-sizing:border-box;
}

.notes12-container{
    width:min(1280px,92%);
    margin:0 auto;
    position:relative;
    z-index:5;
}

.notes12-container-small{
    width:min(900px,92%);
    margin:0 auto;
    position:relative;
    z-index:5;
}


/* ============================================================
   SECTIONS
============================================================ */

.notes12-section{
    padding:130px 0;
    position:relative;
}

.notes12-dark-section{
    background:#0b0b0b;
}


/* ============================================================
   HERO
============================================================ */

.notes12-hero{
    min-height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:#050505;
}

.notes12-hero-bg{
    position:absolute;
    inset:0;
    z-index:0;
}

.notes12-hero-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:.18;
}

.notes12-hero-overlay{
    position:absolute;
    inset:0;
    z-index:1;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.94) 0%,
            rgba(0,0,0,.74) 50%,
            rgba(0,0,0,.58) 100%
        ),
        linear-gradient(
            to bottom,
            rgba(0,0,0,.20),
            #050505 100%
        );
}

.notes12-hero-grid{
    position:absolute;
    inset:0;
    z-index:1;
    pointer-events:none;

    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;

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.85),
            transparent
        );

    -webkit-mask-image:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.85),
            transparent
        );
}

.notes12-hero-blob{
    position:absolute;
    border-radius:50%;
    pointer-events:none;
    filter:blur(120px);
    z-index:1;
}

.notes12-hero-blob-1{
    width:520px;
    height:520px;
    background:#febe00;
    opacity:.12;
    left:-220px;
    top:-180px;
}

.notes12-hero-blob-2{
    width:620px;
    height:620px;
    background:#7a0c0f;
    opacity:.20;
    right:-260px;
    bottom:-260px;
}

.notes12-hero-content{
    max-width:940px;
    padding:180px 0 130px;
    position:relative;
    z-index:4;
}

.notes12-hero-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-height:44px;

    padding:10px 23px;
    margin-bottom:30px;

    border-radius:999px;

    border:
        1px solid rgba(254,190,0,.28);

    background:
        rgba(254,190,0,.07);

    color:#febe00;

    font-size:13px;
    line-height:1.3;
    font-weight:800;
    letter-spacing:2.3px;
}

.notes12-hero-title{
    margin:0;

    font-size:clamp(72px,9vw,124px);
    line-height:.91;

    font-weight:900;
    letter-spacing:-5px;

    color:#ffffff;
}

.notes12-hero-title span{
    display:block;
    color:#febe00;
}

.notes12-hero-subtitle{
    max-width:810px;

    margin:30px 0 0;

    font-size:21px;
    line-height:1.75;

    color:rgba(255,255,255,.70);
}

.notes12-hero-buttons{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:16px;

    margin-top:40px;
}


/* ============================================================
   BUTTONS
============================================================ */

.notes12-primary-btn,
.notes12-secondary-btn{
    min-height:56px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:15px 30px;

    border-radius:999px;

    text-decoration:none;

    font-size:15px;
    font-weight:800;

    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease;
}

.notes12-primary-btn{
    background:#febe00;
    color:#050505;
    border:1px solid #febe00;
}

.notes12-primary-btn:hover{
    color:#050505;
    transform:translateY(-3px);
    background:#ffd044;
}

.notes12-secondary-btn{
    color:#ffffff;

    border:
        1px solid rgba(255,255,255,.16);

    background:
        rgba(255,255,255,.055);
}

.notes12-secondary-btn:hover{
    color:#ffffff;

    transform:translateY(-3px);

    border-color:
        rgba(254,190,0,.55);
}


/* ============================================================
   STATS
============================================================ */

.notes12-stats-section{
    position:relative;
    z-index:7;

    margin-top:-72px;

    padding-bottom:40px;
}

.notes12-stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.notes12-stat-card{
    min-height:170px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:30px 20px;

    background:#101010;

    border:
        1px solid rgba(255,255,255,.08);

    border-radius:26px;

    box-shadow:
        0 20px 60px rgba(0,0,0,.22);
}

.notes12-stat-card h3{
    margin:0 0 8px;

    color:#febe00;

    font-size:48px;
    line-height:1;

    font-weight:900;
}

.notes12-stat-card p{
    margin:0;

    color:
        rgba(255,255,255,.60);

    font-size:14px;
    font-weight:600;
}


/* ============================================================
   SECTION HEADING
============================================================ */

.notes12-section-heading{
    max-width:850px;

    margin:0 auto 65px;

    text-align:center;
}

.notes12-mini-title{
    display:block;

    margin-bottom:14px;

    color:#febe00;

    font-size:13px;
    font-weight:800;

    letter-spacing:3px;
}

.notes12-section-heading h2,
.notes12-final-cta h2{
    margin:0;

    color:#ffffff;

    font-size:clamp(40px,5vw,64px);
    line-height:1.08;

    font-weight:900;
    letter-spacing:-2px;
}

.notes12-section-heading h2 span,
.notes12-final-cta h2 span{
    color:#febe00;
}

.notes12-section-heading p{
    max-width:720px;

    margin:22px auto 0;

    color:
        rgba(255,255,255,.58);

    font-size:17px;
    line-height:1.7;
}


/* ============================================================
   STREAM CARDS
============================================================ */

.notes12-stream-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.notes12-stream-card{
    position:relative;

    min-height:270px;

    padding:34px;

    border-radius:26px;

    background:
        linear-gradient(
            145deg,
            #121212,
            #0d0d0d
        );

    border:
        1px solid rgba(255,255,255,.08);

    transition:
        transform .3s ease,
        border-color .3s ease;
}

.notes12-stream-card:hover{
    transform:translateY(-7px);

    border-color:
        rgba(254,190,0,.48);
}

.notes12-stream-icon{
    width:58px;
    height:58px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:25px;

    border-radius:17px;

    background:
        rgba(254,190,0,.10);

    border:
        1px solid rgba(254,190,0,.18);

    color:#febe00;
}

.notes12-stream-icon svg{
    width:26px;
    height:26px;
}

.notes12-stream-card h3{
    margin:0 0 13px;

    color:#ffffff;

    font-size:23px;
    font-weight:800;
}

.notes12-stream-card p{
    margin:0;

    color:
        rgba(255,255,255,.57);

    font-size:14px;
    line-height:1.7;
}


/* ============================================================
   SUBJECT FILTER
============================================================ */

.notes12-subject-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.notes12-subject-card{
    appearance:none;
    -webkit-appearance:none;

    width:100%;
    min-height:210px;

    padding:28px 24px;

    text-align:left;

    color:#ffffff;

    font-family:inherit;

    cursor:pointer;

    border-radius:24px;

    border:
        1px solid rgba(255,255,255,.08);

    background:#111111;

    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease;
}

.notes12-subject-card:hover{
    transform:translateY(-6px);

    border-color:
        rgba(254,190,0,.45);
}

.notes12-subject-card.active{
    border-color:#febe00;

    background:
        linear-gradient(
            145deg,
            rgba(254,190,0,.12),
            #111111 65%
        );
}

.notes12-subject-icon{
    width:52px;
    height:52px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:20px;

    border-radius:15px;

    background:
        rgba(254,190,0,.10);

    color:#febe00;
}

.notes12-subject-icon svg{
    width:24px;
    height:24px;
}

.notes12-subject-card h3{
    margin:0 0 9px;

    color:#ffffff;

    font-size:19px;
    font-weight:800;
}

.notes12-subject-card p{
    margin:0;

    color:
        rgba(255,255,255,.55);

    font-size:13px;
    line-height:1.6;
}


/* ============================================================
   MATERIAL GRID
============================================================ */

.notes12-material-grid{
    display:grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    gap:26px;
}

.notes12-material-card{
    min-width:0;

    display:flex;
    flex-direction:column;

    overflow:hidden;

    background:#111111;

    border:
        1px solid rgba(255,255,255,.08);

    border-radius:28px;

    transition:
        transform .3s ease,
        border-color .3s ease;
}

.notes12-material-card:hover{
    transform:translateY(-7px);

    border-color:
        rgba(254,190,0,.40);
}


/* ============================================================
   MATERIAL COVER / BOOK IMAGE
============================================================ */

.notes12-material-cover{
    height:285px;

    position:relative;

    overflow:hidden;

    background:#181818;
}

.notes12-material-cover img{
    width:100%;
    height:100%;

    display:block;

    object-fit:cover;

    transition:
        transform .4s ease;
}

.notes12-material-card:hover
.notes12-material-cover img{
    transform:scale(1.035);
}


/* ============================================================
   NO COVER PLACEHOLDER
============================================================ */

.notes12-cover-placeholder{
    width:100%;
    height:100%;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    gap:14px;

    color:#febe00;

    background:
        radial-gradient(
            circle at 50% 25%,
            rgba(254,190,0,.14),
            transparent 45%
        ),
        linear-gradient(
            145deg,
            #191919,
            #0d0d0d
        );
}

.notes12-cover-placeholder svg{
    width:54px;
    height:54px;
}

.notes12-cover-placeholder span{
    color:
        rgba(255,255,255,.65);

    font-size:15px;
    font-weight:700;
}

.notes12-category-badge{
    position:absolute;

    top:17px;
    left:17px;

    padding:8px 13px;

    border-radius:999px;

    background:
        rgba(5,5,5,.85);

    border:
        1px solid rgba(255,255,255,.12);

    color:#ffffff;

    font-size:11px;
    font-weight:800;

    letter-spacing:.5px;
}


/* ============================================================
   MATERIAL BODY
============================================================ */

.notes12-material-body{
    flex:1;

    display:flex;
    flex-direction:column;

    padding:27px;
}

.notes12-material-subject{
    display:inline-flex;
    align-self:flex-start;

    margin-bottom:13px;

    color:#febe00;

    font-size:12px;
    font-weight:800;

    text-transform:uppercase;
    letter-spacing:1.3px;
}

.notes12-material-body h3{
    margin:0 0 13px;

    color:#ffffff;

    font-size:22px;
    line-height:1.3;

    font-weight:800;
}

.notes12-chapter-name{
    display:flex;
    align-items:center;
    gap:8px;

    margin-bottom:14px;

    color:
        rgba(255,255,255,.68);

    font-size:13px;
    font-weight:600;
}

.notes12-chapter-name svg{
    flex:0 0 auto;

    width:16px;
    height:16px;

    color:#febe00;
}

.notes12-material-body p{
    margin:0 0 24px;

    color:
        rgba(255,255,255,.55);

    font-size:14px;
    line-height:1.7;
}


/* ============================================================
   DOWNLOAD BUTTON
============================================================ */

.notes12-download-btn{
    width:100%;
    min-height:52px;

    display:flex;
    align-items:center;
    justify-content:center;

    gap:9px;

    margin-top:auto;

    padding:13px 20px;

    border:0;
    border-radius:15px;

    background:#febe00;
    color:#050505;

    font-family:inherit;

    font-size:14px;
    font-weight:800;

    cursor:pointer;

    transition:
        transform .25s ease,
        background .25s ease;
}

.notes12-download-btn:hover{
    transform:translateY(-2px);
    background:#ffd044;
}

.notes12-download-btn svg{
    width:18px;
    height:18px;
}

.notes12-download-btn.disabled{
    cursor:not-allowed;

    color:
        rgba(255,255,255,.40);

    background:
        rgba(255,255,255,.08);
}

.notes12-download-btn.disabled:hover{
    transform:none;
}


/* ============================================================
   EMPTY STATES
============================================================ */

.notes12-empty-state,
.notes12-filter-empty{
    max-width:700px;

    margin:0 auto;

    padding:65px 30px;

    text-align:center;

    border-radius:28px;

    border:
        1px solid rgba(255,255,255,.08);

    background:#111111;
}

.notes12-empty-icon{
    width:70px;
    height:70px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 22px;

    border-radius:20px;

    background:
        rgba(254,190,0,.10);

    color:#febe00;
}

.notes12-empty-icon svg,
.notes12-filter-empty > svg{
    width:34px;
    height:34px;
}

.notes12-filter-empty > svg{
    margin-bottom:20px;
    color:#febe00;
}

.notes12-empty-state h3,
.notes12-filter-empty h3{
    margin:0 0 12px;

    color:#ffffff;

    font-size:25px;
}

.notes12-empty-state p,
.notes12-filter-empty p{
    max-width:540px;

    margin:0 auto;

    color:
        rgba(255,255,255,.55);

    line-height:1.7;
}


/* ============================================================
   FEATURE CARDS
============================================================ */

.notes12-feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.notes12-feature-card{
    padding:36px;

    min-height:270px;

    border-radius:27px;

    background:#111111;

    border:
        1px solid rgba(255,255,255,.08);

    transition:
        transform .3s ease,
        border-color .3s ease;
}

.notes12-feature-card:hover{
    transform:translateY(-7px);

    border-color:
        rgba(254,190,0,.42);
}

.notes12-feature-icon{
    width:58px;
    height:58px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:24px;

    border-radius:17px;

    background:
        rgba(254,190,0,.10);

    color:#febe00;
}

.notes12-feature-icon svg{
    width:26px;
    height:26px;
}

.notes12-feature-card h3{
    margin:0 0 13px;

    color:#ffffff;

    font-size:22px;
    font-weight:800;
}

.notes12-feature-card p{
    margin:0;

    color:
        rgba(255,255,255,.55);

    font-size:14px;
    line-height:1.75;
}


/* ============================================================
   FAQ
============================================================ */

.notes12-faq-wrapper{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.notes12-faq-item{
    overflow:hidden;

    border-radius:20px;

    background:#111111;

    border:
        1px solid rgba(255,255,255,.08);

    transition:
        border-color .25s ease;
}

.notes12-faq-item.active{
    border-color:
        rgba(254,190,0,.38);
}

.notes12-faq-question{
    appearance:none;
    -webkit-appearance:none;

    width:100%;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:20px;

    padding:25px 27px;

    border:0;

    background:transparent;
    color:#ffffff;

    font-family:inherit;

    text-align:left;

    font-size:16px;
    font-weight:700;

    cursor:pointer;
}

.notes12-faq-question svg{
    width:20px;
    height:20px;

    flex:0 0 auto;

    color:#febe00;

    transition:
        transform .3s ease;
}

.notes12-faq-item.active
.notes12-faq-question svg{
    transform:rotate(45deg);
}

.notes12-faq-answer{
    max-height:0;

    overflow:hidden;

    opacity:0;

    transition:
        max-height .35s ease,
        opacity .25s ease;
}

.notes12-faq-item.active
.notes12-faq-answer{
    max-height:300px;
    opacity:1;
}

.notes12-faq-answer p{
    margin:0;

    padding:
        0 27px 26px;

    color:
        rgba(255,255,255,.56);

    font-size:14px;
    line-height:1.75;
}


/* ============================================================
   FINAL CTA
============================================================ */

.notes12-final-cta{
    position:relative;

    overflow:hidden;

    padding:140px 0;

    text-align:center;

    background:
        radial-gradient(
            circle at 50% 100%,
            rgba(122,12,15,.25),
            transparent 50%
        ),
        #050505;
}

.notes12-final-cta h2{
    max-width:900px;

    margin:0 auto;
}

.notes12-final-cta p{
    max-width:680px;

    margin:22px auto 35px;

    color:
        rgba(255,255,255,.58);

    font-size:17px;
    line-height:1.7;
}


/* ============================================================
   DECORATIVE CURSOR
============================================================ */

.notes12-cursor-light{
    position:fixed;

    left:0;
    top:0;

    width:280px;
    height:280px;

    border-radius:50%;

    background:
        rgba(254,190,0,.075);

    filter:blur(75px);

    pointer-events:none;

    z-index:2;

    opacity:0;

    transform:
        translate(-50%,-50%);

    transition:
        opacity .2s ease;
}

.notes12-cursor-light.visible{
    opacity:1;
}


/* ============================================================
   REVEAL
============================================================ */

.notes12-reveal{
    opacity:0;

    transform:
        translateY(45px);

    transition:
        opacity .75s ease,
        transform .75s ease;
}

.notes12-reveal.active{
    opacity:1;
    transform:translateY(0);
}


/* ============================================================
   DOWNLOAD MODAL
============================================================ */

.notes12-modal{
    position:fixed;

    inset:0;

    z-index:999999;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:24px;

    visibility:hidden;
    opacity:0;

    pointer-events:none;

    transition:
        opacity .25s ease,
        visibility .25s ease;
}

.notes12-modal.active{
    visibility:visible;
    opacity:1;

    pointer-events:auto;
}

.notes12-modal-backdrop{
    position:absolute;
    inset:0;

    background:
        rgba(0,0,0,.82);

    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);

    cursor:pointer;
}

.notes12-modal-dialog{
    position:relative;

    z-index:2;

    width:min(1050px,100%);
    max-height:calc(100vh - 48px);

    display:grid;

    grid-template-columns:
        minmax(300px,.78fr)
        minmax(450px,1.22fr);

    overflow:auto;

    border-radius:30px;

    border:
        1px solid rgba(255,255,255,.12);

    background:#101010;

    box-shadow:
        0 35px 100px rgba(0,0,0,.60);
}


/* ============================================================
   MODAL LEFT SIDE
============================================================ */

.notes12-modal-info{
    position:relative;

    padding:48px 42px;

    background:
        radial-gradient(
            circle at 10% 0%,
            rgba(254,190,0,.12),
            transparent 36%
        ),
        linear-gradient(
            160deg,
            #151515,
            #090909
        );

    border-right:
        1px solid rgba(255,255,255,.08);
}

.notes12-modal-eyebrow{
    display:block;

    margin-bottom:16px;

    color:#febe00;

    font-size:12px;
    font-weight:800;

    letter-spacing:2.5px;
}

.notes12-modal-info h2{
    margin:0;

    color:#ffffff;

    font-size:42px;
    line-height:1.05;

    font-weight:900;
    letter-spacing:-1.5px;
}

.notes12-modal-info h2 span{
    display:block;
    color:#febe00;
}

.notes12-modal-info > p{
    margin:20px 0 28px;

    color:
        rgba(255,255,255,.57);

    font-size:14px;
    line-height:1.7;
}


/* ============================================================
   SELECTED NOTE
============================================================ */

.notes12-selected-note{
    padding:19px;

    margin-bottom:26px;

    border-radius:18px;

    background:
        rgba(255,255,255,.045);

    border:
        1px solid rgba(255,255,255,.08);
}

.notes12-selected-note small{
    display:block;

    margin-bottom:7px;

    color:
        rgba(255,255,255,.42);

    font-size:10px;
    font-weight:800;

    letter-spacing:1.6px;
}

.notes12-selected-note strong{
    display:block;

    margin-bottom:5px;

    color:#ffffff;

    font-size:16px;
    line-height:1.4;
}

.notes12-selected-note span{
    color:#febe00;

    font-size:12px;
    font-weight:700;
}


/* ============================================================
   MODAL BENEFITS
============================================================ */

.notes12-modal-benefits{
    list-style:none;

    display:flex;
    flex-direction:column;
    gap:13px;

    margin:0;
    padding:0;
}

.notes12-modal-benefits li{
    display:flex;
    align-items:center;
    gap:10px;

    color:
        rgba(255,255,255,.68);

    font-size:13px;
}

.notes12-modal-benefits svg{
    width:17px;
    height:17px;

    color:#febe00;
}


/* ============================================================
   MODAL FORM AREA
============================================================ */

.notes12-modal-form-area{
    position:relative;

    padding:48px 42px;

    background:#101010;
}

.notes12-modal-close{
    position:absolute;

    top:18px;
    right:18px;

    width:40px;
    height:40px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    border:
        1px solid rgba(255,255,255,.10);

    background:
        rgba(255,255,255,.05);

    color:#ffffff;

    cursor:pointer;

    z-index:4;
}

.notes12-modal-close:hover{
    border-color:
        rgba(254,190,0,.45);

    color:#febe00;
}

.notes12-modal-close svg{
    width:19px;
    height:19px;
}


/* ============================================================
   FORM GRID
============================================================ */

.notes12-form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:17px;
}

.notes12-form-group{
    min-width:0;
}

.notes12-form-group.notes12-full{
    grid-column:1 / -1;
}

.notes12-form-group label{
    display:block;

    margin-bottom:8px;

    color:
        rgba(255,255,255,.76);

    font-size:12px;
    font-weight:700;
}


/* ============================================================
   INPUTS
============================================================ */

.notes12-form-group input,
.notes12-form-group select{
    width:100%;
    height:50px;

    padding:0 15px;

    outline:none;

    border-radius:12px;

    border:
        1px solid rgba(255,255,255,.10);

    background:#181818;
    color:#ffffff;

    font-family:inherit;
    font-size:13px;

    transition:
        border-color .2s ease,
        background .2s ease;
}

.notes12-form-group input{
    cursor:text;
}

.notes12-form-group select{
    cursor:pointer;
}

.notes12-form-group input::placeholder{
    color:
        rgba(255,255,255,.32);
}

.notes12-form-group input:focus,
.notes12-form-group select:focus{
    border-color:
        rgba(254,190,0,.75);

    background:#1b1b1b;
}

.notes12-form-group input[readonly]{
    color:
        rgba(255,255,255,.60);

    cursor:default;
}


/* ============================================================
   PHONE FIELD
============================================================ */

.notes12-phone-field{
    width:100%;
    height:50px;

    display:flex;
    align-items:center;

    overflow:hidden;

    border-radius:12px;

    border:
        1px solid rgba(255,255,255,.10);

    background:#181818;

    transition:
        border-color .2s ease;
}

.notes12-phone-field:focus-within{
    border-color:
        rgba(254,190,0,.75);
}

.notes12-phone-field > span{
    height:100%;

    display:flex;
    align-items:center;

    padding:0 13px;

    border-right:
        1px solid rgba(255,255,255,.08);

    color:#febe00;

    font-size:13px;
    font-weight:700;
}

.notes12-phone-field input{
    height:100%;

    border:0 !important;
    border-radius:0;

    background:transparent !important;

    box-shadow:none !important;

    cursor:text !important;
}


/* ============================================================
   CONSENT
============================================================ */

.notes12-consent{
    display:flex;
    align-items:flex-start;

    gap:10px;

    margin-top:18px;

    cursor:pointer;
}

.notes12-consent input{
    width:16px;
    height:16px;

    flex:0 0 auto;

    margin-top:3px;

    accent-color:#febe00;

    cursor:pointer;
}

.notes12-consent span{
    color:
        rgba(255,255,255,.48);

    font-size:11px;
    line-height:1.55;
}


/* ============================================================
   FORM MESSAGE
============================================================ */

.notes12-form-message{
    display:none;

    margin-top:15px;

    padding:11px 13px;

    border-radius:10px;

    font-size:12px;
    line-height:1.5;
}

.notes12-form-message.error{
    display:block;

    color:#ffb8b8;

    border:
        1px solid rgba(255,85,85,.25);

    background:
        rgba(255,70,70,.08);
}

.notes12-form-message.success{
    display:block;

    color:#c6ffd6;

    border:
        1px solid rgba(72,220,120,.25);

    background:
        rgba(72,220,120,.08);
}


/* ============================================================
   SUBMIT BUTTON
============================================================ */

.notes12-submit-btn{
    width:100%;
    min-height:52px;

    display:flex;
    align-items:center;
    justify-content:center;

    gap:9px;

    margin-top:17px;

    padding:13px 20px;

    border:0;
    border-radius:13px;

    background:#febe00;
    color:#050505;

    font-family:inherit;

    font-size:14px;
    font-weight:900;

    cursor:pointer;

    transition:
        transform .2s ease,
        background .2s ease,
        opacity .2s ease;
}

.notes12-submit-btn:hover:not(:disabled){
    transform:translateY(-2px);
    background:#ffd044;
}

.notes12-submit-btn:disabled{
    opacity:.65;
    cursor:not-allowed;
}

.notes12-submit-btn svg{
    width:18px;
    height:18px;
}


/* ============================================================
   SECURITY
============================================================ */

.notes12-security{
    display:flex;
    align-items:center;
    justify-content:center;

    gap:7px;

    margin-top:13px;

    color:
        rgba(255,255,255,.35);

    font-size:10px;
}

.notes12-security svg{
    width:13px;
    height:13px;
}


/* ============================================================
   BODY MODAL OPEN
============================================================ */

body.notes12-modal-open{
    overflow:hidden;
}


/* ============================================================
   IMPORTANT CURSOR FIX

   Is part ko remove mat karna.
   Form ke andar normal browser cursor rahega.
   Yellow decorative cursor form ke upar interfere nahi karega.
============================================================ */

.notes12-modal,
.notes12-modal *{
    cursor:auto;
}

.notes12-modal input[type="text"],
.notes12-modal input[type="email"],
.notes12-modal input[type="tel"]{
    cursor:text !important;
    caret-color:#febe00;
}

.notes12-modal button,
.notes12-modal select,
.notes12-modal label,
.notes12-modal input[type="checkbox"],
.notes12-modal-backdrop{
    cursor:pointer;
}


/* ============================================================
   TABLET
============================================================ */

@media(max-width:1100px){

    .notes12-stream-grid,
    .notes12-subject-grid{
        grid-template-columns:
            repeat(2,1fr);
    }

    .notes12-material-grid{
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }

    .notes12-modal-dialog{
        grid-template-columns:
            .8fr 1.2fr;
    }

}


/* ============================================================
   SMALL TABLET
============================================================ */

@media(max-width:850px){

    .notes12-section{
        padding:95px 0;
    }

    .notes12-stats-section{
        margin-top:-35px;
    }

    .notes12-stats-grid{
        grid-template-columns:
            repeat(2,1fr);
    }

    .notes12-feature-grid{
        grid-template-columns:1fr;
    }

    .notes12-modal{
        align-items:flex-start;

        overflow-y:auto;

        padding:20px;
    }

    .notes12-modal-dialog{
        grid-template-columns:1fr;

        max-height:none;
    }

    .notes12-modal-info{
        border-right:0;

        border-bottom:
            1px solid rgba(255,255,255,.08);
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media(max-width:600px){

    .notes12-container,
    .notes12-container-small{
        width:92%;
    }

    .notes12-hero{
        min-height:auto;
    }

    .notes12-hero-content{
        padding:
            150px 0 115px;
    }

    .notes12-hero-title{
        font-size:62px;
        letter-spacing:-3px;
    }

    .notes12-hero-subtitle{
        font-size:16px;
        line-height:1.7;
    }

    .notes12-hero-buttons{
        align-items:stretch;
        flex-direction:column;
    }

    .notes12-primary-btn,
    .notes12-secondary-btn{
        width:100%;
    }

    .notes12-stats-grid{
        grid-template-columns:1fr 1fr;
        gap:12px;
    }

    .notes12-stat-card{
        min-height:135px;
        padding:22px 10px;
    }

    .notes12-stat-card h3{
        font-size:35px;
    }

    .notes12-stat-card p{
        font-size:11px;
    }

    .notes12-section{
        padding:80px 0;
    }

    .notes12-section-heading{
        margin-bottom:42px;
    }

    .notes12-section-heading h2,
    .notes12-final-cta h2{
        font-size:38px;
        letter-spacing:-1.5px;
    }

    .notes12-section-heading p{
        font-size:14px;
    }

    .notes12-stream-grid,
    .notes12-subject-grid,
    .notes12-material-grid{
        grid-template-columns:1fr;
    }

    .notes12-stream-card,
    .notes12-feature-card{
        min-height:auto;
        padding:28px;
    }

    .notes12-subject-card{
        min-height:auto;
    }

    .notes12-material-cover{
        height:260px;
    }

    .notes12-final-cta{
        padding:100px 0;
    }


    /* MODAL MOBILE */

    .notes12-modal{
        padding:10px;
    }

    .notes12-modal-dialog{
        border-radius:22px;
    }

    .notes12-modal-info{
        padding:38px 24px 30px;
    }

    .notes12-modal-info h2{
        font-size:34px;
    }

    .notes12-modal-form-area{
        padding:45px 20px 28px;
    }

    .notes12-form-grid{
        grid-template-columns:1fr;
        gap:15px;
    }

    .notes12-form-group.notes12-full{
        grid-column:auto;
    }

}


/* ============================================================
   VERY SMALL MOBILE
============================================================ */

@media(max-width:390px){

    .notes12-hero-title{
        font-size:53px;
    }

    .notes12-stats-grid{
        grid-template-columns:1fr;
    }

}


/* ============================================================
   TOUCH DEVICES
============================================================ */

@media (hover:none), (pointer:coarse){

    .notes12-cursor-light{
        display:none !important;
    }

}


/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion:reduce){

    .notes12-reveal{
        opacity:1;
        transform:none;
        transition:none;
    }

    .notes12-material-card,
    .notes12-stream-card,
    .notes12-feature-card,
    .notes12-subject-card,
    .notes12-primary-btn,
    .notes12-secondary-btn{
        transition:none;
    }

}