/* ============================================================
   AARSH INSTITUTE
   CLASS 12 PYQ
   FINAL CSS
============================================================ */


/* ============================================================
   PAGE
============================================================ */

.pyq12-page{
    background:#050505;
    color:#ffffff;
    overflow:hidden;
    position:relative;
}

.pyq12-page *,
.pyq12-download-modal *{
    box-sizing:border-box;
}

.pyq12-page a{
    text-decoration:none;
    color:inherit;
}

.container{
    width:min(1280px,92%);
    margin:0 auto;
    position:relative;
    z-index:5;
}

.container-small{
    width:min(900px,92%);
    margin:0 auto;
    position:relative;
    z-index:5;
}

.pyq12-section-padding{
    padding:130px 0;
    position:relative;
}

.pyq12-dark-section{
    background:#0a0a0a;
}


/* ============================================================
   HERO
============================================================ */

.pyq12-hero{
    min-height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.pyq12-hero-bg{
    position:absolute;
    inset:0;
    z-index:0;
}

.pyq12-hero-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:.22;
}

.pyq12-hero-overlay{
    position:absolute;
    inset:0;
    z-index:1;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.92) 0%,
            rgba(0,0,0,.74) 48%,
            rgba(0,0,0,.48) 100%
        ),
        linear-gradient(
            to bottom,
            rgba(0,0,0,.20),
            rgba(5,5,5,.98)
        );
}

.pyq12-hero-grid{
    position:absolute;
    inset:0;
    z-index:1;

    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;
}

.pyq12-hero-blob{
    position:absolute;
    width:520px;
    height:520px;
    border-radius:50%;
    filter:blur(130px);
    pointer-events:none;
    z-index:1;
}

.pyq12-hero-blob-one{
    top:-220px;
    left:-180px;
    background:#fdbe00;
    opacity:.13;
}

.pyq12-hero-blob-two{
    right:-200px;
    bottom:-220px;
    background:#7a0c0f;
    opacity:.22;
}

.pyq12-hero-content{
    max-width:940px;
    position:relative;
    z-index:5;
    padding:160px 0 120px;
}

.pyq12-hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:11px 20px;

    border:1px solid rgba(253,190,0,.28);
    border-radius:999px;

    background:rgba(253,190,0,.06);

    color:#fdbe00;

    font-size:13px;
    font-weight:800;
    letter-spacing:2px;

    margin-bottom:28px;
}

.pyq12-hero-badge svg{
    width:17px;
    height:17px;
}

.pyq12-hero-title{
    margin:0;
    font-size:clamp(70px,9vw,125px);
    line-height:.92;
    letter-spacing:-5px;
    font-weight:900;
}

.pyq12-hero-title span{
    display:block;
    color:#fdbe00;
}

.pyq12-hero-subtitle{
    max-width:780px;
    margin:30px 0 0;

    font-size:21px;
    line-height:1.8;

    color:rgba(255,255,255,.68);
}

.pyq12-hero-buttons{
    display:flex;
    align-items:center;
    gap:16px;
    flex-wrap:wrap;
    margin-top:40px;
}


/* ============================================================
   BUTTONS
============================================================ */

.pyq12-primary-btn,
.pyq12-secondary-btn{
    min-height:58px;

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    padding:0 30px;

    border-radius:999px;

    font-size:15px;
    font-weight:800;

    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease;
}

.pyq12-primary-btn{
    background:#fdbe00;
    color:#090909 !important;
    border:1px solid #fdbe00;
}

.pyq12-primary-btn:hover{
    transform:translateY(-3px);
    background:#ffd142;
}

.pyq12-secondary-btn{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.14);
    color:#fff !important;
}

.pyq12-secondary-btn:hover{
    transform:translateY(-3px);
    border-color:rgba(253,190,0,.55);
}

.pyq12-primary-btn svg,
.pyq12-secondary-btn svg{
    width:18px;
    height:18px;
}


/* ============================================================
   STATS
============================================================ */

.pyq12-stats-section{
    position:relative;
    z-index:10;
    margin-top:-70px;
}

.pyq12-stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.pyq12-stat-card{
    min-height:220px;

    padding:32px 25px;

    background:
        linear-gradient(
            145deg,
            #141414,
            #0c0c0c
        );

    border:1px solid rgba(255,255,255,.08);
    border-radius:26px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;

    box-shadow:0 25px 60px rgba(0,0,0,.28);

    transition:
        transform .35s ease,
        border-color .35s ease;
}

.pyq12-stat-card:hover{
    transform:translateY(-7px);
    border-color:rgba(253,190,0,.42);
}

.pyq12-stat-icon{
    width:48px;
    height:48px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:15px;

    background:rgba(253,190,0,.08);
    color:#fdbe00;

    margin-bottom:16px;
}

.pyq12-stat-icon svg{
    width:22px;
    height:22px;
}

.pyq12-stat-card h3{
    margin:0;
    font-size:48px;
    line-height:1;
    color:#fdbe00;
    font-weight:900;
}

.pyq12-stat-card p{
    margin:12px 0 0;
    color:rgba(255,255,255,.58);
    font-size:14px;
}


/* ============================================================
   SECTION HEADING
============================================================ */

.pyq12-section-heading{
    max-width:900px;
    margin:0 auto 65px;
    text-align:center;
}

.pyq12-mini-title{
    display:block;
    margin-bottom:14px;

    color:#fdbe00;

    font-size:13px;
    font-weight:800;
    letter-spacing:3px;
}

.pyq12-section-heading h2{
    margin:0;

    font-size:clamp(40px,5vw,66px);
    line-height:1.08;

    letter-spacing:-2px;
    font-weight:900;
}

.pyq12-section-heading h2 span{
    color:#fdbe00;
}

.pyq12-section-heading p{
    max-width:720px;
    margin:20px auto 0;

    color:rgba(255,255,255,.58);

    font-size:17px;
    line-height:1.8;
}


/* ============================================================
   SUBJECT GRID
============================================================ */

.pyq12-subject-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.pyq12-subject-card{
    min-height:120px;

    padding:25px;

    display:flex;
    align-items:center;
    gap:18px;

    background:#101010;

    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;

    transition:
        transform .35s ease,
        border-color .35s ease,
        background .35s ease;
}

.pyq12-subject-card:hover{
    transform:translateY(-5px);
    border-color:rgba(253,190,0,.45);
    background:#131313;
}

.pyq12-subject-icon{
    width:50px;
    height:50px;
    flex:0 0 50px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:15px;

    background:rgba(253,190,0,.08);
    color:#fdbe00;
}

.pyq12-subject-icon svg{
    width:22px;
    height:22px;
}

.pyq12-subject-card h3{
    margin:0 0 5px;
    font-size:18px;
    color:#fff;
}

.pyq12-subject-card p{
    margin:0;
    color:rgba(255,255,255,.5);
    font-size:13px;
}

.pyq12-subject-arrow{
    width:18px;
    height:18px;
    margin-left:auto;
    color:#fdbe00;
}


/* ============================================================
   PYQ PAPER GRID
============================================================ */

.pyq12-paper-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:28px;
}

.pyq12-paper-card{
    overflow:hidden;

    background:#101010;

    border:1px solid rgba(255,255,255,.08);
    border-radius:28px;

    box-shadow:0 25px 70px rgba(0,0,0,.25);

    transition:
        transform .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;
}

.pyq12-paper-card:hover{
    transform:translateY(-8px);
    border-color:rgba(253,190,0,.4);
    box-shadow:0 32px 80px rgba(0,0,0,.38);
}


/* ============================================================
   PAPER COVER
============================================================ */

.pyq12-paper-cover{
    height:270px;
    position:relative;
    overflow:hidden;
    background:#090909;
}

.pyq12-paper-cover img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;

    transition:transform .55s ease;
}

.pyq12-paper-card:hover .pyq12-paper-cover img{
    transform:scale(1.045);
}

.pyq12-paper-cover::after{
    content:"";

    position:absolute;
    inset:0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.58),
            transparent 55%
        );

    pointer-events:none;
}

.pyq12-cover-placeholder{
    width:100%;
    height:100%;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:14px;

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(253,190,0,.12),
            transparent 45%
        ),
        #0d0d0d;

    color:#fdbe00;
}

.pyq12-cover-placeholder svg{
    width:50px;
    height:50px;
}

.pyq12-cover-placeholder span{
    font-size:13px;
    font-weight:800;
    letter-spacing:2px;
}

.pyq12-cover-subject{
    position:absolute;
    left:18px;
    bottom:18px;
    z-index:3;

    max-width:calc(100% - 36px);

    padding:8px 13px;

    background:#fdbe00;
    color:#090909;

    border-radius:999px;

    font-size:12px;
    line-height:1.2;
    font-weight:900;
}


/* ============================================================
   PAPER CONTENT
============================================================ */

.pyq12-paper-content{
    padding:28px;
}

.pyq12-paper-class{
    margin-bottom:12px;

    color:#fdbe00;

    font-size:11px;
    font-weight:900;
    letter-spacing:2px;
}

.pyq12-paper-content h3{
    margin:0;

    font-size:23px;
    line-height:1.3;

    color:#fff;
}

.pyq12-paper-description{
    margin:14px 0 0;

    color:rgba(255,255,255,.56);

    font-size:14px;
    line-height:1.7;
}

.pyq12-paper-meta{
    display:flex;
    flex-wrap:wrap;
    gap:10px;

    margin-top:20px;
}

.pyq12-paper-meta span{
    display:inline-flex;
    align-items:center;
    gap:7px;

    padding:8px 11px;

    background:rgba(255,255,255,.035);

    border:1px solid rgba(255,255,255,.07);
    border-radius:10px;

    color:rgba(255,255,255,.65);

    font-size:12px;
}

.pyq12-paper-meta svg{
    width:14px;
    height:14px;
    color:#fdbe00;
}

.pyq12-paper-divider{
    height:1px;
    margin:23px 0;

    background:rgba(255,255,255,.07);
}

.pyq12-paper-bottom{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.pyq12-file-info{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    flex-wrap:wrap;
}

.pyq12-file-info span{
    display:inline-flex;
    align-items:center;
    gap:7px;

    color:rgba(255,255,255,.5);
    font-size:12px;
}

.pyq12-file-info svg{
    width:15px;
    height:15px;
    color:#fdbe00;
}


/* ============================================================
   DOWNLOAD BUTTON
============================================================ */

.pyq12-download-btn{
    width:100%;
    min-height:55px;

    border:0;
    outline:none;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;

    padding:0 20px;

    border-radius:14px;

    background:#fdbe00;
    color:#090909;

    font-family:inherit;
    font-size:14px;
    font-weight:900;

    cursor:pointer;

    transition:
        transform .3s ease,
        background .3s ease;
}

.pyq12-download-btn:hover{
    transform:translateY(-2px);
    background:#ffd142;
}

.pyq12-download-btn span{
    display:flex;
    align-items:center;
    gap:9px;
}

.pyq12-download-btn svg{
    width:18px;
    height:18px;
}


/* ============================================================
   EMPTY STATES
============================================================ */

.pyq12-empty-state{
    max-width:760px;
    margin:auto;

    padding:70px 40px;

    text-align:center;

    background:#101010;

    border:1px solid rgba(255,255,255,.08);
    border-radius:28px;
}

.pyq12-empty-icon{
    width:72px;
    height:72px;

    margin:0 auto 22px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:22px;

    background:rgba(253,190,0,.08);
    color:#fdbe00;
}

.pyq12-empty-icon svg{
    width:32px;
    height:32px;
}

.pyq12-empty-state h3{
    margin:0;
    font-size:28px;
}

.pyq12-empty-state p{
    max-width:580px;
    margin:15px auto 0;

    color:rgba(255,255,255,.55);

    line-height:1.8;
}

.pyq12-empty-small{
    max-width:650px;
    margin:auto;

    padding:35px;

    text-align:center;

    background:#101010;

    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
}

.pyq12-empty-small svg{
    width:30px;
    height:30px;
    color:#fdbe00;
    margin-bottom:10px;
}

.pyq12-empty-small p{
    margin:0;
    color:rgba(255,255,255,.55);
}


/* ============================================================
   FEATURES
============================================================ */

.pyq12-feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.pyq12-feature-card{
    min-height:250px;

    padding:34px;

    background:#101010;

    border:1px solid rgba(255,255,255,.08);
    border-radius:25px;

    transition:
        transform .35s ease,
        border-color .35s ease;
}

.pyq12-feature-card:hover{
    transform:translateY(-7px);
    border-color:rgba(253,190,0,.42);
}

.pyq12-feature-icon{
    width:54px;
    height:54px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:24px;

    border-radius:16px;

    background:rgba(253,190,0,.08);
    color:#fdbe00;
}

.pyq12-feature-icon svg{
    width:25px;
    height:25px;
}

.pyq12-feature-card h3{
    margin:0 0 12px;

    font-size:21px;
    color:#fdbe00;
}

.pyq12-feature-card p{
    margin:0;

    color:rgba(255,255,255,.55);

    font-size:14px;
    line-height:1.8;
}


/* ============================================================
   FAQ
============================================================ */

.pyq12-faq-wrapper{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.pyq12-faq-item{
    background:#101010;

    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;

    transition:border-color .3s ease;
}

.pyq12-faq-item:hover{
    border-color:rgba(253,190,0,.38);
}

.pyq12-faq-question{
    min-height:90px;

    padding:22px 25px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.pyq12-faq-question > div{
    display:flex;
    align-items:center;
    gap:18px;
}

.pyq12-faq-question span{
    color:#fdbe00;
    font-size:12px;
    font-weight:900;
}

.pyq12-faq-question h3{
    margin:0;
    font-size:17px;
    line-height:1.5;
}

.pyq12-faq-question > svg{
    width:20px;
    height:20px;
    flex:0 0 20px;
    color:#fdbe00;
}


/* ============================================================
   FINAL CTA
============================================================ */

.pyq12-final-cta{
    position:relative;
    overflow:hidden;

    padding:145px 0;

    text-align:center;

    background:#050505;
}

.pyq12-cta-glow{
    position:absolute;

    width:650px;
    height:350px;

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    border-radius:50%;

    background:rgba(253,190,0,.08);

    filter:blur(120px);

    pointer-events:none;
}

.pyq12-final-cta h2{
    position:relative;
    z-index:2;

    max-width:900px;
    margin:0 auto;

    font-size:clamp(42px,6vw,72px);
    line-height:1.05;

    letter-spacing:-2px;
    font-weight:900;
}

.pyq12-final-cta h2 span{
    color:#fdbe00;
}

.pyq12-final-cta p{
    position:relative;
    z-index:2;

    max-width:650px;

    margin:22px auto 32px;

    color:rgba(255,255,255,.58);

    font-size:17px;
    line-height:1.8;
}

.pyq12-final-cta .pyq12-primary-btn{
    position:relative;
    z-index:2;
}


/* ============================================================
   CURSOR LIGHT

   IMPORTANT:
   Ye decorative light hai.
   Actual browser cursor hide nahi kiya gaya.
============================================================ */

.pyq12-cursor-light{
    position:fixed;

    width:280px;
    height:280px;

    left:0;
    top:0;

    border-radius:50%;

    background:rgba(253,190,0,.07);

    filter:blur(75px);

    transform:translate(-50%,-50%);

    pointer-events:none;

    z-index:2;

    opacity:0;

    transition:opacity .2s ease;

    will-change:left,top;
}

.pyq12-cursor-light.visible{
    opacity:1;
}


/* ============================================================
   REVEAL
============================================================ */

.pyq12-reveal{
    opacity:0;
    transform:translateY(45px);

    transition:
        opacity .75s ease,
        transform .75s ease;
}

.pyq12-reveal.active{
    opacity:1;
    transform:translateY(0);
}


/* ============================================================
   DOWNLOAD MODAL
============================================================ */

.pyq12-download-modal{
    position:fixed;
    inset:0;

    z-index:999999;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:25px;

    opacity:0;
    visibility:hidden;
    pointer-events:none;

    transition:
        opacity .25s ease,
        visibility .25s ease;
}

.pyq12-download-modal.active{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

.pyq12-modal-backdrop{
    position:absolute;
    inset:0;

    background:rgba(0,0,0,.86);

    backdrop-filter:blur(7px);
    -webkit-backdrop-filter:blur(7px);
}

.pyq12-modal-dialog{
    width:min(1050px,100%);
    max-height:calc(100vh - 50px);

    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:.85fr 1.15fr;

    overflow:auto;

    background:#0d0d0d;

    border:1px solid rgba(255,255,255,.11);
    border-radius:28px;

    box-shadow:0 35px 100px rgba(0,0,0,.65);

    transform:translateY(20px) scale(.985);

    transition:transform .3s ease;

    cursor:default;
}

.pyq12-download-modal.active .pyq12-modal-dialog{
    transform:translateY(0) scale(1);
}

.pyq12-modal-close{
    position:absolute;

    right:18px;
    top:18px;

    width:42px;
    height:42px;

    z-index:10;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid rgba(255,255,255,.12);
    border-radius:50%;

    background:#171717;
    color:#fff;

    cursor:pointer;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}

.pyq12-modal-close:hover{
    background:#fdbe00;
    color:#080808;
    transform:rotate(5deg);
}

.pyq12-modal-close svg{
    width:19px;
    height:19px;
}


/* ============================================================
   MODAL LEFT
============================================================ */

.pyq12-modal-info{
    position:relative;
    overflow:hidden;

    padding:60px 45px;

    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(253,190,0,.12),
            transparent 35%
        ),
        #090909;

    border-right:1px solid rgba(255,255,255,.08);
}

.pyq12-modal-info::after{
    content:"";

    position:absolute;

    width:280px;
    height:280px;

    right:-160px;
    bottom:-160px;

    border-radius:50%;

    background:rgba(122,12,15,.25);

    filter:blur(75px);

    pointer-events:none;
}

.pyq12-modal-eyebrow{
    display:block;
    margin-bottom:16px;

    color:#fdbe00;

    font-size:12px;
    font-weight:900;
    letter-spacing:3px;
}

.pyq12-modal-info h2{
    margin:0;

    font-size:44px;
    line-height:1.05;

    letter-spacing:-1.5px;
}

.pyq12-modal-info h2 span{
    display:block;
    color:#fdbe00;
}

.pyq12-modal-info > p{
    margin:20px 0 0;

    color:rgba(255,255,255,.58);

    font-size:14px;
    line-height:1.8;
}

.pyq12-selected-paper{
    margin-top:32px;
    padding:20px;

    background:rgba(255,255,255,.035);

    border:1px solid rgba(255,255,255,.08);
    border-radius:17px;
}

.pyq12-selected-paper > span{
    display:block;
    margin-bottom:8px;

    color:#fdbe00;

    font-size:10px;
    font-weight:900;
    letter-spacing:2px;
}

.pyq12-selected-paper strong{
    display:block;

    color:#fff;

    font-size:17px;
    line-height:1.45;
}

.pyq12-selected-paper small{
    display:block;
    margin-top:7px;

    color:rgba(255,255,255,.5);
}

.pyq12-modal-benefits{
    display:flex;
    flex-direction:column;
    gap:12px;

    margin-top:28px;
}

.pyq12-modal-benefits div{
    display:flex;
    align-items:center;
    gap:10px;

    color:rgba(255,255,255,.7);

    font-size:13px;
}

.pyq12-modal-benefits svg{
    width:17px;
    height:17px;
    color:#fdbe00;
}


/* ============================================================
   MODAL FORM AREA
============================================================ */

.pyq12-modal-form-area{
    padding:58px 45px 45px;

    background:#101010;
}

.pyq12-download-form{
    width:100%;
}

.pyq12-form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

.pyq12-form-group{
    margin-bottom:17px;
}

.pyq12-form-group label{
    display:block;

    margin-bottom:8px;

    color:rgba(255,255,255,.75);

    font-size:12px;
    font-weight:700;
}

.pyq12-form-group input,
.pyq12-form-group select{
    width:100%;
    height:51px;

    padding:0 15px;

    border:1px solid rgba(255,255,255,.1);
    border-radius:12px;

    outline:none;

    background:#090909;
    color:#fff;

    font-family:inherit;
    font-size:14px;

    transition:
        border-color .25s ease,
        background .25s ease;
}

.pyq12-form-group input::placeholder{
    color:rgba(255,255,255,.28);
}

.pyq12-form-group input:focus,
.pyq12-form-group select:focus{
    border-color:#fdbe00;
    background:#0c0c0c;
}

.pyq12-form-group input[readonly]{
    color:#fdbe00;
    cursor:default;
}

.pyq12-form-group select{
    cursor:pointer;
}

.pyq12-form-group select option{
    background:#101010;
    color:#fff;
}


/* ============================================================
   CONSENT
============================================================ */

.pyq12-consent{
    display:flex;
    align-items:flex-start;
    gap:11px;

    margin:2px 0 18px;

    color:rgba(255,255,255,.55);

    font-size:11px;
    line-height:1.55;

    cursor:pointer;
}

.pyq12-consent input{
    width:17px;
    height:17px;

    flex:0 0 17px;

    margin-top:1px;

    accent-color:#fdbe00;

    cursor:pointer;
}


/* ============================================================
   FORM MESSAGE
============================================================ */

.pyq12-form-message{
    min-height:0;

    margin-bottom:0;

    font-size:12px;
    line-height:1.5;
}

.pyq12-form-message:not(:empty){
    min-height:auto;

    margin-bottom:14px;
    padding:11px 13px;

    border-radius:10px;
}

.pyq12-form-message.error{
    color:#ffb4b4;

    background:rgba(255,65,65,.08);

    border:1px solid rgba(255,65,65,.18);
}

.pyq12-form-message.success{
    color:#c8ffc8;

    background:rgba(72,255,117,.07);

    border:1px solid rgba(72,255,117,.18);
}


/* ============================================================
   SUBMIT BUTTON
============================================================ */

.pyq12-submit-btn{
    width:100%;
    min-height:54px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    padding:0 18px;

    border:0;
    border-radius:13px;

    background:#fdbe00;
    color:#090909;

    font-family:inherit;
    font-size:14px;
    font-weight:900;

    cursor:pointer;

    transition:
        transform .25s ease,
        background .25s ease,
        opacity .25s ease;
}

.pyq12-submit-btn:hover:not(:disabled){
    transform:translateY(-2px);
    background:#ffd142;
}

.pyq12-submit-btn:disabled{
    cursor:not-allowed;
    opacity:.65;
}

.pyq12-submit-btn svg{
    width:18px;
    height:18px;
}

.pyq12-secure-note{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:7px;

    margin-top:13px;

    color:rgba(255,255,255,.35);

    font-size:10px;
}

.pyq12-secure-note svg{
    width:13px;
    height:13px;
}


/* ============================================================
   BODY MODAL OPEN

   Browser cursor stays visible.
============================================================ */

body.pyq12-modal-open{
    overflow:hidden;
}

body.pyq12-modal-open,
body.pyq12-modal-open *{
    cursor:auto;
}

body.pyq12-modal-open button,
body.pyq12-modal-open a,
body.pyq12-modal-open select,
body.pyq12-modal-open label,
body.pyq12-modal-open input[type="checkbox"]{
    cursor:pointer;
}

body.pyq12-modal-open input[type="text"],
body.pyq12-modal-open input[type="tel"],
body.pyq12-modal-open input[type="email"]{
    cursor:text;
}


/* ============================================================
   TABLET
============================================================ */

@media(max-width:1100px){

    .pyq12-paper-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .pyq12-subject-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .pyq12-modal-dialog{
        grid-template-columns:1fr 1.2fr;
    }

}


/* ============================================================
   TABLET / MOBILE
============================================================ */

@media(max-width:900px){

    .pyq12-section-padding{
        padding:95px 0;
    }

    .pyq12-hero{
        min-height:auto;
    }

    .pyq12-hero-content{
        padding:150px 0 130px;
    }

    .pyq12-stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .pyq12-feature-grid{
        grid-template-columns:1fr;
    }

    .pyq12-modal-dialog{
        display:block;
        max-width:680px;
    }

    .pyq12-modal-info{
        padding:45px 35px;
        border-right:0;
        border-bottom:1px solid rgba(255,255,255,.08);
    }

    .pyq12-modal-form-area{
        padding:40px 35px;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media(max-width:650px){

    .container,
    .container-small{
        width:min(100% - 30px,1280px);
    }

    .pyq12-section-padding{
        padding:80px 0;
    }

    .pyq12-hero-content{
        padding:135px 0 115px;
    }

    .pyq12-hero-title{
        font-size:58px;
        letter-spacing:-3px;
    }

    .pyq12-hero-subtitle{
        margin-top:22px;
        font-size:16px;
        line-height:1.7;
    }

    .pyq12-hero-buttons{
        flex-direction:column;
        align-items:stretch;
    }

    .pyq12-primary-btn,
    .pyq12-secondary-btn{
        width:100%;
    }

    .pyq12-stats-section{
        margin-top:-55px;
    }

    .pyq12-stats-grid{
        grid-template-columns:1fr 1fr;
        gap:12px;
    }

    .pyq12-stat-card{
        min-height:165px;
        padding:22px 15px;
        border-radius:20px;
    }

    .pyq12-stat-card h3{
        font-size:35px;
    }

    .pyq12-stat-card p{
        font-size:11px;
    }

    .pyq12-stat-icon{
        width:42px;
        height:42px;
        margin-bottom:13px;
    }

    .pyq12-section-heading{
        margin-bottom:45px;
    }

    .pyq12-section-heading h2{
        font-size:38px;
        letter-spacing:-1.5px;
    }

    .pyq12-section-heading p{
        font-size:14px;
    }

    .pyq12-subject-grid,
    .pyq12-paper-grid{
        grid-template-columns:1fr;
    }

    .pyq12-paper-cover{
        height:245px;
    }

    .pyq12-paper-content{
        padding:23px;
    }

    .pyq12-feature-card{
        min-height:auto;
        padding:28px;
    }

    .pyq12-final-cta{
        padding:100px 0;
    }

    .pyq12-final-cta h2{
        font-size:42px;
    }

    .pyq12-download-modal{
        padding:12px;
        align-items:flex-start;
        overflow-y:auto;
    }

    .pyq12-modal-dialog{
        width:100%;
        max-height:none;
        margin:12px 0;
        border-radius:22px;
    }

    .pyq12-modal-info{
        padding:45px 24px 32px;
    }

    .pyq12-modal-info h2{
        font-size:36px;
    }

    .pyq12-modal-form-area{
        padding:32px 24px;
    }

    .pyq12-form-row{
        grid-template-columns:1fr;
        gap:0;
    }

    .pyq12-modal-close{
        width:38px;
        height:38px;
        top:13px;
        right:13px;
    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media(max-width:420px){

    .pyq12-hero-title{
        font-size:49px;
    }

    .pyq12-stats-grid{
        grid-template-columns:1fr;
    }

    .pyq12-stat-card{
        min-height:150px;
    }

    .pyq12-paper-cover{
        height:220px;
    }

    .pyq12-section-heading h2{
        font-size:34px;
    }

    .pyq12-final-cta h2{
        font-size:36px;
    }

}


/* ============================================================
   REDUCED MOTION
============================================================ */

@media(prefers-reduced-motion:reduce){

    .pyq12-reveal{
        opacity:1;
        transform:none;
        transition:none;
    }

    .pyq12-paper-card,
    .pyq12-subject-card,
    .pyq12-feature-card,
    .pyq12-primary-btn,
    .pyq12-secondary-btn{
        transition:none;
    }

}