/* ============================================================
   AARSH INSTITUTE
   CLASS 12 SAMPLE PAPERS
   FINAL CSS
============================================================ */

.sample12-page{
    --sample12-yellow:#fdbe00;
    --sample12-red:#7a0c0f;
    --sample12-white:#ffffff;
    --sample12-black:#050505;
    --sample12-card:#111111;
    --sample12-border:rgba(255,255,255,.09);

    background:#050505;
    color:#ffffff;
    min-height:100vh;
    overflow:hidden;
    position:relative;
}

.sample12-page *,
.sample12-page *::before,
.sample12-page *::after{
    box-sizing:border-box;
}

.sample12-page a{
    color:inherit;
    text-decoration:none;
}

.sample12-page button,
.sample12-page input,
.sample12-page select{
    font:inherit;
}

.sample12-container{
    width:min(1280px,92%);
    margin:0 auto;
    position:relative;
    z-index:5;
}


/* ============================================================
   HERO
============================================================ */

.sample12-hero{
    min-height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:#050505;
}

.sample12-hero-bg{
    position:absolute;
    inset:0;
    z-index:0;
}

.sample12-hero-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:.20;
    display:block;
}

.sample12-hero-overlay{
    position:absolute;
    inset:0;
    z-index:1;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.94) 0%,
            rgba(0,0,0,.70) 50%,
            rgba(0,0,0,.65) 100%
        ),
        linear-gradient(
            to bottom,
            rgba(0,0,0,.25),
            rgba(5,5,5,.98)
        );
}

.sample12-hero-grid{
    position:absolute;
    inset:0;
    z-index:2;
    pointer-events:none;

    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;

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.8),
            transparent
        );
}

.sample12-hero-blob{
    position:absolute;
    width:520px;
    height:520px;
    border-radius:50%;
    filter:blur(130px);
    pointer-events:none;
    z-index:2;
}

.sample12-hero-blob-one{
    top:-230px;
    left:-200px;
    background:#fdbe00;
    opacity:.13;
}

.sample12-hero-blob-two{
    right:-230px;
    bottom:-220px;
    background:#7a0c0f;
    opacity:.25;
}

.sample12-hero-content{
    width:min(940px,100%);
    padding:180px 0 150px;
    position:relative;
    z-index:5;
}

.sample12-hero-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-height:44px;
    padding:10px 22px;

    border:1px solid rgba(253,190,0,.28);
    border-radius:999px;

    background:rgba(253,190,0,.07);

    color:#fdbe00;

    font-size:12px;
    font-weight:800;
    letter-spacing:3px;

    margin-bottom:30px;
}

.sample12-hero-title{
    margin:0;

    font-size:clamp(70px,9vw,128px);
    line-height:.88;
    letter-spacing:-5px;
    font-weight:900;

    color:#ffffff;
}

.sample12-hero-title span{
    display:block;
    color:#fdbe00;
    margin-top:10px;
}

.sample12-hero-subtitle{
    max-width:790px;
    margin:35px 0 0;

    font-size:21px;
    line-height:1.8;

    color:rgba(255,255,255,.68);
}

.sample12-hero-actions{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:16px;
    margin-top:42px;
}


/* ============================================================
   BUTTONS
============================================================ */

.sample12-primary-btn,
.sample12-secondary-btn{
    min-height:58px;
    padding:0 30px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    border-radius:999px;

    font-size:15px;
    font-weight:800;

    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease;
}

.sample12-primary-btn{
    background:#fdbe00;
    color:#050505 !important;
    border:1px solid #fdbe00;
}

.sample12-primary-btn:hover{
    transform:translateY(-3px);
    background:#ffd02e;
}

.sample12-secondary-btn{
    color:#ffffff !important;
    border:1px solid rgba(255,255,255,.15);
    background:rgba(255,255,255,.04);
}

.sample12-secondary-btn:hover{
    transform:translateY(-3px);
    border-color:rgba(253,190,0,.55);
}


/* ============================================================
   SCROLL INDICATOR
============================================================ */

.sample12-scroll-indicator{
    position:absolute;
    right:4%;
    bottom:45px;
    z-index:6;

    display:flex;
    align-items:center;
    gap:13px;

    color:rgba(255,255,255,.42);

    font-size:10px;
    font-weight:800;
    letter-spacing:3px;

    transform:rotate(90deg);
    transform-origin:right center;
}

.sample12-scroll-arrow{
    color:#fdbe00;
    font-size:18px;
}


/* ============================================================
   STATS
============================================================ */

.sample12-stats-section{
    position:relative;
    z-index:8;
    margin-top:-75px;
}

.sample12-stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.sample12-stat-card{
    min-height:190px;
    padding:35px 25px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.055),
            rgba(255,255,255,.018)
        ),
        #0d0d0d;

    border:1px solid rgba(255,255,255,.09);
    border-radius:28px;

    box-shadow:
        0 30px 70px rgba(0,0,0,.3);
}

.sample12-stat-card h3{
    margin:0 0 10px;

    font-size:48px;
    line-height:1;
    font-weight:900;

    color:#fdbe00;
}

.sample12-stat-card p{
    margin:0;

    color:rgba(255,255,255,.55);

    font-size:14px;
    font-weight:600;
}


/* ============================================================
   COMMON SECTION
============================================================ */

.sample12-section{
    position:relative;
    padding:140px 0;
}

.sample12-dark-section{
    background:#090909;
    border-top:1px solid rgba(255,255,255,.04);
    border-bottom:1px solid rgba(255,255,255,.04);
}

.sample12-section-heading{
    max-width:850px;
    margin:0 auto 70px;
    text-align:center;
}

.sample12-mini-title{
    display:block;
    margin-bottom:15px;

    color:#fdbe00;

    font-size:12px;
    font-weight:900;
    letter-spacing:4px;
}

.sample12-section-heading h2,
.sample12-final-content h2{
    margin:0;

    color:#ffffff;

    font-size:clamp(45px,5.2vw,70px);
    line-height:1.04;
    letter-spacing:-2.5px;
    font-weight:900;
}

.sample12-section-heading h2 span,
.sample12-final-content h2 span{
    color:#fdbe00;
}

.sample12-section-heading p{
    max-width:680px;
    margin:22px auto 0;

    color:rgba(255,255,255,.55);

    font-size:17px;
    line-height:1.8;
}


/* ============================================================
   SUBJECTS
============================================================ */

.sample12-subject-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.sample12-subject-card{
    position:relative;
    min-height:230px;
    padding:35px;

    display:flex;
    flex-direction:column;
    justify-content:flex-end;

    overflow:hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.012)
        ),
        #0e0e0e;

    border:1px solid rgba(255,255,255,.08);
    border-radius:28px;

    transition:
        transform .35s ease,
        border-color .35s ease,
        background .35s ease;
}

.sample12-subject-card::before{
    content:"";

    position:absolute;
    width:150px;
    height:150px;

    right:-80px;
    top:-80px;

    border-radius:50%;

    background:#fdbe00;
    filter:blur(70px);
    opacity:.06;

    transition:opacity .35s ease;
}

.sample12-subject-card:hover{
    transform:translateY(-8px);
    border-color:rgba(253,190,0,.5);
}

.sample12-subject-card:hover::before{
    opacity:.14;
}

.sample12-subject-number{
    position:absolute;
    top:28px;
    right:30px;

    color:rgba(253,190,0,.38);

    font-size:40px;
    line-height:1;
    font-weight:900;
}

.sample12-subject-card h3{
    margin:0 0 12px;

    color:#fdbe00;

    font-size:25px;
    font-weight:850;
}

.sample12-subject-card p{
    margin:0;

    color:rgba(255,255,255,.55);

    font-size:14px;
    line-height:1.7;
}


/* ============================================================
   PAPERS SECTION
============================================================ */

.sample12-papers-section{
    background:#080808;
}

.sample12-paper-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}


/* ============================================================
   PAPER CARD
============================================================ */

.sample12-paper-card{
    overflow:hidden;

    display:flex;
    flex-direction:column;

    background:#101010;

    border:1px solid rgba(255,255,255,.08);
    border-radius:30px;

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.sample12-paper-card:hover{
    transform:translateY(-8px);

    border-color:rgba(253,190,0,.45);

    box-shadow:
        0 30px 80px rgba(0,0,0,.4);
}


/* ============================================================
   COVER IMAGE
============================================================ */

.sample12-paper-cover{
    height:280px;
    position:relative;
    overflow:hidden;
    background:#171717;
}

.sample12-paper-cover img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;

    transition:transform .6s ease;
}

.sample12-paper-card:hover
.sample12-paper-cover img{
    transform:scale(1.045);
}

.sample12-paper-cover::after{
    content:"";

    position:absolute;
    inset:0;

    pointer-events:none;

    background:
        linear-gradient(
            to bottom,
            transparent 55%,
            rgba(0,0,0,.6)
        );
}

.sample12-cover-placeholder{
    width:100%;
    height:100%;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;

    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(253,190,0,.11),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #161616,
            #090909
        );
}

.sample12-cover-placeholder span{
    color:rgba(255,255,255,.5);

    font-size:12px;
    font-weight:800;
    letter-spacing:4px;

    margin-bottom:10px;
}

.sample12-cover-placeholder strong{
    max-width:250px;

    color:#fdbe00;

    font-size:30px;
    line-height:1.1;
    font-weight:900;
}

.sample12-cover-badge{
    position:absolute;
    top:20px;
    left:20px;
    z-index:4;

    padding:9px 14px;

    border-radius:999px;

    background:#fdbe00;
    color:#050505;

    font-size:10px;
    font-weight:900;
    letter-spacing:1.5px;
}


/* ============================================================
   PAPER BODY
============================================================ */

.sample12-paper-body{
    padding:30px;

    display:flex;
    flex-direction:column;
    flex:1;
}

.sample12-paper-subject{
    display:inline-flex;
    align-self:flex-start;

    padding:8px 13px;
    margin-bottom:18px;

    border:1px solid rgba(253,190,0,.2);
    border-radius:999px;

    background:rgba(253,190,0,.055);

    color:#fdbe00;

    font-size:10px;
    font-weight:900;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

.sample12-paper-body h3{
    margin:0 0 14px;

    color:#ffffff;

    font-size:24px;
    line-height:1.25;
    font-weight:850;
}

.sample12-paper-body > p{
    margin:0 0 24px;

    color:rgba(255,255,255,.52);

    font-size:14px;
    line-height:1.75;

    flex:1;
}

.sample12-paper-meta{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;

    padding:16px 0;
    margin-bottom:18px;

    border-top:1px solid rgba(255,255,255,.07);
    border-bottom:1px solid rgba(255,255,255,.07);

    color:rgba(255,255,255,.38);

    font-size:11px;
    font-weight:700;
    letter-spacing:.5px;
}


/* ============================================================
   DOWNLOAD BUTTON
============================================================ */

.sample12-download-btn{
    width:100%;
    min-height:56px;

    padding:0 20px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;

    border:0;
    border-radius:16px;

    background:#fdbe00;
    color:#050505;

    font-size:14px;
    font-weight:900;

    transition:
        transform .25s ease,
        background .25s ease;

    cursor:pointer !important;
}

.sample12-download-btn:hover{
    background:#ffd02e;
    transform:translateY(-2px);
}


/* ============================================================
   EMPTY STATE
============================================================ */

.sample12-empty-state{
    max-width:700px;
    margin:0 auto;

    padding:65px 40px;

    text-align:center;

    background:#101010;

    border:1px solid rgba(255,255,255,.08);
    border-radius:30px;
}

.sample12-empty-label{
    display:inline-block;

    margin-bottom:15px;

    color:#fdbe00;

    font-size:11px;
    font-weight:900;
    letter-spacing:3px;
}

.sample12-empty-state h3{
    margin:0 0 15px;

    color:#ffffff;

    font-size:35px;
}

.sample12-empty-state p{
    max-width:500px;
    margin:0 auto;

    color:rgba(255,255,255,.5);

    line-height:1.8;
}


/* ============================================================
   FEATURES
============================================================ */

.sample12-feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.sample12-feature-card{
    position:relative;
    min-height:260px;

    padding:38px;

    overflow:hidden;

    background:#101010;

    border:1px solid rgba(255,255,255,.08);
    border-radius:28px;

    transition:
        transform .35s ease,
        border-color .35s ease;
}

.sample12-feature-card:hover{
    transform:translateY(-7px);
    border-color:rgba(253,190,0,.42);
}

.sample12-feature-card > span{
    display:block;
    margin-bottom:45px;

    color:rgba(253,190,0,.35);

    font-size:46px;
    font-weight:900;
}

.sample12-feature-card h3{
    margin:0 0 13px;

    color:#fdbe00;

    font-size:23px;
}

.sample12-feature-card p{
    margin:0;

    color:rgba(255,255,255,.52);

    line-height:1.75;
}


/* ============================================================
   FINAL CTA
============================================================ */

.sample12-final-cta{
    position:relative;
    padding:160px 0;

    overflow:hidden;

    text-align:center;

    background:
        radial-gradient(
            circle at center,
            rgba(122,12,15,.2),
            transparent 45%
        ),
        #050505;
}

.sample12-final-cta::before{
    content:"";

    position:absolute;
    width:500px;
    height:500px;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    border-radius:50%;

    background:#fdbe00;
    filter:blur(170px);
    opacity:.04;

    pointer-events:none;
}

.sample12-final-content{
    position:relative;
    z-index:2;

    max-width:850px;
    margin:0 auto;
}

.sample12-final-content p{
    max-width:620px;
    margin:25px auto 35px;

    color:rgba(255,255,255,.55);

    font-size:17px;
    line-height:1.8;
}


/* ============================================================
   MODAL
============================================================ */

.sample12-modal{
    position:fixed;
    inset:0;

    z-index:999999;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:30px;

    opacity:0;
    visibility:hidden;

    pointer-events:none;

    transition:
        opacity .25s ease,
        visibility .25s ease;
}

.sample12-modal.active{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

.sample12-modal-backdrop{
    position:absolute;
    inset:0;

    background:rgba(0,0,0,.82);

    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
}

.sample12-modal-dialog{
    position:relative;
    z-index:2;

    width:min(1080px,100%);
    max-height:calc(100vh - 60px);

    display:grid;
    grid-template-columns:.88fr 1.12fr;

    overflow:auto;

    background:#0d0d0d;

    border:1px solid rgba(255,255,255,.1);
    border-radius:30px;

    box-shadow:
        0 40px 120px rgba(0,0,0,.7);

    transform:translateY(20px) scale(.985);

    transition:transform .3s ease;
}

.sample12-modal.active
.sample12-modal-dialog{
    transform:translateY(0) scale(1);
}


/* ============================================================
   MODAL CLOSE
============================================================ */

.sample12-modal-close{
    position:absolute;
    top:18px;
    right:18px;

    z-index:20;

    width:44px;
    height:44px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:0;

    border:1px solid rgba(255,255,255,.1);
    border-radius:50%;

    background:#171717;
    color:#ffffff;

    font-size:27px;
    line-height:1;

    cursor:pointer !important;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}

.sample12-modal-close:hover{
    background:#fdbe00;
    color:#050505;
    transform:rotate(90deg);
}


/* ============================================================
   MODAL INTRO
============================================================ */

.sample12-modal-intro{
    position:relative;
    overflow:hidden;

    padding:65px 48px;

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(253,190,0,.11),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #141414,
            #090909
        );

    border-right:1px solid rgba(255,255,255,.07);
}

.sample12-modal-intro::after{
    content:"12";

    position:absolute;
    right:-25px;
    bottom:-55px;

    color:rgba(255,255,255,.018);

    font-size:260px;
    line-height:1;
    font-weight:900;

    pointer-events:none;
}

.sample12-modal-kicker{
    display:block;
    margin-bottom:16px;

    color:#fdbe00;

    font-size:10px;
    font-weight:900;
    letter-spacing:3px;
}

.sample12-modal-intro h2{
    position:relative;
    z-index:2;

    margin:0;

    color:#ffffff;

    font-size:44px;
    line-height:1.05;
    letter-spacing:-1.5px;
}

.sample12-modal-intro h2 span{
    display:block;
    color:#fdbe00;
}

.sample12-modal-intro > p{
    position:relative;
    z-index:2;

    margin:22px 0 28px;

    color:rgba(255,255,255,.55);

    line-height:1.75;
}


/* ============================================================
   SELECTED RESOURCE
============================================================ */

.sample12-selected-resource{
    position:relative;
    z-index:2;

    padding:20px;
    margin-bottom:28px;

    background:rgba(255,255,255,.035);

    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
}

.sample12-selected-resource > span{
    display:block;
    margin-bottom:8px;

    color:rgba(255,255,255,.35);

    font-size:9px;
    font-weight:900;
    letter-spacing:2px;
}

.sample12-selected-resource strong{
    display:block;

    color:#ffffff;

    font-size:16px;
    line-height:1.4;
}

.sample12-selected-resource small{
    display:block;
    margin-top:6px;

    color:#fdbe00;

    font-size:12px;
    font-weight:700;
}


/* ============================================================
   MODAL BENEFITS
============================================================ */

.sample12-modal-benefits{
    position:relative;
    z-index:2;

    list-style:none;

    padding:0;
    margin:0;

    display:flex;
    flex-direction:column;
    gap:13px;
}

.sample12-modal-benefits li{
    display:flex;
    align-items:center;
    gap:10px;

    color:rgba(255,255,255,.58);

    font-size:13px;
}

.sample12-modal-benefits li span{
    width:24px;
    height:24px;

    display:flex;
    align-items:center;
    justify-content:center;

    flex:0 0 24px;

    border-radius:50%;

    background:rgba(253,190,0,.1);

    color:#fdbe00;

    font-size:11px;
    font-weight:900;
}


/* ============================================================
   FORM SIDE
============================================================ */

.sample12-modal-form-wrap{
    padding:65px 48px 48px;
    background:#0d0d0d;
}

.sample12-form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

.sample12-form-group{
    margin-bottom:18px;
}

.sample12-form-group label{
    display:block;

    margin-bottom:8px;

    color:rgba(255,255,255,.7);

    font-size:12px;
    font-weight:750;
}

.sample12-form-group input,
.sample12-form-group select{
    width:100%;
    height:52px;

    padding:0 16px;

    outline:none;

    border:1px solid rgba(255,255,255,.09);
    border-radius:13px;

    background:#151515;
    color:#ffffff;

    font-size:14px;

    transition:
        border-color .2s ease,
        background .2s ease;
}

.sample12-form-group input::placeholder{
    color:rgba(255,255,255,.28);
}

.sample12-form-group input:focus,
.sample12-form-group select:focus{
    border-color:rgba(253,190,0,.7);
    background:#181818;
}

.sample12-form-group input[readonly]{
    color:#fdbe00;
    background:#121212;
}

.sample12-form-group select{
    cursor:pointer !important;
}

.sample12-form-group select option{
    background:#151515;
    color:#ffffff;
}


/* ============================================================
   PHONE FIELD
============================================================ */

.sample12-phone-field{
    display:flex;
    align-items:center;

    height:52px;

    overflow:hidden;

    background:#151515;

    border:1px solid rgba(255,255,255,.09);
    border-radius:13px;

    transition:border-color .2s ease;
}

.sample12-phone-field:focus-within{
    border-color:rgba(253,190,0,.7);
}

.sample12-country-code{
    height:100%;

    padding:0 13px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-right:1px solid rgba(255,255,255,.08);

    color:#fdbe00;

    font-size:13px;
    font-weight:800;
}

.sample12-phone-field input{
    height:100% !important;

    border:0 !important;
    border-radius:0 !important;

    background:transparent !important;
}


/* ============================================================
   CONSENT
============================================================ */

.sample12-consent{
    display:flex;
    align-items:flex-start;
    gap:11px;

    margin:5px 0 18px;

    cursor:pointer !important;
}

.sample12-consent input{
    width:17px;
    height:17px;

    flex:0 0 17px;

    margin-top:2px;

    accent-color:#fdbe00;

    cursor:pointer !important;
}

.sample12-consent span{
    color:rgba(255,255,255,.42);

    font-size:11px;
    line-height:1.55;

    cursor:pointer !important;
}


/* ============================================================
   FORM MESSAGE
============================================================ */

.sample12-form-message{
    display:none;

    margin-bottom:16px;
    padding:12px 14px;

    border-radius:11px;

    font-size:12px;
    line-height:1.5;
}

.sample12-form-message.error{
    display:block;

    color:#ffb8b8;

    background:rgba(255,60,60,.08);

    border:1px solid rgba(255,80,80,.18);
}

.sample12-form-message.success{
    display:block;

    color:#bfffc5;

    background:rgba(50,200,90,.08);

    border:1px solid rgba(70,220,100,.18);
}


/* ============================================================
   FORM SUBMIT
============================================================ */

.sample12-form-submit{
    width:100%;
    min-height:56px;

    padding:0 20px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    border:0;
    border-radius:14px;

    background:#fdbe00;
    color:#050505;

    font-size:14px;
    font-weight:900;

    cursor:pointer !important;

    transition:
        background .25s ease,
        transform .25s ease,
        opacity .25s ease;
}

.sample12-form-submit:hover{
    background:#ffd02e;
    transform:translateY(-2px);
}

.sample12-form-submit:disabled{
    opacity:.6;
    transform:none;
    cursor:not-allowed !important;
}

.sample12-submit-icon{
    font-size:18px;
}


/* ============================================================
   SECURITY NOTE
============================================================ */

.sample12-security-note{
    margin-top:14px;

    display:flex;
    align-items:flex-start;
    justify-content:center;
    gap:7px;

    text-align:center;

    color:rgba(255,255,255,.28);

    font-size:10px;
    line-height:1.5;
}

.sample12-security-note span{
    color:#fdbe00;
}


/* ============================================================
   REVEAL
============================================================ */

.sample12-reveal{
    opacity:0;
    transform:translateY(45px);

    transition:
        opacity .8s ease,
        transform .8s ease;
}

.sample12-reveal.active{
    opacity:1;
    transform:translateY(0);
}


/* ============================================================
   CURSOR LIGHT
============================================================ */

.sample12-cursor-light{
    position:fixed;
    top:0;
    left:0;

    width:280px;
    height:280px;

    border-radius:50%;

    background:rgba(253,190,0,.06);

    filter:blur(80px);

    transform:translate(-50%,-50%);

    pointer-events:none !important;
    user-select:none;

    z-index:1;

    opacity:0;

    transition:opacity .2s ease;

    will-change:left,top,opacity;
}

.sample12-cursor-light.visible{
    opacity:1;
}


/* ============================================================
   CURSOR FINAL PROTECTION

   IMPORTANT:
   Browser cursor is NEVER hidden.
============================================================ */

html,
body,
.sample12-page,
.sample12-page *,
.sample12-modal,
.sample12-modal *{
    cursor:auto;
}

.sample12-page a,
.sample12-page button,
.sample12-download-btn,
.sample12-primary-btn,
.sample12-secondary-btn,
.sample12-subject-card,
.sample12-modal-close,
.sample12-form-submit,
.sample12-consent,
.sample12-consent *,
.sample12-form-group select{
    cursor:pointer !important;
}

.sample12-form-group input[type="text"],
.sample12-form-group input[type="email"],
.sample12-form-group input[type="tel"]{
    cursor:text !important;
}

.sample12-form-group input[readonly]{
    cursor:default !important;
}

.sample12-form-group input{
    caret-color:#ffffff;
}

body.sample12-modal-open{
    cursor:default !important;
    overflow:hidden;
}

body.sample12-modal-open *,
.sample12-modal,
.sample12-modal-dialog,
.sample12-modal-form-wrap,
.sample12-modal-intro{
    cursor:auto;
}

body.sample12-modal-open button,
body.sample12-modal-open select,
body.sample12-modal-open label,
body.sample12-modal-open input[type="checkbox"]{
    cursor:pointer !important;
}

body.sample12-modal-open input[type="text"],
body.sample12-modal-open input[type="email"],
body.sample12-modal-open input[type="tel"]{
    cursor:text !important;
}


/* ============================================================
   TABLET
============================================================ */

@media(max-width:1100px){

    .sample12-paper-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .sample12-subject-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .sample12-modal-dialog{
        grid-template-columns:.9fr 1.1fr;
    }

    .sample12-modal-intro,
    .sample12-modal-form-wrap{
        padding-left:35px;
        padding-right:35px;
    }

}


/* ============================================================
   TABLET / MOBILE
============================================================ */

@media(max-width:850px){

    .sample12-hero-content{
        padding-top:150px;
    }

    .sample12-hero-title{
        letter-spacing:-3px;
    }

    .sample12-stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .sample12-feature-grid{
        grid-template-columns:1fr;
    }

    .sample12-modal{
        padding:15px;
        align-items:flex-start;
        overflow-y:auto;
    }

    .sample12-modal-dialog{
        grid-template-columns:1fr;
        max-height:none;
        margin:auto 0;
    }

    .sample12-modal-intro{
        border-right:0;
        border-bottom:1px solid rgba(255,255,255,.07);
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media(max-width:650px){

    .sample12-container{
        width:min(100% - 32px,1280px);
    }

    .sample12-hero{
        min-height:92vh;
    }

    .sample12-hero-content{
        padding:140px 0 120px;
    }

    .sample12-hero-badge{
        font-size:9px;
        letter-spacing:2px;
        padding:9px 15px;
    }

    .sample12-hero-title{
        font-size:clamp(52px,16vw,75px);
        letter-spacing:-3px;
    }

    .sample12-hero-subtitle{
        margin-top:25px;
        font-size:16px;
        line-height:1.7;
    }

    .sample12-hero-actions{
        flex-direction:column;
        align-items:stretch;
    }

    .sample12-primary-btn,
    .sample12-secondary-btn{
        width:100%;
    }

    .sample12-scroll-indicator{
        display:none;
    }

    .sample12-stats-section{
        margin-top:-45px;
    }

    .sample12-stats-grid{
        grid-template-columns:1fr 1fr;
        gap:12px;
    }

    .sample12-stat-card{
        min-height:145px;
        padding:25px 12px;
        border-radius:20px;
    }

    .sample12-stat-card h3{
        font-size:34px;
    }

    .sample12-stat-card p{
        font-size:11px;
    }

    .sample12-section{
        padding:95px 0;
    }

    .sample12-section-heading{
        margin-bottom:45px;
    }

    .sample12-section-heading h2,
    .sample12-final-content h2{
        font-size:42px;
        letter-spacing:-1.5px;
    }

    .sample12-section-heading p{
        font-size:15px;
    }

    .sample12-subject-grid,
    .sample12-paper-grid{
        grid-template-columns:1fr;
    }

    .sample12-subject-card{
        min-height:200px;
        padding:28px;
    }

    .sample12-paper-cover{
        height:250px;
    }

    .sample12-paper-body{
        padding:25px;
    }

    .sample12-final-cta{
        padding:110px 0;
    }

    .sample12-modal{
        padding:10px;
    }

    .sample12-modal-dialog{
        border-radius:22px;
    }

    .sample12-modal-intro{
        padding:55px 25px 35px;
    }

    .sample12-modal-intro h2{
        font-size:36px;
    }

    .sample12-modal-form-wrap{
        padding:35px 22px 28px;
    }

    .sample12-form-row{
        grid-template-columns:1fr;
        gap:0;
    }

    .sample12-modal-close{
        top:12px;
        right:12px;

        width:40px;
        height:40px;
    }

}


/* ============================================================
   VERY SMALL MOBILE
============================================================ */

@media(max-width:400px){

    .sample12-stats-grid{
        grid-template-columns:1fr;
    }

    .sample12-hero-title{
        font-size:50px;
    }

    .sample12-section-heading h2,
    .sample12-final-content h2{
        font-size:36px;
    }

}


/* ============================================================
   TOUCH DEVICE
   Disable decorative cursor light only.
   Browser cursor behavior is untouched.
============================================================ */

@media(hover:none), (pointer:coarse){

    .sample12-cursor-light{
        display:none !important;
    }

}


/* ============================================================
   REDUCED MOTION
============================================================ */

@media(prefers-reduced-motion:reduce){

    .sample12-reveal{
        opacity:1;
        transform:none;
        transition:none;
    }

    .sample12-page *,
    .sample12-page *::before,
    .sample12-page *::after{
        scroll-behavior:auto !important;
    }

}