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