/* Mock test detail correction layer.
   Loaded after the exact reference CSS to fix clipping and alignment in the real Laravel layout. */

.mock-test-detail-page,
.mock-test-detail-page * {
    box-sizing: border-box;
}

.mock-test-detail-page {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    background: #f5f7fb;
}

.mock-test-detail-page .container {
    width: min(100% - 40px, 1220px);
    max-width: 1220px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
}

.mock-test-detail-page .hero {
    padding-top: 50px;
    overflow: clip;
}

.mock-test-detail-page .breadcrumb {
    max-width: 100%;
    min-width: 0;
    margin-bottom: 28px;
    line-height: 1.5;
}

.mock-test-detail-page .breadcrumb span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mock-test-detail-page .hero-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
    gap: 36px;
    align-items: start;
    width: 100%;
    max-width: 100%;
}

.mock-test-detail-page .hero-left,
.mock-test-detail-page .hero-right {
    min-width: 0;
    max-width: 100%;
}

.mock-test-detail-page .hero-right {
    width: 100%;
    justify-content: flex-end;
}

.mock-test-detail-page .free-card {
    width: 100%;
    max-width: 390px;
    padding: 30px;
}

.mock-test-detail-page .free-card h3 {
    overflow-wrap: anywhere;
    word-break: normal;
}

.mock-test-detail-page .free-content p {
    min-width: 0;
    align-items: flex-start;
    line-height: 1.45;
}

.mock-test-detail-page .free-content p i {
    flex: 0 0 auto;
    margin-top: 3px;
}

.mock-test-detail-page .hero h1 {
    max-width: 100%;
    min-width: 0;
    align-items: flex-start;
    line-height: 1.18;
    overflow-wrap: anywhere;
    word-break: normal;
}

.mock-test-detail-page .hero h1 .logo {
    flex: 0 0 auto;
}

.mock-test-detail-page .hero-description {
    max-width: 820px;
    overflow-wrap: anywhere;
}

.mock-test-detail-page .hero-notice,
.mock-test-detail-page .stats,
.mock-test-detail-page .features,
.mock-test-detail-page .hero-buttons,
.mock-test-detail-page .hero-proof {
    max-width: 100%;
    min-width: 0;
}

.mock-test-detail-page .notice-item,
.mock-test-detail-page .stats span,
.mock-test-detail-page .feature-card,
.mock-test-detail-page .proof-item,
.mock-test-detail-page .main-btn {
    min-width: 0;
    overflow-wrap: anywhere;
}

.mock-test-detail-page .stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, auto));
    justify-content: start;
}

.mock-test-detail-page .stats span {
    width: auto;
}

.mock-test-detail-page .main-layout,
.mock-test-detail-page .series-left,
.mock-test-detail-page .featured-box,
.mock-test-detail-page .test-card,
.mock-test-detail-page .why-wrapper,
.mock-test-detail-page .series-grid {
    min-width: 0;
    max-width: 100%;
}

.mock-test-detail-page img {
    max-width: 100%;
}

@media (min-width: 1500px) {
    .mock-test-detail-page .container {
        width: min(100% - 56px, 1320px);
        max-width: 1320px;
    }

    .mock-test-detail-page .hero-wrapper {
        grid-template-columns: minmax(0, 1fr) minmax(340px, 400px);
        gap: 40px;
    }

    .mock-test-detail-page .hero h1 {
        font-size: clamp(38px, 2.6vw, 48px);
    }
}

@media (max-width: 1199.98px) {
    .mock-test-detail-page .hero {
        padding-top: 40px;
    }

    .mock-test-detail-page .container {
        width: min(100% - 32px, 1080px);
    }

    .mock-test-detail-page .hero-wrapper {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
        gap: 28px;
    }

    .mock-test-detail-page .hero h1 {
        font-size: 38px;
    }
}

@media (max-width: 991.98px) {
    .mock-test-detail-page .hero {
        padding-top: 32px;
    }

    .mock-test-detail-page .hero-wrapper {
        grid-template-columns: 1fr;
    }

    .mock-test-detail-page .hero-right {
        justify-content: stretch;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

    .mock-test-detail-page .free-card {
        max-width: 100%;
    }

    .mock-test-detail-page .stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .mock-test-detail-page .container {
        width: min(100% - 24px, 100%);
    }

    .mock-test-detail-page .hero {
        padding-top: 26px;
    }

    .mock-test-detail-page .breadcrumb {
        font-size: 12px;
        margin-bottom: 18px;
    }

    .mock-test-detail-page .breadcrumb span:last-child {
        flex-basis: 100%;
        white-space: normal;
    }

    .mock-test-detail-page .hero h1 {
        display: grid;
        grid-template-columns: 52px minmax(0, 1fr);
        font-size: 26px;
        gap: 12px;
    }

    .mock-test-detail-page .hero h1 .logo {
        width: 52px;
        height: 52px;
    }

    .mock-test-detail-page .hero-description {
        font-size: 15px;
        line-height: 1.65;
    }

    .mock-test-detail-page .hero-notice {
        flex-direction: column;
    }

    .mock-test-detail-page .notice-item {
        width: 100%;
        justify-content: flex-start;
        text-align: left;
    }

    .mock-test-detail-page .stats {
        grid-template-columns: 1fr 1fr;
    }

    .mock-test-detail-page .stats span {
        justify-content: flex-start;
    }

    .mock-test-detail-page .free-card {
        padding: 22px;
    }
}

@media (max-width: 479.98px) {
    .mock-test-detail-page .container {
        width: min(100% - 20px, 100%);
    }

    .mock-test-detail-page .hero h1 {
        grid-template-columns: 46px minmax(0, 1fr);
        font-size: 23px;
    }

    .mock-test-detail-page .hero h1 .logo {
        width: 46px;
        height: 46px;
    }

    .mock-test-detail-page .stats {
        grid-template-columns: 1fr;
    }

    .mock-test-detail-page .main-btn {
        width: 100%;
    }
}

/* =========================================================
   PREMIUM MOCK TEST HERO
========================================================= */

.hero--premium {
    position: relative;
    isolation: isolate;

    overflow: hidden;

    padding: 105px 0 70px;

    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(37, 99, 235, .10),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 20%,
            rgba(14, 165, 233, .08),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #f8fbff 0%,
            #ffffff 72%
        );
}


/* =========================================================
   BACKGROUND GLOW
========================================================= */

.hero__glow {
    position: absolute;

    width: 320px;
    height: 320px;

    border-radius: 50%;

    filter: blur(80px);

    pointer-events: none;

    opacity: .35;

    z-index: -1;
}

.hero__glow--one {
    top: -150px;
    left: -100px;

    background: rgba(59, 130, 246, .16);
}

.hero__glow--two {
    right: -120px;
    bottom: -150px;

    background: rgba(14, 165, 233, .12);
}


/* =========================================================
   BREADCRUMB
========================================================= */

.hero__breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 34px;

    color: #94a3b8;

    font-size: 11px;
}

.hero__breadcrumb a {
    color: #64748b;

    text-decoration: none;

    font-weight: 600;

    transition: color .2s ease;
}

.hero__breadcrumb a:hover {
    color: #2563eb;
}

.hero__breadcrumb i {
    color: #cbd5e1;

    font-size: 8px;
}


/* =========================================================
   HERO GRID
========================================================= */

.hero-wrapper {
    display: grid;

    grid-template-columns:
        minmax(0, 1.55fr)
        minmax(320px, .75fr);

    gap: 55px;

    align-items: center;
}


/* =========================================================
   BADGE
========================================================= */

.hero-badge {
    width: fit-content;

    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-bottom: 17px;
    padding: 7px 12px;

    border: 1px solid #dbeafe;
    border-radius: 999px;

    background: rgba(239, 246, 255, .85);

    color: #2563eb;

    font-size: 9px;
    font-weight: 850;

    letter-spacing: .07em;
    text-transform: uppercase;
}

.hero-badge__dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #22c55e;

    box-shadow:
        0 0 0 4px rgba(34, 197, 94, .10);
}


/* =========================================================
   TITLE
========================================================= */

.hero-title-row {
    display: flex;
    align-items: flex-start;

    gap: 17px;
}

.hero-logo {
    flex: 0 0 66px;

    width: 66px;
    height: 66px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border: 1px solid #e2e8f0;
    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 10px 25px rgba(15, 23, 42, .08);
}

.hero-logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.hero-logo i {
    color: #2563eb;

    font-size: 25px;
}

.hero h1 {
    margin: 0;

    color: #0f172a;

    font-size: 30px;
    line-height: 1.08;

    font-weight: 900;

    letter-spacing: -.045em;
}

.hero h1 span {
    display: block;

    margin-top: 5px;

    color: #2563eb;
}


/* =========================================================
   TITLE META
========================================================= */

.hero-title-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 11px;
}

.hero-title-meta span {
    display: inline-flex;
    align-items: center;

    gap: 5px;

    color: #64748b;

    font-size: 9px;
    font-weight: 650;
}

.hero-title-meta i {
    color: #22c55e;

    font-size: 9px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.hero-description {
    max-width: 710px;

    margin: 20px 0 22px;

    color: #64748b;

    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   STATS
========================================================= */

.hero-stats {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    max-width: 760px;

    margin-bottom: 22px;

    overflow: hidden;

    border: 1px solid #e5e7eb;
    border-radius: 15px;

    background: rgba(255, 255, 255, .85);

    box-shadow:
        0 7px 25px rgba(15, 23, 42, .035);
}

.hero-stat {
    display: flex;
    align-items: center;

    gap: 9px;

    padding: 13px 12px;

    border-right: 1px solid #eef2f7;
}

.hero-stat:last-child {
    border-right: 0;
}

.hero-stat__icon {
    width: 31px;
    height: 31px;

    flex: 0 0 31px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: #eff6ff;

    color: #2563eb;

    font-size: 10px;
}

.hero-stat strong {
    display: block;

    color: #0f172a;

    font-size: 13px;
    line-height: 1.2;

    font-weight: 850;
}

.hero-stat small {
    display: block;

    margin-top: 2px;

    color: #94a3b8;

    font-size: 8px;
    font-weight: 650;
}


/* =========================================================
   FEATURES
========================================================= */

.hero-features {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 24px;
}

.hero-feature {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    padding: 7px 10px;

    border: 1px solid #e5e7eb;
    border-radius: 8px;

    background: #ffffff;

    color: #475569;

    font-size: 9.5px;
    font-weight: 650;
}

.hero-feature i {
    color: #22c55e;

    font-size: 9px;
}


/* =========================================================
   MAIN CTA
========================================================= */

.hero-main-btn {
    width: min(100%, 480px);

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 11px 13px;

    border: 1px solid #1d4ed8;
    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #1d4ed8
        );

    color: #ffffff;

    text-decoration: none;

    box-shadow:
        0 12px 25px rgba(37, 99, 235, .20);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.hero-main-btn:hover {
    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 17px 32px rgba(37, 99, 235, .26);
}

.hero-main-btn__icon {
    width: 37px;
    height: 37px;

    flex: 0 0 37px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: rgba(255, 255, 255, .16);

    font-size: 11px;
}

.hero-main-btn__content {
    min-width: 0;

    flex: 1;
}

.hero-main-btn__content strong {
    display: block;

    font-size: 12px;
    font-weight: 850;
}

.hero-main-btn__content small {
    display: block;

    margin-top: 2px;

    color: rgba(255, 255, 255, .75);

    font-size: 8.5px;
}

.hero-main-btn__arrow {
    font-size: 11px;
}


/* =========================================================
   TRUST
========================================================= */

.hero-trust {
    display: flex;
    flex-wrap: wrap;

    gap: 15px;

    margin-top: 15px;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;

    gap: 5px;

    color: #64748b;

    font-size: 8.5px;
    font-weight: 600;
}

.hero-trust i {
    color: #2563eb;

    font-size: 9px;
}

.hero-trust strong {
    color: #334155;
}


/* =========================================================
   RIGHT CARD
========================================================= */

.hero-card {
    position: relative;

    overflow: hidden;

    padding: 25px;

    border: 1px solid #dbeafe;
    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f8fbff
        );

    box-shadow:
        0 20px 55px rgba(15, 23, 42, .09);
}

.hero-card::before {
    content: "";

    position: absolute;

    top: -80px;
    right: -80px;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background: rgba(59, 130, 246, .07);
}


/* CARD TOP */

.hero-card__top {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 18px;
}

.hero-card__status {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    padding: 6px 9px;

    border-radius: 7px;

    background: #ecfdf5;

    color: #15803d;

    font-size: 8px;
    font-weight: 850;

    letter-spacing: .06em;
}

.hero-card__status span {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #22c55e;
}

.hero-card__top > i {
    color: #f59e0b;

    font-size: 15px;
}


/* CARD TITLE */

.hero-card h2 {
    position: relative;

    margin: 0;

    color: #0f172a;

    font-size: 20px;
    line-height: 1.25;

    font-weight: 850;

    letter-spacing: -.025em;
}

.hero-card h2 span {
    display: block;

    color: #2563eb;
}

.hero-card__description {
    position: relative;

    margin: 9px 0 19px;

    color: #64748b;

    font-size: 10.5px;
    line-height: 1.7;
}


/* CARD LIST */

.hero-card__list {
    position: relative;

    display: flex;
    flex-direction: column;

    gap: 11px;

    margin-bottom: 22px;
}

.hero-card__list div {
    display: flex;
    align-items: center;

    gap: 9px;

    color: #475569;

    font-size: 10px;
    font-weight: 600;
}

.hero-card__list i {
    color: #22c55e;

    font-size: 11px;
}


/* CARD BUTTON */

.hero-card__button {
    position: relative;

    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 13px 15px;

    border-radius: 11px;

    background: #2563eb;

    color: #ffffff;

    text-decoration: none;

    font-size: 11px;
    font-weight: 800;

    box-shadow:
        0 9px 20px rgba(37, 99, 235, .17);

    transition:
        background .2s ease,
        transform .2s ease;
}

.hero-card__button:hover {
    color: #ffffff;

    background: #1d4ed8;

    transform: translateY(-1px);
}


/* CARD TRUST */

.hero-card__trust {
    position: relative;

    display: flex;
    justify-content: center;

    gap: 15px;

    margin-top: 14px;
}

.hero-card__trust span {
    display: inline-flex;
    align-items: center;

    gap: 4px;

    color: #94a3b8;

    font-size: 8px;
    font-weight: 650;
}

.hero-card__trust i {
    color: #64748b;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .hero-wrapper {
        grid-template-columns:
            minmax(0, 1.3fr)
            minmax(290px, .7fr);

        gap: 30px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stat:nth-child(2) {
        border-right: 0;
    }

    .hero-stat:nth-child(-n + 2) {
        border-bottom: 1px solid #eef2f7;
    }

}


/* =========================================================
   MOBILE / TABLET
========================================================= */

@media (max-width: 900px) {

    .hero--premium {
        padding-top: 90px;
        padding-bottom: 45px;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .hero-right {
        max-width: 600px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .hero--premium {
        padding: 76px 0 35px;
    }

    .hero__breadcrumb {
        margin-bottom: 22px;

        font-size: 9px;
    }

    .hero-badge {
        margin-bottom: 13px;

        font-size: 8px;
    }

    .hero-title-row {
        gap: 11px;
    }

    .hero-logo {
        flex-basis: 48px;

        width: 48px;
        height: 48px;

        border-radius: 12px;
    }

    .hero-logo i {
        font-size: 18px;
    }

    .hero h1 {
        font-size: 27px;

        letter-spacing: -.035em;
    }

    .hero h1 span {
        margin-top: 3px;
    }

    .hero-title-meta {
        gap: 7px;

        margin-top: 7px;
    }

    .hero-title-meta span {
        font-size: 7.5px;
    }

    .hero-description {
        margin: 15px 0 18px;

        font-size: 11px;
        line-height: 1.7;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);

        border-radius: 12px;
    }

    .hero-stat {
        padding: 11px 9px;
    }

    .hero-stat__icon {
        width: 28px;
        height: 28px;

        flex-basis: 28px;
    }

    .hero-stat strong {
        font-size: 11px;
    }

    .hero-stat small {
        font-size: 7px;
    }

    .hero-features {
        gap: 6px;

        margin-bottom: 19px;
    }

    .hero-feature {
        padding: 6px 8px;

        font-size: 8px;
    }

    .hero-main-btn {
        width: 100%;

        border-radius: 11px;
    }

    .hero-main-btn__icon {
        width: 34px;
        height: 34px;

        flex-basis: 34px;
    }

    .hero-main-btn__content strong {
        font-size: 10.5px;
    }

    .hero-main-btn__content small {
        font-size: 7px;
    }

    .hero-trust {
        gap: 8px 12px;

        margin-top: 12px;
    }

    .hero-trust span {
        font-size: 7.5px;
    }

    .hero-card {
        padding: 19px;

        border-radius: 17px;
    }

    .hero-card h2 {
        font-size: 18px;
    }

    .hero-card__description {
        font-size: 9.5px;
    }

    .hero-card__list {
        gap: 9px;
    }

    .hero-card__list div {
        font-size: 9px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .hero--premium {
        padding-top: 70px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero-logo {
        flex-basis: 43px;

        width: 43px;
        height: 43px;
    }

    .hero-title-meta {
        display: none;
    }

    .hero-description {
        font-size: 10.5px;
    }

    .hero-stat {
        gap: 6px;

        padding: 9px 7px;
    }

    .hero-stat__icon {
        width: 25px;
        height: 25px;

        flex-basis: 25px;

        font-size: 8px;
    }

    .hero-feature {
        font-size: 7.5px;
    }

    .hero-card {
        padding: 16px;
    }

}

/* =========================================================
   PREMIUM TEST LIST
========================================================= */

.premium-test-list {
    padding: 72px 0;
    background: #f7f9fc;
}

.premium-test-list .container {
    max-width: 1180px;
}


/* HEADER */

.test-list__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 28px;
}

.test-list__eyebrow,
.tests-list-header__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 9px;
    color: #2563eb;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.test-list__heading h2 {
    margin: 0;
    color: #111827;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -.035em;
}

.test-list__heading h2 span {
    color: #2563eb;
}

.test-list__heading p {
    max-width: 700px;
    margin: 12px 0 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.7;
}

.test-list__count {
    min-width: 125px;
    padding: 15px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #fff;
    text-align: center;
    box-shadow: 0 8px 25px rgba(15, 23, 42, .05);
}

.test-list__count strong {
    display: block;
    color: #2563eb;
    font-size: 25px;
    line-height: 1;
}

.test-list__count span {
    display: block;
    margin-top: 5px;
    color: #667085;
    font-size: 11px;
    font-weight: 700;
}


/* FILTER */

.test-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 10px;
    margin-bottom: 25px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 7px 25px rgba(15, 23, 42, .045);
}

.test-filter-scroll {
    display: flex;
    align-items: center;
    gap: 7px;
    overflow-x: auto;
    scrollbar-width: none;
}

.test-filter-scroll::-webkit-scrollbar {
    display: none;
}

.filter-chip {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: transparent;
    color: #667085;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s ease;
}

.filter-chip:hover {
    background: #f3f6fb;
    color: #2563eb;
}

.filter-chip.active {
    background: #2563eb;
    color: #fff;
    box-shadow: 0 5px 14px rgba(37, 99, 235, .22);
}

.test-sort {
    display: flex;
    align-items: center;
    gap: 7px;
    flex: 0 0 auto;
    padding-left: 10px;
    border-left: 1px solid #e5e7eb;
}

.test-sort label {
    color: #667085;
    font-size: 12px;
    font-weight: 700;
}

.test-sort select {
    min-height: 38px;
    padding: 0 28px 0 10px;
    border: 0;
    outline: 0;
    background: #fff;
    color: #344054;
    font-size: 12px;
    font-weight: 700;
}


/* FEATURED */

.featured-test {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(260px, .65fr);
    overflow: hidden;
    margin-bottom: 45px;
    border: 1px solid #dbe3ef;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 45px rgba(15, 23, 42, .08);
}

.featured-test__main {
    padding: 30px;
}

.featured-test__side {
    padding: 30px;
    border-left: 1px solid #e8edf4;
    background: #f8fafc;
}

.featured-test__top,
.featured-test__badges,
.featured-test__bottom {
    display: flex;
    align-items: center;
}

.featured-test__top {
    justify-content: space-between;
    gap: 15px;
}

.featured-test__badges {
    flex-wrap: wrap;
    gap: 7px;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 27px;
    padding: 0 9px;
    border-radius: 7px;
    font-size: 10px;
    font-weight: 800;
}

.featured-badge--primary {
    background: #eff6ff;
    color: #2563eb;
}

.featured-badge--rating {
    background: #fff7ed;
    color: #ea580c;
}

.featured-badge--free {
    background: #ecfdf3;
    color: #059669;
}

.featured-badge--premium {
    background: #f5f3ff;
    color: #7c3aed;
}

.featured-test__updated {
    color: #667085;
    font-size: 11px;
    font-weight: 600;
}

.featured-test__updated i {
    margin-right: 4px;
    color: #10b981;
}

.featured-test h3 {
    margin: 18px 0 8px;
    color: #101828;
    font-size: 25px;
    font-weight: 800;
}

.featured-test__description {
    max-width: 760px;
    margin: 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.7;
}

.featured-test__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 22px;
}

.featured-test__stats div {
    display: flex;
    flex-direction: column;
    padding: 13px;
    border: 1px solid #e8edf4;
    border-radius: 12px;
    background: #fafcff;
}

.featured-test__stats i {
    margin-bottom: 8px;
    color: #2563eb;
    font-size: 14px;
}

.featured-test__stats strong {
    color: #101828;
    font-size: 15px;
}

.featured-test__stats span {
    margin-top: 2px;
    color: #98a2b3;
    font-size: 10px;
}

.featured-test__bottom {
    gap: 22px;
    margin-top: 24px;
}

.featured-test__cta {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-height: 48px;
    padding: 0 17px;
    border-radius: 11px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(37, 99, 235, .2);
    transition: .2s ease;
}

.featured-test__cta:hover {
    color: #fff;
    background: #1d4ed8;
    transform: translateY(-1px);
}

.featured-test__cta span {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
}

.featured-test__cta strong {
    font-size: 13px;
}

.featured-test__attempts {
    display: flex;
    align-items: center;
    gap: 9px;
}

.attempt-avatar {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 50%;
    background: #eff6ff;
    color: #2563eb;
}

.featured-test__attempts strong,
.featured-test__attempts span {
    display: block;
}

.featured-test__attempts strong {
    color: #344054;
    font-size: 12px;
}

.featured-test__attempts span {
    color: #98a2b3;
    font-size: 10px;
}


/* OVERVIEW */

.featured-test__side-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid #e4e7ec;
    color: #344054;
    font-size: 13px;
    font-weight: 800;
}

.featured-test__side-header i {
    color: #2563eb;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 16px;
}

.overview-grid div {
    padding: 13px;
    border: 1px solid #e6eaf0;
    border-radius: 11px;
    background: #fff;
}

.overview-grid strong,
.overview-grid span {
    display: block;
}

.overview-grid strong {
    color: #101828;
    font-size: 13px;
}

.overview-grid span {
    margin-top: 3px;
    color: #98a2b3;
    font-size: 9px;
}

.featured-test__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 17px;
}

.featured-test__trust span {
    color: #667085;
    font-size: 10px;
    font-weight: 700;
}

.featured-test__trust i {
    color: #10b981;
    margin-right: 4px;
}


/* LIST HEADER */

.tests-list-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.tests-list-header h3 {
    margin: 0;
    color: #101828;
    font-size: 21px;
    font-weight: 800;
}

.tests-list-header h3 i {
    margin-right: 6px;
    color: #2563eb;
}

.tests-list-header p {
    margin: 5px 0 0;
    color: #667085;
    font-size: 12px;
}

.tests-list-header__result {
    text-align: right;
}

.tests-list-header__result strong {
    display: block;
    color: #2563eb;
    font-size: 20px;
}

.tests-list-header__result span {
    color: #98a2b3;
    font-size: 10px;
}


/* TEST CARD */

.test-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.premium-test-card {
    position: relative;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 150px;
    gap: 18px;
    align-items: center;
    padding: 19px;
    border: 1px solid #e4e7ec;
    border-radius: 15px;
    background: #fff;
    transition: .22s ease;
}

.premium-test-card:hover {
    border-color: #c9d8f4;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .07);
    transform: translateY(-2px);
}

.test-card__number {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 11px;
    background: #f2f6fc;
    color: #667085;
    font-size: 11px;
    font-weight: 800;
}

.test-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.test-badge {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 0 7px;
    border-radius: 5px;
    font-size: 9px;
    font-weight: 800;
}

.test-badge--latest {
    background: #eff6ff;
    color: #2563eb;
}

.test-badge--free {
    background: #ecfdf3;
    color: #059669;
}

.test-badge--premium {
    background: #f5f3ff;
    color: #7c3aed;
}

.test-badge--level {
    background: #f2f4f7;
    color: #667085;
}

.test-card__body h3 {
    margin: 8px 0;
    color: #101828;
    font-size: 15px;
    font-weight: 800;
}

.test-card__meta,
.test-card__features {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.test-card__meta span,
.test-card__features span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #667085;
    font-size: 10px;
    font-weight: 600;
}

.test-card__meta i {
    color: #2563eb;
}

.test-card__features {
    margin-top: 9px;
}

.test-card__features i {
    color: #10b981;
}

.test-card__action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.start-test-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 40px;
    padding: 0 13px;
    border: 1px solid #2563eb;
    border-radius: 9px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    transition: .2s ease;
}

.start-test-btn:hover {
    background: #1d4ed8;
    color: #fff;
}

.bookmark-btn {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid #e4e7ec;
    border-radius: 9px;
    background: #fff;
    color: #667085;
    cursor: pointer;
    text-decoration: none;
    transition: .2s ease;
}

.bookmark-btn:hover {
    border-color: #bfd0ee;
    background: #f8fbff;
    color: #2563eb;
}


/* EXPLORE */

.explore-series {
    margin-top: 55px;
    padding-top: 38px;
    border-top: 1px solid #e4e7ec;
}

.explore-series__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 20px;
}

.explore-series__header span {
    color: #2563eb;
    font-size: 11px;
    font-weight: 800;
}

.explore-series__header h2 {
    margin: 5px 0 5px;
    color: #101828;
    font-size: 24px;
    font-weight: 800;
}

.explore-series__header p {
    margin: 0;
    color: #667085;
    font-size: 12px;
}

.explore-series__header > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #2563eb;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.series-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
}

.series-card {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px;
    border: 1px solid #e4e7ec;
    border-radius: 14px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    transition: .2s ease;
}

.series-card:hover {
    border-color: #c9d8f4;
    box-shadow: 0 10px 25px rgba(15,23,42,.06);
    transform: translateY(-2px);
}

.series-card__icon {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    place-items: center;
    overflow: hidden;
    border-radius: 11px;
    background: #eff6ff;
    color: #2563eb;
}

.series-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.series-card__body {
    min-width: 0;
    flex: 1;
}

.series-card__category {
    color: #98a2b3;
    font-size: 9px;
    font-weight: 700;
}

.series-card h3 {
    overflow: hidden;
    margin: 3px 0 8px;
    color: #101828;
    font-size: 12px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.series-card__meta {
    display: flex;
    gap: 10px;
}

.series-card__meta span {
    color: #667085;
    font-size: 9px;
}

.series-card__meta i {
    color: #2563eb;
    margin-right: 3px;
}

.series-card__arrow {
    color: #98a2b3;
    font-size: 12px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {

    .premium-test-list {
        padding: 50px 0;
    }

    .featured-test {
        grid-template-columns: 1fr;
    }

    .featured-test__side {
        border-top: 1px solid #e8edf4;
        border-left: 0;
    }

    .series-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 767px) {

    .premium-test-list {
        padding: 38px 0;
    }

    .test-list__header {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 18px;
    }

    .test-list__heading h2 {
        font-size: 26px;
    }

    .test-list__heading p {
        font-size: 13px;
    }

    .test-list__count {
        width: 100%;
        text-align: left;
    }

    .test-list__count strong,
    .test-list__count span {
        display: inline;
    }

    .test-list__count span {
        margin-left: 5px;
    }

    .test-filter-bar {
        align-items: stretch;
        flex-direction: column;
        padding: 8px;
    }

    .test-filter-scroll {
        width: 100%;
    }

    .test-sort {
        justify-content: space-between;
        padding: 8px 3px 2px;
        border-top: 1px solid #edf0f4;
        border-left: 0;
    }

    .featured-test__main,
    .featured-test__side {
        padding: 20px;
    }

    .featured-test__top {
        align-items: flex-start;
        flex-direction: column;
    }

    .featured-test__updated {
        margin-top: 3px;
    }

    .featured-test h3 {
        font-size: 21px;
    }

    .featured-test__stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-test__bottom {
        align-items: stretch;
        flex-direction: column;
        gap: 15px;
    }

    .featured-test__cta {
        justify-content: center;
        width: 100%;
    }

    .featured-test__attempts {
        justify-content: center;
    }

    .tests-list-header {
        align-items: flex-start;
    }

    .tests-list-header__result {
        display: none;
    }

    .premium-test-card {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px;
    }

    .test-card__number {
        width: 34px;
        height: 28px;
        border-radius: 7px;
    }

    .test-card__body h3 {
        font-size: 14px;
        line-height: 1.45;
    }

    .test-card__meta,
    .test-card__features {
        gap: 8px 12px;
    }

    .test-card__meta span,
    .test-card__features span {
        font-size: 9px;
    }

    .test-card__action {
        justify-content: stretch;
        width: 100%;
    }

    .start-test-btn {
        flex: 1;
        min-height: 43px;
    }

    .bookmark-btn {
        width: 43px;
        height: 43px;
    }

    .explore-series {
        margin-top: 40px;
    }

    .explore-series__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .explore-series__header h2 {
        font-size: 21px;
    }

    .explore-series__header > a {
        display: none;
    }

    .series-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 420px) {

    .featured-test__stats {
        gap: 7px;
    }

    .featured-test__stats div {
        padding: 10px;
    }

    .featured-test__stats strong {
        font-size: 13px;
    }

    .test-card__features span:last-child {
        display: none;
    }

}
/* =========================================================
   WHY MOCK TESTS — PREMIUM SECTION
========================================================= */

.why-mock {
    position: relative;
    padding: 80px 0;
    background: #f7f9fc;
    overflow: hidden;
}

.why-mock::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -180px;
    right: -120px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.06);
    pointer-events: none;
}

.why-mock::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -100px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.05);
    pointer-events: none;
}

.why-mock .container {
    position: relative;
    z-index: 1;
}


/* =========================================================
   HEADER
========================================================= */

.why-mock__header {
    max-width: 850px;
    margin: 0 auto 48px;
    text-align: center;
}

.why-mock__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid rgba(37, 99, 235, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: #2563eb;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
    box-shadow: 0 6px 20px rgba(15, 23, 42, .05);
}

.why-mock__header h2 {
    margin: 18px 0 14px;
    color: #0f172a;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.why-mock__header h2 span {
    display: block;
    color: #2563eb;
}

.why-mock__header > p {
    max-width: 760px;
    margin: 0 auto;
    color: #64748b;
    font-size: 16px;
    line-height: 1.75;
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.why-mock__layout {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: stretch;
}


/* =========================================================
   OVERVIEW CARD
========================================================= */

.why-mock__overview-card {
    height: 100%;
    padding: 30px;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    background: #fff;
    box-shadow:
        0 20px 50px rgba(15, 23, 42, .07),
        0 3px 10px rgba(15, 23, 42, .03);
}

.why-mock__overview-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.why-mock__mini-label {
    display: block;
    margin-bottom: 8px;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.why-mock__overview-top h3 {
    margin: 0;
    color: #0f172a;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 800;
}

.why-mock__overview-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 22px;
}

.why-mock__overview-text {
    margin: 22px 0 26px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.75;
}


/* =========================================================
   STATS
========================================================= */

.why-mock__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.why-mock__stat {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 14px;
    border: 1px solid #edf1f5;
    border-radius: 16px;
    background: #f8fafc;
}

.why-mock__stat-icon {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: #fff;
    color: #2563eb;
    box-shadow: 0 4px 12px rgba(15, 23, 42, .06);
}

.why-mock__stat strong {
    display: block;
    color: #0f172a;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 800;
}

.why-mock__stat span {
    display: block;
    margin-top: 3px;
    color: #64748b;
    font-size: 11px;
    font-weight: 600;
}


/* =========================================================
   CTA
========================================================= */

.why-mock__cta {
    margin-top: 26px;
}

.why-mock__button {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 0 18px;
    border-radius: 15px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(37, 99, 235, .2);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.why-mock__button span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.why-mock__button:hover {
    color: #fff;
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(37, 99, 235, .25);
}

.why-mock__cta small {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 10px;
    color: #64748b;
    font-size: 12px;
}


/* =========================================================
   FEATURE GRID
========================================================= */

.why-mock__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.why-mock__feature {
    display: flex;
    gap: 16px;
    padding: 23px;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .045);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.why-mock__feature:hover {
    transform: translateY(-4px);
    border-color: #bfdbfe;
    box-shadow: 0 18px 35px rgba(15, 23, 42, .08);
}

.why-mock__feature-icon {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 18px;
}

.why-mock__feature-number {
    display: block;
    margin-bottom: 4px;
    color: #94a3b8;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
}

.why-mock__feature h3 {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 800;
}

.why-mock__feature p {
    margin: 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.65;
}

.why-mock__feature ul {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
}

.why-mock__feature li {
    position: relative;
    padding-left: 13px;
    color: #475569;
    font-size: 11px;
    font-weight: 600;
}

.why-mock__feature li::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    top: 6px;
    left: 0;
    border-radius: 50%;
    background: #2563eb;
}


/* =========================================================
   TRUST STRIP
========================================================= */

.why-mock__trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 28px;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .04);
    overflow: hidden;
}

.why-mock__trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
}

.why-mock__trust-item + .why-mock__trust-item {
    border-left: 1px solid #edf1f5;
}

.why-mock__trust-item > i {
    color: #2563eb;
    font-size: 18px;
}

.why-mock__trust-item strong,
.why-mock__trust-item span {
    display: block;
}

.why-mock__trust-item strong {
    color: #0f172a;
    font-size: 12px;
    font-weight: 800;
}

.why-mock__trust-item span {
    margin-top: 3px;
    color: #64748b;
    font-size: 10px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .why-mock {
        padding: 65px 0;
    }

    .why-mock__layout {
        grid-template-columns: 1fr;
    }

    .why-mock__features {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-mock__trust {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-mock__trust-item:nth-child(3) {
        border-left: 0;
        border-top: 1px solid #edf1f5;
    }

    .why-mock__trust-item:nth-child(4) {
        border-top: 1px solid #edf1f5;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .why-mock {
        padding: 50px 0;
    }

    .why-mock__header {
        margin-bottom: 30px;
    }

    .why-mock__header h2 {
        font-size: 29px;
        letter-spacing: -.025em;
    }

    .why-mock__header h2 span {
        display: inline;
    }

    .why-mock__header > p {
        font-size: 14px;
        line-height: 1.65;
    }

    .why-mock__overview-card {
        padding: 20px;
        border-radius: 20px;
    }

    .why-mock__overview-top h3 {
        font-size: 20px;
    }

    .why-mock__overview-text {
        font-size: 14px;
    }

    .why-mock__stats {
        grid-template-columns: 1fr 1fr;
    }

    .why-mock__features {
        grid-template-columns: 1fr;
    }

    .why-mock__feature {
        padding: 19px;
        border-radius: 17px;
    }

    .why-mock__trust {
        grid-template-columns: 1fr;
    }

    .why-mock__trust-item {
        padding: 16px;
    }

    .why-mock__trust-item + .why-mock__trust-item {
        border-left: 0;
        border-top: 1px solid #edf1f5;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .why-mock__stats {
        grid-template-columns: 1fr;
    }

    .why-mock__overview-top {
        gap: 10px;
    }

    .why-mock__overview-icon {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
    }

    .why-mock__button {
        min-height: 52px;
        font-size: 14px;
    }

    .why-mock__feature {
        gap: 12px;
    }

    .why-mock__feature-icon {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
    }

    .why-mock__feature h3 {
        font-size: 16px;
    }

    .why-mock__feature p {
        font-size: 12px;
    }
}

/* =========================================================
   PREMIUM SEO CONTENT
========================================================= */

.seo-content {
    padding: 72px 0;
    background: #f7f9fc;
    color: #172033;
}

.seo-content .container {
    max-width: 1180px;
}

/* Header */

.seo-content__header {
    max-width: 900px;
    margin: 0 auto 38px;
    text-align: center;
}

.seo-content__eyebrow,
.seo-section-heading > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 13px;
    border: 1px solid #dbe4f0;
    border-radius: 999px;
    background: #fff;
    color: #3156d3;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.seo-content__header h2 {
    margin: 16px 0 14px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.12;
    letter-spacing: -.035em;
    font-weight: 850;
}

.seo-content__header h2 span {
    display: block;
    margin-top: 7px;
    color: #3156d3;
}

.seo-content__lead {
    max-width: 820px;
    margin: auto;
    color: #667085;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   QUICK INFO
========================================================= */

.seo-quick-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 28px;
}

.seo-info-card {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 18px;
    background: #fff;
    border: 1px solid #e5eaf2;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(15, 23, 42, .045);
}

.seo-info-card__icon {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: #eef3ff;
    color: #3156d3;
    font-size: 18px;
}

.seo-info-card strong,
.seo-info-card span {
    display: block;
}

.seo-info-card strong {
    font-size: 20px;
    line-height: 1.1;
}

.seo-info-card div > span {
    margin-top: 4px;
    color: #7b8494;
    font-size: 12px;
    font-weight: 600;
}


/* =========================================================
   PANEL
========================================================= */

.seo-panel {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 22px;
    padding: 30px;
    margin-bottom: 55px;
    background: #fff;
    border: 1px solid #e4e9f1;
    border-radius: 22px;
    box-shadow: 0 15px 45px rgba(15, 23, 42, .055);
}

.seo-panel__icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: #eef3ff;
    color: #3156d3;
    font-size: 22px;
}

.seo-panel h3,
.seo-table-section h3,
.seo-steps h3 {
    margin: 0 0 13px;
    font-size: 26px;
    line-height: 1.25;
}

.seo-panel p,
.seo-long-content p {
    color: #667085;
    font-size: 15px;
    line-height: 1.85;
    margin: 0 0 13px;
}

.seo-panel p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.seo-section-heading {
    margin-bottom: 25px;
}

.seo-section-heading h3 {
    margin: 13px 0 8px;
    font-size: 28px;
}

.seo-section-heading p {
    max-width: 780px;
    margin: 0;
    color: #6b7280;
    line-height: 1.7;
}


/* =========================================================
   BENEFITS
========================================================= */

.seo-benefits {
    margin-bottom: 58px;
}

.seo-benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.seo-benefit-card {
    padding: 24px;
    background: #fff;
    border: 1px solid #e4e9f1;
    border-radius: 18px;
    transition: .25s ease;
}

.seo-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, .08);
}

.seo-benefit-card > span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 14px;
    background: #eef3ff;
    color: #3156d3;
    font-size: 19px;
}

.seo-benefit-card h4 {
    margin: 0 0 9px;
    font-size: 17px;
}

.seo-benefit-card p {
    margin: 0;
    color: #70798a;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   TABLE
========================================================= */

.seo-table-section {
    margin-bottom: 55px;
}

.seo-table-wrap {
    overflow-x: auto;
    background: #fff;
    border: 1px solid #e4e9f1;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(15, 23, 42, .045);
}

.exam-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
}

.exam-table th,
.exam-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #edf0f5;
    text-align: left;
}

.exam-table thead th {
    background: #f8faff;
    color: #475467;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.exam-table tbody td {
    color: #667085;
    font-size: 14px;
}

.exam-table tbody tr:hover {
    background: #fafbff;
}

.exam-table tfoot th {
    background: #f5f7fb;
    color: #172033;
}

.table-subject {
    display: flex;
    align-items: center;
    gap: 10px;
}

.table-subject span {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: #eef3ff;
    color: #3156d3;
}


/* =========================================================
   HIGHLIGHT
========================================================= */

.seo-highlight {
    margin-bottom: 58px;
    padding: 28px;
    border: 1px solid #dce5f8;
    border-radius: 20px;
    background: linear-gradient(135deg, #f7f9ff, #fff);
}

.seo-highlight__header {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 23px;
}

.seo-highlight__header > span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #3156d3;
    color: #fff;
}

.seo-highlight__header h3 {
    margin: 0;
    font-size: 20px;
}

.seo-highlight__header p {
    margin: 3px 0 0;
    color: #7a8494;
    font-size: 13px;
}

.seo-highlight__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.seo-highlight__grid > div {
    padding: 15px;
    background: #fff;
    border: 1px solid #e6eaf2;
    border-radius: 12px;
}

.seo-highlight__grid span,
.seo-highlight__grid strong {
    display: block;
}

.seo-highlight__grid span {
    margin-bottom: 5px;
    color: #7b8494;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.seo-highlight__grid strong {
    font-size: 14px;
}


/* =========================================================
   STEPS
========================================================= */

.seo-steps {
    margin-bottom: 58px;
}

.seo-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.seo-step {
    display: flex;
    gap: 16px;
    padding: 22px;
    background: #fff;
    border: 1px solid #e4e9f1;
    border-radius: 17px;
}

.seo-step__number {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #eef3ff;
    color: #3156d3;
    font-size: 12px;
    font-weight: 900;
}

.seo-step h4 {
    margin: 2px 0 6px;
    font-size: 16px;
}

.seo-step p {
    margin: 0;
    color: #70798a;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   LONG SEO CONTENT
========================================================= */

.seo-long-content {
    max-width: 900px;
    padding: 34px;
    margin-bottom: 35px;
    background: #fff;
    border: 1px solid #e4e9f1;
    border-radius: 20px;
}

.seo-long-content h3 {
    margin: 0 0 18px;
    font-size: 25px;
}


/* =========================================================
   CTA
========================================================= */

.seo-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 30px;
    border-radius: 20px;
    background: linear-gradient(135deg, #162a68, #3156d3);
    color: #fff;
    box-shadow: 0 18px 45px rgba(49, 86, 211, .2);
}

.seo-cta__content > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 800;
    opacity: .85;
    text-transform: uppercase;
}

.seo-cta h3 {
    margin: 0 0 7px;
    font-size: 25px;
}

.seo-cta p {
    max-width: 650px;
    margin: 0;
    color: rgba(255,255,255,.78);
    line-height: 1.65;
}

.seo-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 0 0 auto;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 12px;
    background: #fff;
    color: #1d3f9f;
    text-decoration: none;
    font-weight: 800;
    transition: .2s ease;
}

.seo-cta__button:hover {
    transform: translateY(-2px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .seo-content {
        padding: 55px 0;
    }

    .seo-quick-info {
        grid-template-columns: repeat(2, 1fr);
    }

    .seo-benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .seo-highlight__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .seo-steps__grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .seo-content {
        padding: 42px 0;
    }

    .seo-content .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .seo-content__header {
        margin-bottom: 28px;
    }

    .seo-content__header h2 {
        font-size: 28px;
        line-height: 1.2;
    }

    .seo-content__lead {
        font-size: 14px;
        line-height: 1.7;
    }

    .seo-quick-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .seo-info-card {
        padding: 13px;
        gap: 9px;
        border-radius: 13px;
    }

    .seo-info-card__icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        font-size: 15px;
    }

    .seo-info-card strong {
        font-size: 17px;
    }

    .seo-info-card div > span {
        font-size: 10px;
    }

    .seo-panel {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 21px;
        margin-bottom: 40px;
        border-radius: 17px;
    }

    .seo-panel__icon {
        width: 45px;
        height: 45px;
        font-size: 17px;
    }

    .seo-panel h3,
    .seo-table-section h3,
    .seo-steps h3 {
        font-size: 22px;
    }

    .seo-panel p,
    .seo-long-content p {
        font-size: 14px;
        line-height: 1.75;
    }

    .seo-benefits {
        margin-bottom: 42px;
    }

    .seo-benefits__grid,
    .seo-steps__grid {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .seo-benefit-card {
        padding: 19px;
    }

    .seo-section-heading h3 {
        font-size: 22px;
    }

    .seo-section-heading p {
        font-size: 14px;
    }

    .seo-table-section {
        margin-bottom: 42px;
    }

    .seo-table-wrap {
        border-radius: 14px;
    }

    .exam-table th,
    .exam-table td {
        padding: 13px 14px;
    }

    .seo-highlight {
        padding: 20px;
        margin-bottom: 42px;
        border-radius: 16px;
    }

    .seo-highlight__grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .seo-highlight__grid > div {
        padding: 12px;
    }

    .seo-highlight__grid strong {
        font-size: 13px;
    }

    .seo-step {
        padding: 17px;
    }

    .seo-long-content {
        padding: 21px;
        border-radius: 16px;
    }

    .seo-long-content h3 {
        font-size: 21px;
    }

    .seo-cta {
        flex-direction: column;
        align-items: stretch;
        padding: 22px;
        border-radius: 17px;
    }

    .seo-cta h3 {
        font-size: 22px;
    }

    .seo-cta__button {
        width: 100%;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .seo-quick-info {
        grid-template-columns: 1fr 1fr;
    }

    .seo-info-card {
        min-width: 0;
    }

    .seo-info-card strong {
        font-size: 15px;
    }

    .seo-highlight__grid {
        grid-template-columns: 1fr;
    }

    .seo-content__eyebrow {
        font-size: 10px;
    }

}

/* =========================================================
   PREMIUM FAQ SECTION
========================================================= */

.faq-section {
    position: relative;
    padding: 80px 0;
    background:
        linear-gradient(
            180deg,
            #f8fafc 0%,
            #ffffff 100%
        );
    overflow: hidden;
}

.faq-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -220px;
    right: -180px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.06);
    pointer-events: none;
}

.faq-section::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    bottom: -180px;
    left: -160px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.05);
    pointer-events: none;
}


/* =========================================================
   HEADER
========================================================= */

.faq-header {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto 42px;
    text-align: center;
}

.faq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 13px;
    margin-bottom: 14px;

    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 999px;

    background: rgba(37, 99, 235, 0.06);

    color: #2563eb;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.faq-eyebrow i {
    font-size: 13px;
}

.faq-header h2 {
    margin: 0 0 14px;

    color: #0f172a;

    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.faq-header p {
    max-width: 700px;
    margin: 0 auto;

    color: #64748b;

    font-size: 16px;
    line-height: 1.75;
}


/* =========================================================
   FAQ LIST
========================================================= */

.faq-list {
    position: relative;
    z-index: 1;

    max-width: 920px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    position: relative;

    overflow: hidden;

    border: 1px solid #e2e8f0;
    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 2px 4px rgba(15, 23, 42, 0.02),
        0 10px 30px rgba(15, 23, 42, 0.035);

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.faq-item:hover {
    border-color: rgba(37, 99, 235, 0.22);

    box-shadow:
        0 4px 8px rgba(15, 23, 42, 0.03),
        0 16px 36px rgba(15, 23, 42, 0.07);

    transform: translateY(-1px);
}

.faq-item.is-open {
    border-color: rgba(37, 99, 235, 0.3);

    box-shadow:
        0 5px 12px rgba(15, 23, 42, 0.04),
        0 18px 42px rgba(37, 99, 235, 0.08);
}


/* =========================================================
   QUESTION
========================================================= */

.faq-question {
    width: 100%;
    min-height: 76px;

    display: grid;
    grid-template-columns: 48px 1fr 42px;
    align-items: center;
    gap: 14px;

    padding: 14px 18px;

    border: 0;
    background: transparent;

    color: #0f172a;

    text-align: left;
    cursor: pointer;

    font-family: inherit;
}

.faq-question__number {
    width: 40px;
    height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #f1f5f9;
    color: #64748b;

    font-size: 12px;
    font-weight: 800;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.faq-item.is-open .faq-question__number {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
}

.faq-question__text {
    padding-right: 10px;

    color: #172033;

    font-size: 16px;
    line-height: 1.45;
    font-weight: 700;
}

.faq-question:hover .faq-question__text {
    color: #2563eb;
}

.faq-question:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.2);
    outline-offset: -3px;
}


/* =========================================================
   ICON
========================================================= */

.faq-question__icon {
    width: 38px;
    height: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #e2e8f0;
    border-radius: 50%;

    background: #ffffff;
    color: #475569;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.faq-question__icon i {
    font-size: 12px;
}

.faq-item.is-open .faq-question__icon {
    transform: rotate(45deg);

    background: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
}


/* =========================================================
   ANSWER
========================================================= */

.faq-answer {
    padding: 0 18px 20px 80px;
}

.faq-answer__inner {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 11px;

    padding: 18px 20px;

    border-radius: 12px;

    background: #f8fafc;
    border: 1px solid #eef2f7;
}

.faq-answer__inner > i {
    margin-top: 4px;

    color: #10b981;
    font-size: 15px;
}

.faq-answer p {
    margin: 0;

    color: #64748b;

    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   EMPTY STATE
========================================================= */

.faq-empty {
    padding: 50px 25px;

    border: 1px dashed #cbd5e1;
    border-radius: 16px;

    background: #ffffff;

    text-align: center;
}

.faq-empty > i {
    margin-bottom: 15px;

    color: #94a3b8;
    font-size: 38px;
}

.faq-empty h3 {
    margin: 0 0 8px;

    color: #334155;
    font-size: 19px;
}

.faq-empty p {
    margin: 0;

    color: #64748b;
    font-size: 14px;
}


/* =========================================================
   FOOTER CTA
========================================================= */

.faq-footer {
    position: relative;
    z-index: 1;

    max-width: 920px;
    margin: 28px auto 0;

    display: flex;
    align-items: center;
    gap: 16px;

    padding: 20px 22px;

    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            rgba(37, 99, 235, 0.06),
            rgba(16, 185, 129, 0.045)
        );
}

.faq-footer__icon {
    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: #ffffff;
    color: #2563eb;

    box-shadow: 0 5px 16px rgba(15, 23, 42, 0.07);
}

.faq-footer__content {
    min-width: 0;

    display: flex;
    flex-direction: column;
    gap: 3px;
}

.faq-footer__content strong {
    color: #172033;
    font-size: 14px;
    font-weight: 800;
}

.faq-footer__content span {
    color: #64748b;
    font-size: 13px;
    line-height: 1.5;
}

.faq-footer__btn {
    margin-left: auto;

    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 44px;
    padding: 0 17px;

    border-radius: 11px;

    background: #2563eb;
    color: #ffffff;

    font-size: 13px;
    font-weight: 800;
    text-decoration: none;

    box-shadow:
        0 7px 18px rgba(37, 99, 235, 0.2);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.faq-footer__btn:hover {
    background: #1d4ed8;
    color: #ffffff;

    transform: translateY(-1px);

    box-shadow:
        0 10px 24px rgba(37, 99, 235, 0.28);
}

.faq-footer__btn i {
    transition: transform 0.2s ease;
}

.faq-footer__btn:hover i {
    transform: translateX(3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 767px) {

    .faq-section {
        padding: 60px 0;
    }

    .faq-header {
        margin-bottom: 30px;
        padding: 0 8px;
    }

    .faq-header h2 {
        font-size: 28px;
    }

    .faq-header p {
        font-size: 14px;
        line-height: 1.65;
    }

    .faq-list {
        gap: 10px;
    }

    .faq-question {
        min-height: 68px;

        grid-template-columns: 36px 1fr 36px;

        gap: 10px;
        padding: 12px 13px;
    }

    .faq-question__number {
        width: 34px;
        height: 34px;

        border-radius: 10px;

        font-size: 10px;
    }

    .faq-question__text {
        font-size: 14px;
    }

    .faq-question__icon {
        width: 32px;
        height: 32px;
    }

    .faq-answer {
        padding: 0 13px 15px 59px;
    }

    .faq-answer__inner {
        padding: 14px;
    }

    .faq-answer p {
        font-size: 13px;
        line-height: 1.65;
    }

    .faq-footer {
        align-items: flex-start;
        flex-wrap: wrap;
        padding: 17px;
    }

    .faq-footer__content {
        flex: 1;
    }

    .faq-footer__btn {
        width: 100%;
        margin-left: 0;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .faq-section {
        padding: 48px 0;
    }

    .faq-eyebrow {
        font-size: 10px;
        padding: 6px 10px;
    }

    .faq-header h2 {
        font-size: 24px;
    }

    .faq-header p {
        font-size: 13px;
    }

    .faq-question {
        grid-template-columns: 30px 1fr 32px;
        gap: 8px;

        padding: 11px;
    }

    .faq-question__number {
        width: 30px;
        height: 30px;
    }

    .faq-question__text {
        font-size: 13px;
        line-height: 1.4;
    }

    .faq-question__icon {
        width: 30px;
        height: 30px;
    }

    .faq-answer {
        padding-left: 49px;
    }

    .faq-answer__inner {
        grid-template-columns: 18px 1fr;
        gap: 8px;

        padding: 12px;
    }

    .faq-answer p {
        font-size: 12.5px;
    }

    .faq-footer__icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .faq-footer__content span {
        font-size: 12px;
    }
}

/* =========================================================
   READABILITY FONT-SIZE OVERRIDES
   (kept at the end so they win over the reference styles)
========================================================= */

/* Remove the forced gap that pushes content below the sticky navbar */
body {
    padding-top: 0 !important;
}


/* =========================================================
   HERO
========================================================= */

.mock-test-detail-page .hero__breadcrumb {
    font-size: 13px;
}

.mock-test-detail-page .hero-badge {
    font-size: 12px;
}

.mock-test-detail-page .hero h1 {
    font-size: 36px;
}

.mock-test-detail-page .hero-title-meta span {
    font-size: 12px;
}

.mock-test-detail-page .hero-title-meta i {
    font-size: 12px;
}

.mock-test-detail-page .hero-description {
    font-size: 16px;
}

.mock-test-detail-page .hero-stat strong {
    font-size: 16px;
}

.mock-test-detail-page .hero-stat small {
    font-size: 11px;
}

.mock-test-detail-page .hero-feature {
    font-size: 12.5px;
}

.mock-test-detail-page .hero-feature i {
    font-size: 12px;
}

.mock-test-detail-page .hero-main-btn__content strong {
    font-size: 15px;
}

.mock-test-detail-page .hero-main-btn__content small {
    font-size: 11px;
}

.mock-test-detail-page .hero-trust span {
    font-size: 12px;
}

.mock-test-detail-page .hero-trust i {
    font-size: 12px;
}

/* Right card */
.mock-test-detail-page .hero-card h2 {
    font-size: 24px;
}

.mock-test-detail-page .hero-card__description {
    font-size: 14px;
}

.mock-test-detail-page .hero-card__list div {
    font-size: 13.5px;
}

.mock-test-detail-page .hero-card__button {
    font-size: 14px;
}

.mock-test-detail-page .hero-card__trust span {
    font-size: 11px;
}


/* =========================================================
   TEST LIST / CARDS
========================================================= */

.mock-test-detail-page .test-list__eyebrow,
.mock-test-detail-page .tests-list-header__eyebrow {
    font-size: 13px;
}

.mock-test-detail-page .test-list__heading p {
    font-size: 16px;
}

.mock-test-detail-page .filter-chip {
    font-size: 15px;
}

.mock-test-detail-page .test-sort label {
    font-size: 14px;
}

.mock-test-detail-page .test-sort select {
    font-size: 14px;
}

/* Featured test */
.mock-test-detail-page .featured-badge {
    font-size: 12px;
}

.mock-test-detail-page .featured-test__updated {
    font-size: 13px;
}

.mock-test-detail-page .featured-test h3 {
    font-size: 28px;
}

.mock-test-detail-page .featured-test__description {
    font-size: 16px;
}

.mock-test-detail-page .featured-test__stats strong {
    font-size: 17px;
}

.mock-test-detail-page .featured-test__stats span {
    font-size: 12px;
}

.mock-test-detail-page .featured-test__cta strong {
    font-size: 15px;
}

.mock-test-detail-page .featured-test__attempts strong {
    font-size: 14px;
}

.mock-test-detail-page .featured-test__attempts span {
    font-size: 12px;
}

/* Overview side */
.mock-test-detail-page .featured-test__side-header {
    font-size: 15px;
}

.mock-test-detail-page .overview-grid strong {
    font-size: 15px;
}

.mock-test-detail-page .overview-grid span {
    font-size: 11px;
}

.mock-test-detail-page .featured-test__trust span {
    font-size: 12px;
}

/* List header */
.mock-test-detail-page .tests-list-header h3 {
    font-size: 24px;
}

.mock-test-detail-page .tests-list-header p {
    font-size: 14px;
}

.mock-test-detail-page .tests-list-header__result strong {
    font-size: 22px;
}

.mock-test-detail-page .tests-list-header__result span {
    font-size: 12px;
}

/* Test cards */
.mock-test-detail-page .test-card__body h3 {
    font-size: 18px;
}

.mock-test-detail-page .test-card__meta span,
.mock-test-detail-page .test-card__features span {
    font-size: 13px;
}

.mock-test-detail-page .test-badge {
    font-size: 11px;
}

.mock-test-detail-page .start-test-btn {
    font-size: 13px;
}


/* =========================================================
   EXPLORE SERIES
========================================================= */

.mock-test-detail-page .explore-series__header span {
    font-size: 13px;
}

.mock-test-detail-page .explore-series__header h2 {
    font-size: 27px;
}

.mock-test-detail-page .explore-series__header p {
    font-size: 14px;
}

.mock-test-detail-page .series-card__category {
    font-size: 11px;
}

.mock-test-detail-page .series-card h3 {
    font-size: 14px;
}

.mock-test-detail-page .series-card__meta span {
    font-size: 11px;
}


/* =========================================================
   WHY MOCK
========================================================= */

.mock-test-detail-page .why-mock__overview-text {
    font-size: 17px;
}

.mock-test-detail-page .why-mock__stat strong {
    font-size: 19px;
}

.mock-test-detail-page .why-mock__stat span {
    font-size: 13px;
}

.mock-test-detail-page .why-mock__feature p {
    font-size: 15px;
}

.mock-test-detail-page .why-mock__feature li {
    font-size: 13px;
}

.mock-test-detail-page .why-mock__trust-item span {
    font-size: 12px;
}


/* =========================================================
   SEO CONTENT
========================================================= */

.mock-test-detail-page .seo-content__lead {
    font-size: 18px;
}

.mock-test-detail-page .seo-panel p,
.mock-test-detail-page .seo-long-content p {
    font-size: 17px;
}

.mock-test-detail-page .seo-section-heading p {
    font-size: 16px;
}

.mock-test-detail-page .seo-benefit-card h4 {
    font-size: 19px;
}

.mock-test-detail-page .seo-benefit-card p {
    font-size: 15px;
}

.mock-test-detail-page .exam-table tbody td {
    font-size: 15px;
}

.mock-test-detail-page .seo-highlight__grid strong {
    font-size: 16px;
}

.mock-test-detail-page .seo-highlight__grid span {
    font-size: 12px;
}

.mock-test-detail-page .seo-step h4 {
    font-size: 18px;
}

.mock-test-detail-page .seo-step p {
    font-size: 15px;
}


/* =========================================================
   FAQ
========================================================= */

.mock-test-detail-page .faq-header p {
    font-size: 18px;
}

.mock-test-detail-page .faq-question__text {
    font-size: 18px;
}

.mock-test-detail-page .faq-answer p {
    font-size: 16px;
}

.mock-test-detail-page .faq-footer__content strong {
    font-size: 16px;
}

.mock-test-detail-page .faq-footer__content span {
    font-size: 14px;
}

.mock-test-detail-page .faq-footer__btn {
    font-size: 15px;
}


/* =========================================================
   MOBILE - keep readable but slightly reduced
========================================================= */

@media (max-width: 767px) {
    .mock-test-detail-page .hero h1 { font-size: 30px; }
    .mock-test-detail-page .hero-description { font-size: 15px; }
    .mock-test-detail-page .hero-stat strong { font-size: 14px; }
    .mock-test-detail-page .featured-test h3 { font-size: 24px; }
    .mock-test-detail-page .featured-test__description { font-size: 15px; }
    .mock-test-detail-page .test-card__body h3 { font-size: 16px; }
    .mock-test-detail-page .faq-question__text { font-size: 16px; }
}
