/*=========================================
TEST HERO
=========================================*/

.test-hero{

    padding:120px 0;

    background:linear-gradient(135deg,#0f172a,#111827);

    overflow:hidden;

}

.test-hero-content{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:rgba(212,175,55,.15);

    color:#d4af37;

    padding:12px 22px;

    border:1px solid rgba(212,175,55,.35);

    border-radius:50px;

    font-weight:600;

    margin-bottom:25px;

}

.test-hero-left h1{

    color:#fff;

    font-size:62px;

    line-height:1.15;

    margin-bottom:25px;

    font-weight:800;

}

.test-hero-left h1 span{

    color:#d4af37;

}

.test-hero-left p{

    color:#d1d5db;

    font-size:18px;

    line-height:32px;

    margin-bottom:40px;

    max-width:620px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    margin-bottom:50px;

}

.btn-primary{

    background:#d4af37;

    color:#111;

    padding:16px 38px;

    border-radius:10px;

    font-weight:700;

    transition:.35s;

}

.btn-primary:hover{

    transform:translateY(-4px);

}

.btn-secondary{

    border:2px solid rgba(255,255,255,.2);

    color:#fff;

    padding:16px 38px;

    border-radius:10px;

    transition:.35s;

}

.btn-secondary:hover{

    background:#fff;

    color:#111;

}

.hero-stats{

    display:flex;

    gap:25px;

    flex-wrap:wrap;

}

.stat-box{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.08);

    padding:22px;

    border-radius:15px;

    min-width:150px;

    text-align:center;

}

.stat-box h3{

    color:#d4af37;

    font-size:34px;

    margin-bottom:8px;

}

.stat-box span{

    color:#d1d5db;

}

.test-hero-right{

    position:relative;

    text-align:center;

}

.test-hero-right img{

    width:100%;

    max-width:560px;

}

.floating-card{

    position:absolute;

    display:flex;

    align-items:center;

    gap:15px;

    background:#fff;

    padding:18px;

    border-radius:15px;

    box-shadow:0 20px 45px rgba(0,0,0,.25);

    animation:float 4s ease-in-out infinite;

}

.floating-card i{

    width:55px;

    height:55px;

    background:#111;

    color:#d4af37;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

}

.card-1{

    top:15%;

    left:-30px;

}

.card-2{

    right:-20px;

    bottom:18%;

}

.floating-card h4{

    color:#111;

    font-size:17px;

    margin-bottom:4px;

}

.floating-card p{

    color:#666;

    font-size:14px;

}

@keyframes float{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

}

@media(max-width:992px){

.test-hero-content{

grid-template-columns:1fr;

text-align:center;

}

.hero-buttons{

justify-content:center;

}

.hero-stats{

justify-content:center;

}

.card-1{
    top:40px;
    left:-70px;
    width:280px;
}

.card-2{
    bottom:50px;
    left:-110px;
    width:230px;
}
}

@media(max-width:768px){

.test-hero{

padding:80px 0;

}

.test-hero-left h1{

font-size:42px;

}

.hero-stats{

flex-direction:column;

align-items:center;

}

.floating-card{

position:relative;

margin:20px auto;

left:auto;

right:auto;

top:auto;

bottom:auto;

}

}

/*=========================================
TEST CATEGORIES
=========================================*/

.test-categories{

    padding:120px 0;

    background:#ffffff;

}

.test-category-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:70px;

}

.test-category-card{

    background:#fff;

    border:1px solid #ececec;

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

    text-decoration:none;

    transition:.35s;

    box-shadow:0 12px 35px rgba(0,0,0,.06);

    position:relative;

    overflow:hidden;

}

.test-category-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:#d4af37;

    transform:scaleX(0);

    transition:.35s;

}

.test-category-card:hover{

    transform:translateY(-10px);

    border-color:#d4af37;

}

.test-category-card:hover::before{

    transform:scaleX(1);

}

.category-icon{

    width:85px;

    height:85px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:#111827;

    color:#d4af37;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    transition:.35s;

}

.test-category-card:hover .category-icon{

    background:#d4af37;

    color:#111827;

    transform:rotateY(180deg);

}

.test-category-card h3{

    color:#111827;

    font-size:28px;

    margin-bottom:12px;

}

.test-category-card p{

    color:#666;

    line-height:28px;

    margin-bottom:18px;

    min-height:55px;

}

.test-category-card span{

    display:inline-block;

    background:#f5f5f5;

    color:#111827;

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

}

@media(max-width:992px){

.test-category-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.test-categories{

padding:80px 0;

}

.test-category-grid{

grid-template-columns:1fr;

}

}

/*=========================================
MOCK TESTS
=========================================*/

.test-mock{

    padding:120px 0;

    background:#f8f9fc;

}

.mock-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:70px;

}

.mock-card{

    background:#fff;

    border-radius:22px;

    padding:35px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.mock-card:hover{

    transform:translateY(-10px);

}

.mock-badge{

    position:absolute;

    top:20px;

    right:20px;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

}

.free{

    background:#22c55e;

    color:#fff;

}

.premium{

    background:#d4af37;

    color:#111;

}

.mock-icon{

    width:80px;

    height:80px;

    border-radius:50%;

    background:#111827;

    color:#d4af37;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    margin-bottom:25px;

}

.mock-card h3{

    font-size:26px;

    margin-bottom:10px;

    color:#111827;

}

.mock-card p{

    color:#666;

    margin-bottom:25px;

}

.mock-info{

    display:flex;

    flex-direction:column;

    gap:15px;

    margin-bottom:30px;

}

.mock-info div{

    display:flex;

    align-items:center;

    gap:12px;

    color:#444;

}

.mock-info i{

    color:#d4af37;

    width:22px;

}

.mock-btn{

    display:block;

    text-align:center;

    background:#111827;

    color:#fff;

    padding:15px;

    border-radius:10px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.mock-btn:hover{

    background:#d4af37;

    color:#111827;

}

@media(max-width:992px){

.mock-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.test-mock{

padding:80px 0;

}

.mock-grid{

grid-template-columns:1fr;

}

}

/*=========================================
TEST FEATURES
=========================================*/

.test-features{

    padding:120px 0;

    background:#ffffff;

}

.feature-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:70px;

}

.feature-card{

    background:#fff;

    border-radius:22px;

    padding:40px 30px;

    text-align:center;

    border:1px solid #ececec;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:.35s;

}

.feature-card:hover{

    transform:translateY(-10px);

    border-color:#d4af37;

}

.feature-icon{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:#111827;

    color:#d4af37;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:36px;

    transition:.35s;

}

.feature-card:hover .feature-icon{

    background:#d4af37;

    color:#111827;

    transform:rotate(360deg);

}

.feature-card h3{

    font-size:26px;

    margin-bottom:18px;

    color:#111827;

}

.feature-card p{

    color:#666;

    line-height:30px;

}

@media(max-width:992px){

.feature-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.test-features{

padding:80px 0;

}

.feature-grid{

grid-template-columns:1fr;

}

.feature-card{

padding:35px 25px;

}

}

/*=========================================
AI PERFORMANCE ANALYSIS
=========================================*/

.test-analysis{

    padding:120px 0;

    background:#f8f9fc;

}

.analysis-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    margin-top:70px;

    align-items:center;

}

.analysis-left{

    text-align:center;

}

.analysis-left img{

    width:100%;

    max-width:580px;

}

.analysis-right{

    display:grid;

    gap:22px;

}

.analysis-card{

    display:flex;

    align-items:center;

    gap:20px;

    background:#fff;

    padding:24px;

    border-radius:18px;

    border:1px solid #ececec;

    box-shadow:0 12px 35px rgba(0,0,0,.06);

    transition:.35s;

}

.analysis-card:hover{

    transform:translateX(10px);

    border-color:#d4af37;

}

.analysis-icon{

    width:75px;

    height:75px;

    border-radius:18px;

    background:#111827;

    color:#d4af37;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    flex-shrink:0;

    transition:.35s;

}

.analysis-card:hover .analysis-icon{

    background:#d4af37;

    color:#111827;

}

.analysis-card h3{

    font-size:24px;

    color:#111827;

    margin-bottom:8px;

}

.analysis-card p{

    color:#666;

    line-height:28px;

}

@media(max-width:992px){

.analysis-wrapper{

grid-template-columns:1fr;

}

.analysis-left{

order:2;

}

.analysis-right{

order:1;

}

}

@media(max-width:768px){

.test-analysis{

padding:80px 0;

}

.analysis-card{

padding:20px;

align-items:flex-start;

}

.analysis-icon{

width:60px;

height:60px;

font-size:24px;

}

.analysis-card h3{

font-size:20px;

}

}

/*=========================================
TEST LEADERBOARD
=========================================*/

.test-leaderboard{

    padding:120px 0;

    background:#ffffff;

}

.leaderboard-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    margin-top:70px;

    align-items:center;

}

/* PODIUM */

.podium{

    display:flex;

    justify-content:center;

    align-items:flex-end;

    gap:25px;

}

.podium-card{

    background:#fff;

    border:1px solid #ececec;

    border-radius:22px;

    text-align:center;

    padding:30px 20px;

    position:relative;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}

.podium-card:hover{

    transform:translateY(-10px);

}

.first{

    transform:scale(1.08);

    border:2px solid #d4af37;

}

.second{

    margin-top:60px;

}

.third{

    margin-top:90px;

}

.rank-badge{

    position:absolute;

    top:-15px;

    left:50%;

    transform:translateX(-50%);

    width:38px;

    height:38px;

    border-radius:50%;

    background:#111827;

    color:#d4af37;

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:700;

}

.crown{

    position:absolute;

    top:-45px;

    left:50%;

    transform:translateX(-50%);

    color:#d4af37;

    font-size:28px;

}

.podium-card img{

    width:90px;

    height:90px;

    border-radius:50%;

    object-fit:cover;

    margin-bottom:20px;

}

.podium-card h3{

    color:#111827;

    margin-bottom:8px;

}

.podium-card span{

    color:#d4af37;

    font-weight:700;

}

/* LIST */

.leaderboard-right{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.leader-row{

    background:#fff;

    border-radius:16px;

    padding:20px 25px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    border:1px solid #ececec;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    transition:.3s;

}

.leader-row:hover{

    border-color:#d4af37;

    transform:translateX(8px);

}

.leader-row strong{

    color:#111827;

}

.leader-row span:last-child{

    color:#d4af37;

    font-weight:700;

}

@media(max-width:992px){

.leaderboard-wrapper{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.test-leaderboard{

padding:80px 0;

}

.podium{

flex-direction:column;

align-items:center;

}

.first,
.second,
.third{

margin-top:0;

transform:none;

width:100%;

max-width:320px;

}

.leader-row{

padding:18px;

}

}

/*=========================================
TEST REVIEWS
=========================================*/

.test-reviews{

    padding:120px 0;

    background:#f8f9fc;

}

.review-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:70px;

}

.review-card{

    background:#fff;

    padding:35px;

    border-radius:22px;

    border:1px solid #ececec;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:.35s;

}

.review-card:hover{

    transform:translateY(-10px);

    border-color:#d4af37;

}

.review-top{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:20px;

}

.review-top img{

    width:75px;

    height:75px;

    border-radius:50%;

    object-fit:cover;

}

.review-top h3{

    color:#111827;

    margin-bottom:5px;

}

.review-top span{

    color:#777;

    font-size:15px;

}

.stars{

    margin-bottom:20px;

}

.stars i{

    color:#d4af37;

    margin-right:3px;

}

.review-card p{

    color:#666;

    line-height:30px;

}

.review-stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:80px;

}

.stat-box{

    background:#111827;

    color:#fff;

    text-align:center;

    padding:35px;

    border-radius:18px;

}

.stat-box h2{

    font-size:42px;

    color:#d4af37;

    margin-bottom:10px;

}

.stat-box span{

    color:#d1d5db;

}

@media(max-width:992px){

.review-grid{

grid-template-columns:repeat(2,1fr);

}

.review-stats{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.test-reviews{

padding:80px 0;

}

.review-grid{

grid-template-columns:1fr;

}

.review-stats{

grid-template-columns:1fr;

}

.review-card{

padding:28px;

}

}

/*=========================================
TEST FAQ
=========================================*/

.test-faq{

    padding:120px 0;

    background:#ffffff;

}

.faq-wrapper{

    max-width:900px;

    margin:70px auto 0;

}

.faq-item{

    background:#fff;

    border:1px solid #ececec;

    border-radius:18px;

    margin-bottom:20px;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.faq-item.active{

    border-color:#d4af37;

}

.faq-question{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:24px 30px;

    cursor:pointer;

}

.faq-question h3{

    font-size:22px;

    color:#111827;

    margin:0;

}

.faq-question i{

    font-size:20px;

    color:#d4af37;

    transition:.3s;

}

.faq-answer{

    display:none;

    padding:0 30px 25px;

}

.faq-item.active .faq-answer{

    display:block;

}

.faq-answer p{

    color:#666;

    line-height:30px;

}

@media(max-width:768px){

.test-faq{

padding:80px 0;

}

.faq-question{

padding:20px;

align-items:flex-start;

gap:15px;

}

.faq-question h3{

font-size:18px;

}

.faq-answer{

padding:0 20px 20px;

}

}

/*=========================================
TEST CTA
=========================================*/

.test-cta{

    padding:120px 0;

    background:#ffffff;

}

.cta-box{

    background:linear-gradient(135deg,#0f172a,#111827,#000);

    border-radius:30px;

    padding:70px;

    display:grid;

    grid-template-columns:1.2fr 1fr;

    align-items:center;

    gap:60px;

    overflow:hidden;

    position:relative;

}

.cta-box::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:rgba(212,175,55,.15);

    border-radius:50%;

    top:-120px;

    right:-120px;

    filter:blur(30px);

}

.cta-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:rgba(212,175,55,.12);

    color:#d4af37;

    border:1px solid rgba(212,175,55,.4);

    padding:10px 20px;

    border-radius:50px;

    margin-bottom:25px;

    font-weight:600;

}

.cta-content h2{

    color:#fff;

    font-size:52px;

    line-height:1.2;

    margin-bottom:25px;

}

.cta-content p{

    color:#d1d5db;

    font-size:18px;

    line-height:32px;

    margin-bottom:35px;

}

.cta-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    margin-bottom:35px;

}

.btn-primary{

    background:#d4af37;

    color:#111827;

    padding:18px 35px;

    border-radius:10px;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(212,175,55,.35);

}

.btn-secondary{

    border:2px solid #d4af37;

    color:#d4af37;

    padding:18px 35px;

    border-radius:10px;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.btn-secondary:hover{

    background:#d4af37;

    color:#111827;

}

.cta-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.cta-features div{

    color:#f3f4f6;

    display:flex;

    align-items:center;

    gap:12px;

}

.cta-features i{

    color:#d4af37;

}

.cta-image{

    text-align:center;

}

.cta-image img{

    width:100%;

    max-width:500px;

    animation:float 4s ease-in-out infinite;

}

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

@media(max-width:992px){

.cta-box{

grid-template-columns:1fr;

text-align:center;

padding:50px;

}

.cta-buttons{

justify-content:center;

}

.cta-features{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:768px){

.test-cta{

padding:80px 0;

}

.cta-box{

padding:35px 25px;

}

.cta-content h2{

font-size:34px;

}

.cta-content p{

font-size:16px;

line-height:28px;

}

.cta-buttons{

flex-direction:column;

}

.btn-primary,
.btn-secondary{

text-align:center;

}

.cta-features{

grid-template-columns:1fr;

text-align:left;

}

}