/* ============================================================
   AARSH INSTITUTE
   CLASS 10 SAMPLE PAPERS
   FINAL CSS
============================================================ */

.sample10-page{
    --yellow:#fdbe00;
    --red:#7a0c0f;
    --black:#050505;
    --black-2:#090909;
    --card:#101010;
    --card-2:#131313;
    --white:#ffffff;
    --muted:rgba(255,255,255,.64);
    --border:rgba(255,255,255,.09);

    background:var(--black);
    color:var(--white);
    overflow:hidden;
    position:relative;
}

.sample10-page *,
.sample10-page *::before,
.sample10-page *::after{
    box-sizing:border-box;
}

.sample10-page a{
    text-decoration:none;
}

.sample10-page button,
.sample10-page input,
.sample10-page select{
    font:inherit;
}

.sample10-page button{
    color:inherit;
}


/* ============================================================
   CONTAINERS
============================================================ */

.sample10-container{
    width:min(1280px,92%);
    margin:auto;
    position:relative;
    z-index:5;
}

.sample10-small-container{
    width:min(900px,92%);
    margin:auto;
    position:relative;
    z-index:5;
}


/* ============================================================
   HERO
============================================================ */

.sample10-hero{
    min-height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.sample10-hero-bg{
    position:absolute;
    inset:0;
}

.sample10-hero-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    opacity:.2;
}

.sample10-hero-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.96) 0%,
            rgba(0,0,0,.72) 55%,
            rgba(0,0,0,.48) 100%
        ),
        linear-gradient(
            to bottom,
            rgba(0,0,0,.2),
            rgba(5,5,5,.98)
        );
}

.sample10-grid-pattern{
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );
    background-size:60px 60px;
}

.sample10-orb{
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    filter:blur(120px);
    pointer-events:none;
}

.sample10-orb-one{
    background:var(--yellow);
    opacity:.12;
    top:-190px;
    left:-190px;
}

.sample10-orb-two{
    background:var(--red);
    opacity:.2;
    right:-190px;
    bottom:-190px;
}

.sample10-hero-content{
    max-width:930px;
    padding:155px 0 125px;
}

.sample10-eyebrow{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:26px;
    color:var(--yellow);
    font-size:12px;
    font-weight:800;
    letter-spacing:2.4px;
}

.sample10-eyebrow-line{
    width:40px;
    height:2px;
    background:var(--yellow);
}

.sample10-hero-title{
    margin:0;
    font-size:clamp(68px,8vw,118px);
    line-height:.93;
    font-weight:900;
    letter-spacing:-4px;
}

.sample10-hero-title span{
    display:block;
    color:var(--yellow);
}

.sample10-hero-description{
    max-width:770px;
    margin:28px 0 0;
    color:var(--muted);
    font-size:20px;
    line-height:1.8;
}


/* ============================================================
   FREE STRIP
============================================================ */

.sample10-free-strip{
    width:fit-content;
    max-width:100%;
    display:flex;
    align-items:center;
    gap:15px;
    margin-top:30px;
    padding:14px 20px;
    border-radius:17px;
    background:rgba(253,190,0,.06);
    border:1px solid rgba(253,190,0,.18);
}

.sample10-free-icon{
    width:44px;
    height:44px;
    flex:0 0 44px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:13px;
    background:var(--yellow);
    color:#050505;
}

.sample10-free-icon svg{
    width:21px;
    height:21px;
}

.sample10-free-strip strong{
    display:block;
    margin-bottom:3px;
    color:#fff;
    font-size:14px;
}

.sample10-free-strip span{
    color:var(--muted);
    font-size:12px;
}


/* ============================================================
   BUTTONS
============================================================ */

.sample10-hero-actions{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:16px;
    margin-top:35px;
}

.sample10-btn{
    min-height:57px;
    padding:0 30px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    border-radius:999px;
    font-size:14px;
    font-weight:800;
    transition:.3s ease;
}

.sample10-btn svg{
    width:18px;
    height:18px;
}

.sample10-btn-primary{
    background:var(--yellow);
    border:1px solid var(--yellow);
    color:#050505;
}

.sample10-btn-primary:hover{
    transform:translateY(-3px);
    background:#ffd047;
}

.sample10-btn-secondary{
    background:rgba(255,255,255,.035);
    border:1px solid rgba(255,255,255,.14);
    color:#fff;
}

.sample10-btn-secondary:hover{
    transform:translateY(-3px);
    border-color:rgba(253,190,0,.55);
}


/* ============================================================
   SCROLL INDICATOR
============================================================ */

.sample10-scroll-indicator{
    position:absolute;
    z-index:5;
    right:42px;
    bottom:42px;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
    color:rgba(255,255,255,.42);
}

.sample10-scroll-indicator span{
    font-size:9px;
    font-weight:800;
    letter-spacing:2px;
    writing-mode:vertical-rl;
}

.sample10-scroll-indicator svg{
    width:17px;
    height:17px;
    color:var(--yellow);
}


/* ============================================================
   STATS
============================================================ */

.sample10-stats{
    position:relative;
    z-index:10;
    margin-top:-60px;
}

.sample10-stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.sample10-stat{
    min-height:170px;
    padding:28px 20px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    border-radius:25px;
    background:#0d0d0d;
    border:1px solid var(--border);
    box-shadow:0 25px 60px rgba(0,0,0,.3);
}

.sample10-stat-icon{
    width:42px;
    height:42px;
    margin-bottom:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    background:rgba(253,190,0,.08);
    color:var(--yellow);
}

.sample10-stat-icon svg{
    width:20px;
    height:20px;
}

.sample10-stat strong{
    color:var(--yellow);
    font-size:37px;
    line-height:1;
    font-weight:900;
}

.sample10-stat p{
    margin:9px 0 0;
    color:var(--muted);
    font-size:13px;
}


/* ============================================================
   GENERAL SECTION
============================================================ */

.sample10-section{
    position:relative;
    padding:135px 0 110px;
}

.sample10-section-heading{
    max-width:850px;
    margin:0 auto 65px;
    text-align:center;
}

.sample10-mini-heading{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:13px;
    margin-bottom:15px;
    color:var(--yellow);
    font-size:11px;
    font-weight:900;
    letter-spacing:2.3px;
}

.sample10-mini-heading span{
    width:28px;
    height:1px;
    background:rgba(253,190,0,.7);
}

.sample10-section-heading h2{
    margin:0;
    color:#fff;
    font-size:clamp(40px,5vw,63px);
    line-height:1.08;
    font-weight:900;
    letter-spacing:-2px;
}

.sample10-section-heading h2 em{
    display:block;
    color:var(--yellow);
    font-style:normal;
}

.sample10-section-heading p{
    max-width:700px;
    margin:20px auto 0;
    color:var(--muted);
    line-height:1.8;
}


/* ============================================================
   SUBJECT TABS
============================================================ */

.sample10-subject-tabs{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:16px;
}

.sample10-subject-btn{
    min-height:115px;
    padding:21px;
    display:flex;
    align-items:center;
    gap:15px;
    text-align:left;
    border-radius:20px;
    border:1px solid var(--border);
    background:#0e0e0e;
    cursor:pointer;
    transition:.3s ease;
}

.sample10-subject-btn:hover{
    transform:translateY(-5px);
    border-color:rgba(253,190,0,.45);
}

.sample10-subject-btn.active{
    border-color:var(--yellow);
    background:
        linear-gradient(
            135deg,
            rgba(253,190,0,.12),
            rgba(253,190,0,.025)
        ),
        #0e0e0e;
}

.sample10-subject-icon{
    width:48px;
    height:48px;
    flex:0 0 48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    background:rgba(253,190,0,.08);
    color:var(--yellow);
}

.sample10-subject-icon svg{
    width:22px;
    height:22px;
}

.sample10-subject-btn strong{
    display:block;
    margin-bottom:5px;
    color:#fff;
    font-size:14px;
}

.sample10-subject-btn small{
    color:rgba(255,255,255,.45);
    font-size:10px;
}


/* ============================================================
   LIBRARY
============================================================ */

.sample10-library{
    position:relative;
    padding:120px 0 140px;
    background:#090909;
}

.sample10-library-top{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:30px;
    margin-bottom:50px;
}

.sample10-library-label{
    display:block;
    margin-bottom:10px;
    color:var(--yellow);
    font-size:11px;
    font-weight:900;
    letter-spacing:2px;
}

.sample10-library-top h2{
    margin:0;
    font-size:clamp(40px,5vw,60px);
    line-height:1;
    font-weight:900;
}

.sample10-library-top h2 em{
    color:var(--yellow);
    font-style:normal;
}

.sample10-resource-count{
    display:flex;
    align-items:baseline;
    gap:8px;
}

.sample10-resource-count strong{
    color:var(--yellow);
    font-size:38px;
    font-weight:900;
}

.sample10-resource-count span{
    color:var(--muted);
    font-size:12px;
}


/* ============================================================
   PAPER GRID
============================================================ */

.sample10-papers-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.sample10-paper-card{
    min-width:0;
    position:relative;
    overflow:hidden;
    padding:18px;
    border-radius:27px;
    background:#111;
    border:1px solid var(--border);
    transition:.35s ease;
}

.sample10-paper-card:hover{
    transform:translateY(-8px);
    border-color:rgba(253,190,0,.45);
    box-shadow:0 30px 60px rgba(0,0,0,.32);
}

.sample10-paper-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    margin-bottom:14px;
}

.sample10-paper-subject{
    color:var(--yellow);
    font-size:10px;
    font-weight:900;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

.sample10-free-tag{
    padding:6px 10px;
    border-radius:999px;
    background:var(--yellow);
    color:#050505;
    font-size:9px;
    font-weight:900;
    letter-spacing:1px;
}


/* ============================================================
   COVER IMAGE
============================================================ */

.sample10-cover-wrap{
    width:100%;
    height:265px;
    position:relative;
    overflow:hidden;
    border-radius:18px;
    background:#171717;
    border:1px solid rgba(255,255,255,.07);
}

.sample10-cover-image{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    object-position:center;
    transition:transform .5s ease;
}

.sample10-paper-card:hover .sample10-cover-image{
    transform:scale(1.045);
}


/* ============================================================
   FALLBACK COVER
============================================================ */

.sample10-cover-fallback{
    width:100%;
    height:100%;
    padding:25px;
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(253,190,0,.14),
            transparent 50%
        ),
        linear-gradient(
            145deg,
            #171717,
            #090909
        );
}

.sample10-cover-fallback::before{
    content:"";
    position:absolute;
    inset:0;
    opacity:.4;
    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:25px 25px;
}

.sample10-cover-fallback > *{
    position:relative;
    z-index:2;
}

.sample10-cover-fallback-icon{
    width:55px;
    height:55px;
    margin-bottom:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:16px;
    background:var(--yellow);
    color:#050505;
}

.sample10-cover-fallback-icon svg{
    width:27px;
    height:27px;
}

.sample10-cover-fallback > span{
    color:rgba(255,255,255,.5);
    font-size:10px;
    font-weight:800;
    letter-spacing:2px;
}

.sample10-cover-fallback > strong{
    max-width:90%;
    margin:8px 0;
    color:var(--yellow);
    font-size:25px;
    line-height:1.15;
    text-transform:uppercase;
}

.sample10-cover-fallback > small{
    margin-top:4px;
    color:rgba(255,255,255,.5);
    font-size:9px;
    font-weight:800;
    letter-spacing:1.5px;
}


/* ============================================================
   PAPER CONTENT
============================================================ */

.sample10-chapter-label{
    display:block;
    margin-top:21px;
    color:rgba(255,255,255,.4);
    font-size:9px;
    font-weight:800;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

.sample10-paper-card h3{
    margin:9px 0 11px;
    color:#fff;
    font-size:21px;
    line-height:1.35;
}

.sample10-paper-card > p{
    min-height:70px;
    margin:0;
    color:var(--muted);
    font-size:13px;
    line-height:1.7;
}

.sample10-paper-meta{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:14px;
    margin-top:18px;
    padding-top:17px;
    border-top:1px solid rgba(255,255,255,.07);
}

.sample10-paper-meta span{
    display:flex;
    align-items:center;
    gap:6px;
    color:rgba(255,255,255,.46);
    font-size:10px;
}

.sample10-paper-meta svg{
    width:14px;
    height:14px;
    color:var(--yellow);
}


/* ============================================================
   DOWNLOAD BUTTON
============================================================ */

.sample10-download-btn{
    width:100%;
    min-height:54px;
    margin-top:20px;
    padding:0 16px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    border:0;
    border-radius:14px;
    background:var(--yellow);
    color:#050505 !important;
    cursor:pointer;
    font-weight:900;
    transition:.3s ease;
}

.sample10-download-btn > span{
    display:flex;
    align-items:center;
    gap:8px;
}

.sample10-download-btn svg{
    width:17px;
    height:17px;
}

.sample10-download-btn:hover{
    background:#ffd047;
    transform:translateY(-2px);
}


/* ============================================================
   EMPTY STATE
============================================================ */

.sample10-empty{
    display:none;
    margin-top:30px;
    padding:60px 25px;
    text-align:center;
    border-radius:25px;
    border:1px solid var(--border);
    background:#101010;
}

.sample10-empty.show{
    display:block;
}

.sample10-empty svg{
    width:45px;
    height:45px;
    color:var(--yellow);
    margin-bottom:15px;
}

.sample10-empty h3{
    margin:0 0 8px;
    font-size:22px;
}

.sample10-empty p{
    margin:0;
    color:var(--muted);
}


/* ============================================================
   BENEFITS
============================================================ */

.sample10-benefits{
    padding:135px 0;
    background:#050505;
}

.sample10-benefit-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.sample10-benefit-card{
    position:relative;
    min-height:300px;
    padding:32px 27px;
    overflow:hidden;
    border-radius:25px;
    background:#101010;
    border:1px solid var(--border);
    transition:.35s ease;
}

.sample10-benefit-card:hover{
    transform:translateY(-7px);
    border-color:rgba(253,190,0,.4);
}

.sample10-benefit-number{
    position:absolute;
    top:15px;
    right:18px;
    color:rgba(255,255,255,.04);
    font-size:62px;
    line-height:1;
    font-weight:900;
}

.sample10-benefit-icon{
    width:55px;
    height:55px;
    margin-bottom:25px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:16px;
    background:rgba(253,190,0,.08);
    color:var(--yellow);
}

.sample10-benefit-icon svg{
    width:25px;
    height:25px;
}

.sample10-benefit-card h3{
    margin:0 0 12px;
    font-size:20px;
}

.sample10-benefit-card p{
    margin:0;
    color:var(--muted);
    font-size:13px;
    line-height:1.75;
}


/* ============================================================
   FAQ
============================================================ */

.sample10-faq{
    padding:135px 0;
    background:#090909;
}

.sample10-faq-list{
    display:flex;
    flex-direction:column;
    gap:13px;
}

.sample10-faq-item{
    overflow:hidden;
    border-radius:19px;
    background:#111;
    border:1px solid var(--border);
    transition:.3s ease;
}

.sample10-faq-item.active{
    border-color:rgba(253,190,0,.32);
}

.sample10-faq-question{
    width:100%;
    min-height:76px;
    padding:20px 24px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    text-align:left;
    border:0;
    background:transparent;
    cursor:pointer;
    color:#fff;
    font-size:15px;
    font-weight:700;
}

.sample10-faq-question svg{
    width:19px;
    height:19px;
    flex-shrink:0;
    color:var(--yellow);
    transition:transform .3s ease;
}

.sample10-faq-answer{
    max-height:0;
    opacity:0;
    overflow:hidden;
    transition:
        max-height .4s ease,
        opacity .3s ease;
}

.sample10-faq-answer p{
    margin:0;
    padding:0 24px 24px;
    color:var(--muted);
    font-size:13px;
    line-height:1.8;
}

.sample10-faq-item.active .sample10-faq-answer{
    max-height:250px;
    opacity:1;
}

.sample10-faq-item.active .sample10-faq-question svg{
    transform:rotate(45deg);
}


/* ============================================================
   FINAL CTA
============================================================ */

.sample10-final-cta{
    position:relative;
    padding:145px 0;
    overflow:hidden;
    text-align:center;
    background:#050505;
}

.sample10-cta-glow{
    position:absolute;
    width:700px;
    height:350px;
    left:50%;
    bottom:-260px;
    transform:translateX(-50%);
    border-radius:50%;
    background:var(--red);
    opacity:.24;
    filter:blur(120px);
}

.sample10-cta-label{
    display:block;
    margin-bottom:17px;
    color:var(--yellow);
    font-size:11px;
    font-weight:900;
    letter-spacing:2.4px;
}

.sample10-final-cta h2{
    max-width:900px;
    margin:0 auto;
    color:#fff;
    font-size:clamp(42px,6vw,72px);
    line-height:1.08;
    font-weight:900;
    letter-spacing:-2.5px;
}

.sample10-final-cta h2 span{
    display:block;
    color:var(--yellow);
}

.sample10-final-cta p{
    max-width:700px;
    margin:22px auto 32px;
    color:var(--muted);
    font-size:16px;
    line-height:1.8;
}


/* ============================================================
   MODAL
============================================================ */

.sample10-modal{
    position:fixed;
    inset:0;
    z-index:999999;
    padding:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:.3s ease;
}

.sample10-modal.active{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

.sample10-modal-backdrop{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.86);
    backdrop-filter:blur(8px);
}

.sample10-modal-dialog{
    position:relative;
    z-index:2;
    width:min(1040px,100%);
    max-height:calc(100vh - 48px);
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    overflow:auto;
    border-radius:29px;
    background:#101010;
    border:1px solid rgba(255,255,255,.11);
    box-shadow:0 40px 120px rgba(0,0,0,.72);
}

.sample10-modal-close{
    position:absolute;
    z-index:10;
    top:16px;
    right:16px;
    width:41px;
    height:41px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.1);
    background:#191919;
    color:#fff;
    cursor:pointer;
    transition:.25s ease;
}

.sample10-modal-close:hover{
    color:var(--yellow);
    border-color:var(--yellow);
}

.sample10-modal-close svg{
    width:19px;
    height:19px;
}


/* ============================================================
   MODAL INTRO
============================================================ */

.sample10-modal-intro{
    padding:52px 42px;
    background:
        radial-gradient(
            circle at 10% 5%,
            rgba(253,190,0,.14),
            transparent 42%
        ),
        #090909;
    border-right:1px solid rgba(255,255,255,.07);
}

.sample10-modal-mini{
    display:block;
    margin-bottom:16px;
    color:var(--yellow);
    font-size:10px;
    font-weight:900;
    letter-spacing:2px;
}

.sample10-modal-intro h2{
    margin:0;
    font-size:39px;
    line-height:1.1;
    font-weight:900;
}

.sample10-modal-intro h2 span{
    display:block;
    color:var(--yellow);
}

.sample10-modal-intro > p{
    margin:18px 0 0;
    color:var(--muted);
    font-size:13px;
    line-height:1.8;
}

.sample10-selected-resource{
    margin-top:29px;
    padding:20px;
    border-radius:17px;
    background:rgba(255,255,255,.035);
    border:1px solid rgba(255,255,255,.08);
}

.sample10-selected-resource > span{
    display:block;
    margin-bottom:8px;
    color:var(--yellow);
    font-size:9px;
    font-weight:900;
    letter-spacing:1.5px;
}

.sample10-selected-resource strong{
    display:block;
    color:#fff;
    line-height:1.5;
}

.sample10-selected-resource small{
    display:block;
    margin-top:6px;
    color:var(--muted);
}

.sample10-modal-points{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-top:27px;
}

.sample10-modal-points > div{
    display:flex;
    align-items:center;
    gap:9px;
    color:rgba(255,255,255,.68);
    font-size:12px;
}

.sample10-modal-points svg{
    width:16px;
    height:16px;
    color:var(--yellow);
}


/* ============================================================
   MODAL FORM
============================================================ */

.sample10-modal-form-wrap{
    padding:48px 40px 38px;
    background:#111;
}

.sample10-form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:0 15px;
}

.sample10-form-group{
    margin-bottom:16px;
}

.sample10-form-group label{
    display:block;
    margin-bottom:7px;
    color:rgba(255,255,255,.77);
    font-size:11px;
    font-weight:700;
}

.sample10-form-group input,
.sample10-form-group select{
    width:100%;
    height:49px;
    padding:0 14px;
    outline:none;
    border-radius:11px;
    border:1px solid rgba(255,255,255,.1);
    background:#080808;
    color:#fff;
    caret-color:#fff;
    transition:.2s ease;
}

.sample10-form-group input::placeholder{
    color:rgba(255,255,255,.28);
}

.sample10-form-group input:focus,
.sample10-form-group select:focus{
    border-color:rgba(253,190,0,.7);
}

.sample10-form-group select option{
    background:#111;
    color:#fff;
}

.sample10-form-group select:disabled{
    opacity:.75;
    cursor:not-allowed;
}

.sample10-full{
    width:100%;
}


/* ============================================================
   CONSENT
============================================================ */

.sample10-consent{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin:2px 0 15px;
    cursor:pointer;
}

.sample10-consent input{
    width:17px;
    height:17px;
    flex:0 0 17px;
    margin-top:2px;
    accent-color:var(--yellow);
}

.sample10-consent span{
    color:rgba(255,255,255,.48);
    font-size:10px;
    line-height:1.6;
}


/* ============================================================
   FORM RESPONSE
============================================================ */

.sample10-form-response{
    display:none;
    margin-bottom:14px;
    padding:11px 13px;
    border-radius:10px;
    font-size:11px;
    line-height:1.5;
}

.sample10-form-response.error{
    display:block;
    color:#ff9b9b;
    background:rgba(239,68,68,.08);
    border:1px solid rgba(239,68,68,.22);
}

.sample10-form-response.success{
    display:block;
    color:#8fe8ac;
    background:rgba(34,197,94,.08);
    border:1px solid rgba(34,197,94,.22);
}


/* ============================================================
   FORM SUBMIT
============================================================ */

.sample10-form-submit{
    width:100%;
    min-height:53px;
    padding:0 17px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    border:0;
    border-radius:13px;
    background:var(--yellow);
    color:#050505 !important;
    font-weight:900;
    cursor:pointer;
    transition:.25s ease;
}

.sample10-form-submit:hover{
    background:#ffd047;
}

.sample10-form-submit:disabled{
    opacity:.6;
    cursor:not-allowed;
}

.sample10-form-submit svg{
    width:17px;
    height:17px;
}

.sample10-form-privacy{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    margin:12px 0 0;
    color:rgba(255,255,255,.32);
    font-size:9px;
    line-height:1.5;
    text-align:center;
}

.sample10-form-privacy svg{
    width:14px;
    height:14px;
    flex-shrink:0;
}


/* ============================================================
   BODY MODAL STATE
============================================================ */

body.sample10-modal-open{
    overflow:hidden;
}


/* ============================================================
   CURSOR LIGHT
============================================================ */

.sample10-cursor-light{
    position:fixed;
    top:0;
    left:0;
    width:280px;
    height:280px;
    border-radius:50%;
    background:rgba(253,190,0,.065);
    filter:blur(80px);
    transform:translate(-50%,-50%);
    pointer-events:none;
    z-index:1;
    opacity:0;
    transition:opacity .25s ease;
}

.sample10-cursor-light.visible{
    opacity:1;
}


/* ============================================================
   REVEAL
============================================================ */

.sample10-reveal{
    opacity:0;
    transform:translateY(45px);
    transition:
        opacity .75s ease,
        transform .75s ease;
}

.sample10-reveal.active{
    opacity:1;
    transform:translateY(0);
}


/* ============================================================
   TABLET
============================================================ */

@media(max-width:1100px){

    .sample10-subject-tabs{
        grid-template-columns:repeat(3,1fr);
    }

    .sample10-papers-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .sample10-benefit-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .sample10-modal-dialog{
        grid-template-columns:1fr;
    }

    .sample10-modal-intro{
        border-right:0;
        border-bottom:1px solid rgba(255,255,255,.07);
    }
}


/* ============================================================
   SMALL TABLET
============================================================ */

@media(max-width:850px){

    .sample10-stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .sample10-library-top{
        align-items:flex-start;
        flex-direction:column;
    }

    .sample10-scroll-indicator{
        display:none;
    }
}


/* ============================================================
   MOBILE
============================================================ */

@media(max-width:650px){

    .sample10-container,
    .sample10-small-container{
        width:calc(100% - 30px);
    }


    /* HERO */

    .sample10-hero{
        min-height:auto;
    }

    .sample10-hero-content{
        padding:145px 0 110px;
    }

    .sample10-hero-title{
        font-size:clamp(48px,15vw,70px);
        letter-spacing:-2.5px;
    }

    .sample10-hero-description{
        font-size:15px;
        line-height:1.75;
    }

    .sample10-free-strip{
        width:100%;
    }

    .sample10-hero-actions{
        flex-direction:column;
        align-items:stretch;
    }

    .sample10-btn{
        width:100%;
    }


    /* STATS */

    .sample10-stats{
        margin-top:-42px;
    }

    .sample10-stats-grid{
        grid-template-columns:1fr 1fr;
        gap:11px;
    }

    .sample10-stat{
        min-height:135px;
        padding:20px 10px;
        border-radius:19px;
    }

    .sample10-stat strong{
        font-size:29px;
    }


    /* SECTION */

    .sample10-section,
    .sample10-library,
    .sample10-benefits,
    .sample10-faq{
        padding:80px 0;
    }

    .sample10-section-heading{
        margin-bottom:42px;
    }

    .sample10-section-heading h2{
        font-size:37px;
    }


    /* SUBJECT */

    .sample10-subject-tabs{
        grid-template-columns:1fr;
    }

    .sample10-subject-btn{
        min-height:auto;
        padding:17px;
    }


    /* PAPER */

    .sample10-papers-grid{
        grid-template-columns:1fr;
    }

    .sample10-cover-wrap{
        height:235px;
    }

    .sample10-paper-card > p{
        min-height:auto;
    }


    /* BENEFITS */

    .sample10-benefit-grid{
        grid-template-columns:1fr;
    }

    .sample10-benefit-card{
        min-height:auto;
    }


    /* CTA */

    .sample10-final-cta{
        padding:90px 0;
    }


    /* MODAL */

    .sample10-modal{
        padding:10px;
        align-items:flex-start;
        overflow-y:auto;
    }

    .sample10-modal-dialog{
        width:100%;
        max-height:none;
        margin:10px 0;
        border-radius:21px;
    }

    .sample10-modal-intro{
        padding:38px 22px 29px;
    }

    .sample10-modal-intro h2{
        font-size:30px;
    }

    .sample10-modal-form-wrap{
        padding:40px 20px 28px;
    }

    .sample10-form-grid{
        grid-template-columns:1fr;
    }

    .sample10-modal-close{
        top:11px;
        right:11px;
    }
}


/* ============================================================
   VERY SMALL MOBILE
============================================================ */

@media(max-width:390px){

    .sample10-stats-grid{
        grid-template-columns:1fr;
    }

    .sample10-hero-title{
        font-size:46px;
    }

    .sample10-section-heading h2{
        font-size:33px;
    }

    .sample10-cover-wrap{
        height:210px;
    }
}


/* ============================================================
   TOUCH DEVICE
============================================================ */

@media(hover:none), (pointer:coarse){

    .sample10-cursor-light{
        display:none !important;
    }
}


/* ============================================================
   REDUCED MOTION
============================================================ */

@media(prefers-reduced-motion:reduce){

    .sample10-reveal{
        opacity:1;
        transform:none;
        transition:none;
    }

    .sample10-paper-card,
    .sample10-cover-image,
    .sample10-btn,
    .sample10-subject-btn{
        transition:none;
    }
}




/* ============================================================
   CURSOR FINAL FIX
   Keep this at the VERY END of sample-paper-class-10.css
============================================================ */

/* Normal cursor should always remain visible */
html,
body,
.sample10-page,
.sample10-modal,
.sample10-modal-dialog,
.sample10-modal-intro,
.sample10-modal-form-wrap,
.sample10-paper-card,
.sample10-benefit-card,
.sample10-stat,
.sample10-selected-resource{
    cursor:default !important;
}

/* Clickable elements */
.sample10-page a,
.sample10-page button,
.sample10-download-btn,
.sample10-subject-btn,
.sample10-faq-question,
.sample10-modal-close,
.sample10-form-submit,
.sample10-consent,
.sample10-consent input,
.sample10-form-group select{
    cursor:pointer !important;
}

/* Text fields */
.sample10-form-group input{
    cursor:text !important;
}

/* Disabled controls */
.sample10-page button:disabled,
.sample10-form-group select:disabled,
.sample10-form-submit:disabled{
    cursor:not-allowed !important;
}

/* ============================================================
   YELLOW CURSOR LIGHT
============================================================ */

.sample10-cursor-light{
    position:fixed;
    top:0;
    left:0;

    width:280px;
    height:280px;

    border-radius:50%;

    background:rgba(253,190,0,.065);

    filter:blur(80px);

    transform:translate(-50%,-50%);

    /* VERY IMPORTANT:
       cursor light can never block mouse */
    pointer-events:none !important;

    user-select:none;

    z-index:1;

    opacity:0;

    transition:opacity .25s ease;

    /* Browser optimization */
    will-change:left, top, opacity;
}

.sample10-cursor-light.visible{
    opacity:1;
}

/* ============================================================
   MODAL CURSOR FIX
============================================================ */

body.sample10-modal-open{
    overflow:hidden;

    /* Do not hide system cursor */
    cursor:default !important;
}

.sample10-modal,
.sample10-modal *,
.sample10-modal-backdrop{
    cursor:default;
}

.sample10-modal button,
.sample10-modal select,
.sample10-modal label,
.sample10-modal input[type="checkbox"]{
    cursor:pointer !important;
}

.sample10-modal input[type="text"],
.sample10-modal input[type="email"],
.sample10-modal input[type="tel"],
.sample10-modal input:not([type]){
    cursor:text !important;
}

/* Modal backdrop must not affect cursor visibility */
.sample10-modal-backdrop{
    cursor:default !important;
}

/* ============================================================
   FORM CURSOR FIX
============================================================ */

.sample10-form-group input{
    caret-color:#ffffff !important;
}

.sample10-form-group input:focus{
    cursor:text !important;
}

.sample10-consent span{
    cursor:pointer !important;
}

/* ============================================================
   GLOBAL PROTECTION
   Prevent any old custom cursor CSS from hiding browser cursor
============================================================ */

.sample10-page,
.sample10-page *{
    /* Never inherit cursor:none from another stylesheet */
    cursor:auto;
}

.sample10-page a,
.sample10-page button,
.sample10-page [role="button"]{
    cursor:pointer !important;
}

.sample10-page input[type="text"],
.sample10-page input[type="email"],
.sample10-page input[type="tel"]{
    cursor:text !important;
}

/* ============================================================
   TOUCH DEVICES
============================================================ */

@media (hover:none), (pointer:coarse){

    .sample10-cursor-light{
        display:none !important;
    }

}

/* ============================================================
   DESKTOP ONLY CURSOR LIGHT
============================================================ */

@media (hover:hover) and (pointer:fine){

    .sample10-cursor-light{
        display:block;
    }

}