/* ── Questionnaire Page ─────────────────────────────────────────────────────── */

.questionnaire-page {
    --qp-dark: #01143F;
    --qp-darker: #000417;
    --qp-bg: var(--Bg-Radial);
    --qp-gold: #B8A97A;
    --qp-gold-light: #D4C594;
    --qr-pure-gold: #968368;
    --qp-white: #B8C3D6;
    --qp-gray: #B8C3D6;
    --qp-border: rgba(255, 255, 255, 0.15);
    --qp-section-py: 96px;
    --Logo-Gold: #B8B195;

    background: var(--qp-bg);
    color: var(--qp-white);
    margin-top: 36px;
}

@media (min-width: 640px) {
    .questionnaire-page {
        margin-top: 67px;
    }
}
@media (min-width: 782px) {
    .questionnaire-page {
        margin-top: 87px;
    }
}
@media (max-width: 500px) {
    .questionnaire-page {
        margin-top: 0;
    }
}
@media (max-width: 768px) {
    .questionnaire-page {
        --qp-section-py: 56px;
    }
}
@media (max-width: 480px) {
    .questionnaire-page {
        --qp-section-py: 40px;
    }
}

/* ── Shared utilities ───────────────────────────────────────────────────────── */

.qp-badge {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 8px;
    text-transform: uppercase;
    position: relative;
    width: 100%;
    display: inline-flex;
    align-items: center;
    word-spacing: .5rem;
}
.qp-badge:after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--Pure-gold);
    margin-left: 12px;
}

.qp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: opacity .2s;
}
.qp-btn:hover {
    opacity: .85;
}
.qp-btn.qp-btn--gold {
    background: var(--Pure-gold);
    color: white;
}

.qp-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--qp-gold);
    text-decoration: none;
    margin-top: 16px;
    transition: gap .2s;
}
.qp-link-arrow:hover {
    gap: 10px;
}

/* ── Hero ───────────────────────────────────────────────────────────────────── */

.qp-hero {
    background: linear-gradient(270deg, rgba(1, 20, 63, 0) 0%, rgba(1, 20, 63, 0.7) 100%),
    var(--qp-hero-bg) center / cover no-repeat;
    padding: 180px 0 200px;
    position: relative;
}
@media (max-width: 768px) {
    .qp-hero {
        background-image: linear-gradient(180deg, rgba(1, 20, 63, 0.2) 0%, rgba(1, 20, 63, 0.85) 60%),
        var(--qp-hero-bg-mobile);
        background-position: center bottom;
        background-size: cover;
        padding: 80px 0 55px;
        display: flex;
        height: calc(100vh - 34vh);
    }

    .qp-hero .container {
        margin-top: auto;
    }
}

.qp-hero__content {
    max-width: 710px;
}

.qr-hero__label-wrapper {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 24px;
}
.qr-hero__label-wrapper .qr-hero__badge {
    width: 6px;
    height: 6px;
    background: #CB2128;
    border-radius: 99999999px;
}
.qr-hero__label-wrapper .qp-hero__label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--qp-white);
}

.qp-hero__title {
    font-size: 64px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--qp-white);
    margin: 0 0 8px;
}

.qp-hero__description {
    font-size: 24px;
    line-height: 32px;
    color: white;
    margin: 0 0 60px;
}
@media (max-width: 1280px) {
    .qp-hero__title {
        font-size: 48px;
    }

    .qp-hero__description {
        font-size: 18px;
        line-height: 28px;
    }
}
@media (max-width: 768px) {
    .qp-hero__title {
        font-size: 36px;
    }
    .qp-hero__description {
        font-size: 16px;
        line-height: 24px;
        margin: 0 0 40px;
    }
}
@media (max-width: 480px) {
    .qp-hero__title {
        font-size: 28px;
    }

    .qp-hero__description {
        line-height: 20px;
    }
}

/* ── Stats Bar ──────────────────────────────────────────────────────────────── */

.qp-stats {
    padding: 32px 0;
}
@media screen and (max-width: 768px) {
    .qp-stats {
        padding: 16px 0;
    }
}
.qp-stats .container {
    padding: 0;
}
@media (max-width: 640px) {
    .qp-stats {
        overflow: hidden;
    }
}

@keyframes qp-stats-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.qp-stats__grid {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 32px;
    overflow-x: hidden;
}
@media (max-width: 640px) {
    .qp-stats__grid {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 0;
        animation: qp-stats-marquee 22s linear infinite;
        width: max-content;
    }
}

.qp-stats__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    flex: 1;
    padding: 0 12px;
}
@media (max-width: 768px) {
    .qp-stats__item {
        border-right: none;
    }
}
@media (max-width: 640px) {
    .qp-stats__item {
        flex: 0 0 auto;
        min-width: 140px;
        padding: 0 20px;
    }
    .qp-stats__item:last-child {
        border-right: none;
    }
}

.qp-stats__value {
    font-size: 32px;
    font-weight: 700;
    color: var(--qp-white);
    line-height: 1;
}
@media (max-width: 768px) {
    .qp-stats__value {
        font-size: 28px;
    }
}

.qp-stats__label {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--qp-white);
}
@media (max-width: 480px) {
    .qp-stats__label {
        font-size: 14px;
    }
}

/* ── What Personalised Means ────────────────────────────────────────────────── */

.qp-what-means {
    padding:  0 0 var(--qp-section-py);
}

.qp-what-means__header {
    margin-bottom: 32px;
}
@media (max-width: 480px) {
    .qp-what-means__header {
        margin-bottom: 24px;
    }
    .qp-what-means {
        padding-top: 0;
    }
}

.qp-what-means__title {
    font-size: 46px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--qp-white);
    margin: 0 0 16px;
}
@media (max-width: 768px) {
    .qp-what-means__title {
        font-size: 28px;
    }
}

.qp-what-means__desc {
    font-size: 24px;
    color: var(--qp-white);
    text-transform: uppercase;
    margin: 0;
}
@media (max-width: 768px) {
    .qp-what-means__desc {
        font-size: 18px;
    }
}

.qp-what-means__steps {
    position: relative;
    display: flex;
    flex-direction: column;
}

.qp-what-means__step {
    display: flex;
    align-items: start;
    gap: 12px;
    position: relative;
}
.qp-what-means__step:last-child {
    padding-bottom: 0;
}
.qp-what-means__step:last-child .qp-what-means__step-timeline::before {
    display: none;
}

/* aside: число + точка в одной строке */
.qp-what-means__step-aside {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
@media (max-width: 480px) {
    .qp-what-means__step-aside {
        display: block;
        position: absolute;
        top: 50px;
        z-index: 2;
        left: 20px;
    }
}

.qp-what-means__step-num {
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
    flex-shrink: 0;
}

.qp-what-means__step-btns .qp-btn {
    width: 100%;
    margin-top: 48px;
}
@media (max-width: 768px) {
    .qp-what-means__step-num {
        font-size: 32px;
    }

    .qp-what-means__step-btns .qp-btn {
        margin-top: 24px;
    }
}
@media (max-width: 480px) {
    .qp-what-means__step-num {
        font-size: 24px;
    }
    .qp-what-means__step-btns .qp-btn {
        margin-top: 16px;
    }
}

.qp-what-means__step-timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}
.qp-what-means__step-timeline:before {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background: var(--Pure-gold);
    margin-top: 4px;
}
@media (max-width: 480px) {
    .qp-what-means__step-timeline {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 14px;
        z-index: 21;
    }
    .qp-what-means__step-timeline::before {
        top: 67px;
        height: 100%;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        margin-top: 0;
    }
}

.qp-what-means__step-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--qp-gold);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    margin-top: 4px;
}
@media (max-width: 480px) {
    .qp-what-means__step-dot {
        margin-top: 53px;
    }
}

.qp-what-means__step-line {
    display: none;
}

/* body: контент + фото */
.qp-what-means__step-body {
    display: flex;
    align-items: start;
    width: 100%;
    gap: 12px;
    padding-top: 12px;
}
@media (max-width: 480px) {
    .qp-what-means__step-body {
        padding-top: 0;
        position: relative;
    }
}

.qp-what-means__step-main {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 48px;
}
@media (max-width: 768px) {
    .qp-what-means__step-main {
        flex-direction: column;
        gap: 24px;
    }
}

.qp-what-means__step-content {
    width: 50%;
}
@media (max-width: 768px) {
    .qp-what-means__step-content {
        width: 100%;
    }
}
@media (max-width: 480px) {
    .qp-what-means__step-content {
        padding-left: 16px;
    }
}

.qp-what-means__step-label {
    display: block;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
@media (max-width: 768px) {
    .qp-what-means__step-label {
        font-size: 18px;
        margin-bottom: 16px;
    }
}

.qp-what-means__step-title {
    font-size: 18px;
    font-weight: 300;
    line-height: 22px;
    color: var(--qp-white);
    margin: 0 0 20px;
}
@media (max-width: 768px) {
    .qp-what-means__step-title {
        margin: 0 0 12px;
    }
}

.qp-what-means__step-desc {
    font-size: 14px;
    line-height: 16px;
    margin: 0 0 16px;
    text-transform: uppercase;
}

.qp-what-means__step-sublabel {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--qp-gold);
    margin-top: 16px;
}

.qp-what-means__step-image {
    border-radius: 4px;
    width: 50%;
    overflow: hidden;
    position: relative;
}
.qp-what-means__step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-height: 240px;
    position: relative;
}
.qp-what-means__step-image:before {
    content: '';
    position: absolute;
    background: linear-gradient(270deg, rgba(1, 20, 63, 0.20) 0%, rgba(1, 20, 63, 0.80) 100%), var(--image) lightgray center / cover no-repeat;
    width: 100%;
    height: 100%;
    z-index: 10;
    top: 0;
    left: 0;
    max-height: 240px;
    opacity: 1;
    -webkit-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
}
@media screen and (max-width: 480px) {
    .qp-what-means__step-image:before {
        z-index: 1;
    }
}
@media (max-width: 1024px) {
    .qp-what-means__step-image {
        aspect-ratio: 16 / 9;
    }
}
@media (max-width: 768px) {
    .qp-what-means__step-image {
        width: 100%;
    }
}
@media (max-width: 480px) {
    .qp-what-means__step-image {
        order: -1;
        height: 120px;
        aspect-ratio: unset;
        position: relative;
    }
}

.qp-what-means__step-main:hover .qp-what-means__step-image:before {
    opacity: 0;
}

/* ── Science ────────────────────────────────────────────────────────────────── */

.qp-science {
    padding-bottom: var(--qp-section-py);
}

.qp-science__header {
    margin-bottom: 56px;
}
@media (max-width: 768px) {
    .qp-science__header {
        margin-bottom: 32px;
    }
}

.qp-science__title {
    font-size: 46px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--qp-white);
    margin: 0 0 16px;
    max-width: 640px;
    line-height: 1.1;
}
@media (max-width: 768px) {
    .qp-science__title {
        font-size: 28px;
    }
}

.qp-science__desc {
    font-size: 24px;
    color: var(--qp-gray);
    max-width: 680px;
    margin: 0;
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .qp-science__desc {
        font-size: 18px;
    }
}

.qp-science__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
@media (max-width: 1024px) {
    .qp-science__cards {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 580px) {
    .qp-science__cards {
        gap: 16px;
        grid-template-columns: 1fr;
    }
}

.qp-science__card {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.qp-science__card-body {
    padding: 24px;
    border-top: unset;
}
@media (max-width: 580px) {
    .qp-science__card-body {
        padding: 14px;
    }
}

.qp-science__footer {
    display: flex;
    justify-content: space-between;
}

.qp-science__card-img {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    max-height: 402px;
}
.qp-science__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    -webkit-transition: transform .4s ease;
    transition: transform .4s ease;
}
.qp-science__card-img:hover img {
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
}
@media (max-width: 580px) {
    .qp-science__card-img {
        aspect-ratio: 1 / 1;
        max-height: none;
    }
}
@media (max-width: 400px) {
    .qp-science__card-img {
        aspect-ratio: 16 / 9;
    }
}

.qp-science__card-label-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.qp-science__card-divider-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.18);
}

.qp-science__card-label {
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    line-height: 28px;
    min-height: 56px;
}
@media (max-width: 768px) {
    .qp-science__card-label {
        font-size: 18px;
    }
}
@media (max-width: 480px) {
    .qp-science__card-label {
        font-size: 16px;
        text-wrap: unset;
        text-align: center;
        min-height: unset;
    }
}

.qp-science__card-desc {
    font-size: 18px;
    color: var(--qp-gray);
    line-height: 22px;
    font-weight: 300;
    margin: 0;
    text-align: center;
    overflow: hidden;
    -webkit-transition: max-height 0.35s ease;
    transition: max-height 0.35s ease;
}
.qp-science__card-desc.is-expanded {
    -webkit-line-clamp: unset;
    display: block;
    overflow: visible;
}
@media (max-width: 580px) {
    .qp-science__card-desc {
        font-size: 16px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        line-height: 18px;
    }
}
@media (max-width: 400px) {
    .qp-science__card-desc {
        -webkit-line-clamp: unset;
        overflow: visible;
    }
}

.qp-science__toggle {
    display: none;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    -webkit-transition: color 0.2s ease;
    transition: color 0.2s ease;
}
.qp-science__toggle:hover {
    color: white;
}
.qp-science__toggle.is-visible {
    display: inline-flex;
}

.qp-science__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 20px;
}

.qp-science__card-subtitle {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
}

.qp-science__dots {
    display: none;
}

.qp-science__dot {
    width: 8px;
    height: 8px;
    background: rgba(222, 232, 248, 0.6);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s ease;
    flex-shrink: 0;
}
.qp-science__dot.is-active {
    background: white;
}

@media (max-width: 540px) {
    .qp-science__cards {
        display: block;
        position: relative;
        overflow: hidden;
    }
    .qp-science__card {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        opacity: 0;
        pointer-events: none;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.35s ease;
        will-change: transform, opacity;
    }
    .qp-science__card.is-active {
        position: relative;
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
    }
    .qp-science__card.ts-no-trans {
        transition: none !important;
    }
    .qp-science__card.ts-enter-left {
        transform: translateX(-100%) !important;
    }
    .qp-science__card.ts-exit-left {
        transform: translateX(-100%);
        opacity: 0;
        position: absolute;
    }
    .qp-science__card.ts-exit-right {
        transform: translateX(100%);
        opacity: 0;
        position: absolute;
    }
    .qp-science__dots {
        display: flex;
        justify-content: start;
        gap: 8px;
        margin-top: 20px;
    }
}

/* ── Quiz ───────────────────────────────────────────────────────────────────── */

.qp-quiz {
    margin-bottom: var(--qp-section-py);
}

.qp-quiz__title {
    font-size: 46px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--qp-white);
    margin: 0 0 32px;
}
@media (max-width: 768px) {
    .qp-quiz__title {
        font-size: 26px;
    }
}

.qp-quiz__tabs {
    display: inline-flex;
    gap: 0;
    margin-bottom: 32px;
}
@media (max-width: 480px) {
    .qp-quiz__tabs {
        display: -webkit-flex;
        display: flex;
        width: 100%;
    }
}

.qp-quiz__tab {
    padding: 12px 16px;
    font-size: 17px;
    font-weight: 400;
    margin: 0;
    text-transform: uppercase;
    display: -webkit-flex;
    display: flex;
    gap: 4px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 232px;
    border: 1px solid transparent;
    border-image: var(--Pure-gold) 1;
    background: none;
    color: var(--qp-white);
    -webkit-transition: color .2s, background .2s;
    transition: color .2s, background .2s;
}
.qp-quiz__tab svg {
    display: none;
}
.qp-quiz__tab:first-child {
    border-right: none;
}
.qp-quiz__tab:last-child {
    border-left: none;
}
.qp-quiz__tab.is-active svg {
    display: block;
}
.qp-quiz__tab.is-active,
.qp-quiz__tab:hover {
    background: var(--Pure-gold);
    color: var(--qp-dark);
}
@media (max-width: 480px) {
    .qp-quiz__tab {
        flex: 1;
        width: auto;
        font-size: 13px;
        padding: 12px 8px;
    }
}

.qp-quiz__section-label {
    font-size: 24px;
    font-weight: 600;
    line-height: 22px;
    text-transform: uppercase;
    color: var(--qp-white);
    margin: 0 0 16px;
}
@media (max-width: 768px) {
    .qp-quiz__section-label {
        font-size: 18px;
    }
}

.qp-quiz__age {
    margin-bottom: 32px;
}

.qp-quiz__age-groups {
    display: -webkit-flex;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.qp-quiz__age-btn {
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: transparent;
    border: 1px solid transparent;
    border-image: var(--Pure-gold) 1;
    color: var(--qp-white);
    cursor: pointer;
    -webkit-transition: border-color .2s, color .2s, background .3s;
    transition: border-color .2s, color .2s, background .3s;
    border-radius: 2px;
}
.qp-quiz__age-btn svg {
    display: none;
}
.qp-quiz__age-btn.is-active svg {
    display: block;
}
.qp-quiz__age-btn.is-active,
.qp-quiz__age-btn:hover {
    background: var(--Pure-gold);
    color: var(--qp-dark);
}

.qp-quiz__slider-wrap {
    position: relative;
}

.qp-quiz__areas-slider {
    overflow: hidden;
}

.qp-quiz__slider-controls {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 0;
    margin-bottom: 20px;
}

.qp-quiz__areas-prev,
.qp-quiz__areas-next {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    background: transparent;
    border: none;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    -webkit-transition: border-color .2s, background .2s;
    transition: border-color .2s, background .2s;
}
.qp-quiz__areas-prev:hover,
.qp-quiz__areas-next:hover {
    background: rgba(184, 169, 122, 0.08);
}
.qp-quiz__areas-prev.swiper-button-disabled,
.qp-quiz__areas-next.swiper-button-disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

.qp-quiz__area-slide {
    width: 148px !important;
}
@media (max-width: 768px) {
    .qp-quiz__area-slide {
        width: 124px !important;
    }
}

.qp-quiz__area-card {
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1px solid transparent;
    cursor: pointer;
    -webkit-transition: border-color .2s;
    transition: border-color .2s;
    padding: 0;
    border-radius: 4px;
    width: 100%;
}
.qp-quiz__area-card .category-image__overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #1F3357;
    mix-blend-mode: color;
    flex: none;
    z-index: 1;
}
.qp-quiz__area-card.is-active .category-image__overlay {
    display: none;
}

.swiper-wrapper {
    justify-content: space-between;
}

.qp-quiz__area-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    border-radius: 3px;
    -webkit-transition: filter .25s;
    transition: filter .25s;
}

.qp-quiz__area-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px 8px;
    box-sizing: border-box;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: left;
}

.qp-quiz__area-label,
.qp-quiz__area-img {
    -webkit-filter: grayscale(0.60) brightness(0.9);
    filter: grayscale(0.60) brightness(0.9);
}

.qp-quiz__area-card:hover .qp-quiz__area-label,
.qp-quiz__area-card.is-active .qp-quiz__area-label,
.qp-quiz__area-card:hover .qp-quiz__area-img,
.qp-quiz__area-card.is-active .qp-quiz__area-img {
    -webkit-filter: none;
    filter: none;
}

.qp-quiz__select-label {
    font-size: 24px;
    font-weight: 600;
    line-height: 22px;
    text-transform: uppercase;
    color: var(--qp-white);
    margin: 0 0 12px;
}
@media (max-width: 768px) {
    .qp-quiz__select-label {
        font-size: 16px;
    }
}

.qp-quiz__area-detail-header {
    margin-bottom: 24px;
}

.qp-quiz__area-detail-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}
@media (max-width: 860px) {
    .qp-quiz__area-detail-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.qp-quiz__area-detail-img {
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
}
.qp-quiz__area-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.qp-quiz__area-detail-title {
    font-size: 36px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--qp-white);
    margin: 0;
    line-height: 36px;
}
@media (max-width: 768px) {
    .qp-quiz__area-detail-title {
        font-size: 24px;
        line-height: 28px;
    }
}

.qp-quiz__disclaimer {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 16px;
    text-align: center;
    letter-spacing: 0.06em;
}

.qp-quiz__area-detail-content {
    display: -webkit-flex;
    display: flex;
    gap: 12px;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    flex: 1;
}

.qp-quiz__footer {
    display: -webkit-flex;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}
.qp-quiz__footer .qp-btn {
    width: 100%;
}

.qp-quiz__options {
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.qp-quiz__option {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px;
}
.qp-quiz__option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.quiz__option-checked {
    display: none;
}

.quiz__option-unchecked {
    display: block;
}

.qp-quiz__option input:checked ~ .quiz__option-checked {
    display: block;
}

.qp-quiz__option input:checked ~ .quiz__option-unchecked {
    display: none;
}

.qp-quiz__option-text {
    font-size: 18px;
    color: var(--qp-white);
    font-weight: 300;
    line-height: 22px;
}

@media screen and (max-width: 768px) {
    .qp-quiz__option-text {
        font-size: 16px;
    }
}

.qp-quiz__area-detail.is-hidden {
    display: none;
}

.qp-quiz__cta:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.qp-quiz__area-detail.has-limit .qp-quiz__option:not(:has(input:checked)) {
    opacity: 0.35;
    pointer-events: none;
    cursor: default;
}

.qp-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(12px);
    transform: translateX(-50%) translateY(12px);
    background: #1F3357;
    color: #DEE8F8;
    border: 1px solid rgba(184, 169, 122, 0.35);
    padding: 12px 24px;
    font-size: 14px;
    letter-spacing: 0.02em;
    border-radius: 4px;
    opacity: 0;
    -webkit-transition: opacity 0.25s ease, transform 0.25s ease;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 9999;
    pointer-events: none;
    white-space: nowrap;
}
.qp-toast.is-visible {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(0);
    transform: translateX(-50%) translateY(0);
}

/* ── Trust Bar ──────────────────────────────────────────────────────────────── */

.qp-trust-bar {
    overflow: hidden;
}

.qp-trust-bar__track {
    display: -webkit-flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 24px;
    animation: qp-stats-marquee 22s linear infinite;
    width: max-content;
}

@keyframes qp-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.qp-trust-bar__item {
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    gap: 24px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--qp-white);
    flex-shrink: 0;
}
.qp-trust-bar__item img {
    width: 32px;
    height: 32px;
}

.qp-trust-bar__dot {
    color: var(--qp-gold);
    flex-shrink: 0;
}

/* ── Experts ────────────────────────────────────────────────────────────────── */

.qp-experts {
    padding-top: var(--qp-section-py);
}

.qp-experts__header {
    margin-bottom: 56px;
}
@media (max-width: 768px) {
    .qp-experts__header {
        margin-bottom: 32px;
    }
}

.qp-experts__title {
    font-size: 46px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--qp-white);
    margin: 0 0 16px;
}
@media (max-width: 768px) {
    .qp-experts__title {
        font-size: 26px;
    }
}

.qp-experts__desc {
    font-size: 18px;
    color: var(--qp-gray);
    font-weight: 400;
    line-height: 32px;
    margin: 0;
}
@media (max-width: 768px) {
    .qp-experts__desc {
        font-size: 16px;
        line-height: 18px;
    }
}

.qp-experts__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
@media (max-width: 1024px) {
    .qp-experts__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.qp-experts__dots {
    display: none;
}

.qp-experts__dot {
    width: 8px;
    height: 8px;
    background: rgba(222, 232, 248, 0.6);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s ease;
    flex-shrink: 0;
}
.qp-experts__dot.is-active {
    background: white;
}

@media (max-width: 540px) {
    .qp-experts__grid {
        display: block;
        position: relative;
        overflow: hidden;
    }
    .qp-experts__card {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        opacity: 0;
        pointer-events: none;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.35s ease;
        will-change: transform, opacity;
    }
    .qp-experts__card.is-active {
        position: relative;
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
    }
    .qp-experts__card.ts-no-trans {
        transition: none !important;
    }
    .qp-experts__card.ts-enter-left {
        transform: translateX(-100%) !important;
    }
    .qp-experts__card.ts-exit-left {
        transform: translateX(-100%);
        opacity: 0;
        position: absolute;
    }
    .qp-experts__card.ts-exit-right {
        transform: translateX(100%);
        opacity: 0;
        position: absolute;
    }
    .qp-experts__dots {
        display: flex;
        justify-content: start;
        gap: 8px;
        margin-top: 20px;
    }
}

.qp-experts__card {
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
}

.qp-experts__photo {
    overflow: hidden;
    margin-bottom: 24px;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
}
.qp-experts__photo img {
    width: 100%;
    max-width: 177px;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    aspect-ratio: 1 / 1;
    display: block;
    border: 2px solid #968368;
    border-radius: 9999999999999px;
}

.qp-experts__name {
    font-size: 19px;
    font-weight: 600;
    line-height: 18px;
    color: #fff;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    margin: 0 0 21px;
    text-align: center;
}



.qp-experts__role {
    font-size: 18px;
    font-weight: 300;
    line-height: 18px;
    text-align: center;
    min-height: 36px;
}

.qp-experts__bio {
    font-size: 18px;
    color: var(--qp-gray);
    line-height: 1.65;
    text-align: center;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .qp-experts__name {
        font-size: 17px;
    }

    .qp-experts__role, .qp-experts__bio {
        font-size: 16px;
    }

}

@media screen and (max-width: 768px) {
    .qp-experts__bio {
        text-align: center;
    }
}

/* ── Testimonials ───────────────────────────────────────────────────────────── */

.qp-testimonials {
    padding: var(--qp-section-py) 0;
}

.qp-testimonials__header {
    margin-bottom: 48px;
}

.qp-testimonials__title {
    font-size: 46px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--qp-white);
    margin: 0 0 12px;
}
@media (max-width: 768px) {
    .qp-testimonials__title {
        font-size: 26px;
    }
    .qp-experts__role {
        min-height: auto;
    }
}

.qp-testimonials__desc {
    font-size: 24px;
    color: var(--qp-gray);
    text-transform: uppercase;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .qp-testimonials__desc {
        font-size: 18px;
    }

}

.qp-testimonials__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: start;
}
@media (max-width: 1024px) {
    .qp-testimonials__body {
        grid-template-columns: 1fr;
    }
}

.qp-testimonials__photos {
    position: relative;
}

.qp-testimonials__photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.qp-testimonials__media {
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.qp-testimonials__media > img,
.qp-testimonials__video-thumb img,
.qp-testimonials__video-player {
    width: 100%;
    aspect-ratio: 343 / 460;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

.qp-testimonials__media-author {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 8px;
}

.qp-testimonials__media-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.qp-testimonials__media-nick {
    font-size: 17px;
    font-weight: 500;
    line-height: 20px;
    color: var(--qp-white);
}

.qp-testimonials__score {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.qp-testimonials__score-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--qp-white);
    line-height: 1;
}

.qp-testimonials__score-stars {
    display: -webkit-flex;
    display: flex;
    gap: 4px;
}

.qp-testimonials__score-count {
    font-size: 13px;
    color: var(--qp-gray);
}

.qp-testimonials__cards {
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.qp-testimonials__review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--qp-border);
    padding: 24px;
    border-radius: 4px;
}

.qp-testimonials__stars {
    display: -webkit-flex;
    display: flex;
    gap: 4px;
    margin-bottom: 14px;
}

.qp-star {
    color: rgba(255, 255, 255, 0.2);
}
.qp-star.is-filled {
    color: var(--qp-gold);
}

.qp-testimonials__author {
    font-size: 18px;
    font-weight: 700;
    color: var(--qp-white);
    margin: 0 0 6px;
}

.qp-testimonials__details {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--qp-gray);
    margin: 0 0 16px;
}

.qp-testimonials__text {
    font-size: 18px;
    color: var(--qp-gray);
    line-height: 1.7;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .qp-testimonials__text {
        font-size: 16px;
    }

}

/* ── FAQ ────────────────────────────────────────────────────────────────────── */

.qp-faq {
    padding-bottom: var(--qp-section-py);
}

.qp-faq__title {
    font-size: 46px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 48px;
    color: var(--qp-white);
    margin: 0 0 32px;
}
@media (max-width: 768px) {
    .qp-faq__title {
        font-size: 26px;
    }
}

.qp-faq__body {
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    gap: 48px;
    align-items: start;
}
@media (max-width: 768px) {
    .qp-faq__body {
        flex-direction: column;
        gap: 32px;
    }
}

.qp-faq__image {
    position: sticky;
    top: 120px;
    width: 50%;
    border-radius: 4px;
    overflow: hidden;
}
.qp-faq__image img {
    width: 100%;
    display: block;
}
@media (max-width: 1024px) {
    .qp-faq__image {
        position: static;
        max-width: 480px;
    }
}
@media (max-width: 768px) {
    .qp-faq__image {
        width: 100%;
        max-width: none;
    }
}

.qp-faq__questions {
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    width: 50%;
}

.qp-faq__questions .faq__questions-tabs {
    display: -webkit-flex;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.qp-faq__questions .faq__tab {
    color: var(--Color-Blue);
    font-size: 24px;
    line-height: 32px;
    cursor: pointer;
    padding-bottom: 8px;
    text-transform: uppercase;
    background: transparent;
    border: none;
    border-bottom: 1px solid transparent;
}

.qp-faq__questions .faq__tab.active {
    color: var(--Logo-Gold);
    border-color: var(--Logo-Gold);
}
@media (max-width: 768px) {
    .qp-faq__questions {
        width: 100%;
    }
    .qp-faq__questions .faq__questions-tabs {
        gap: 16px;
        margin-bottom: 0;
    }
    .qp-faq__questions .faq__tab {
        font-size: 18px;
        line-height: 26px;
    }
}

.qp-faq__item {
    border-bottom: 1px solid var(--qp-border);
    overflow: hidden;
}

.qp-faq__question {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 20px 0;
    background: transparent;
    border: none;
    color: var(--qp-white);
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    line-height: 1.4;
    text-transform: uppercase;
}

.qp-faq__icon {
    flex-shrink: 0;
    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}
.qp-faq__item.is-open .qp-faq__icon {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.qp-faq__answer {
    display: grid;
    grid-template-rows: 0fr;
    -webkit-transition: grid-template-rows 0.35s ease;
    transition: grid-template-rows 0.35s ease;
}
.qp-faq__item.is-open .qp-faq__answer {
    grid-template-rows: 1fr;
}

.qp-faq__answer-inner {
    overflow: hidden;
    min-height: 0;
}
.qp-faq__answer-inner p {
    padding: 0 0 20px;
    font-size: 18px;
    color: var(--qp-gray);
    line-height: 1.7;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .qp-faq__answer-inner p {
        font-size: 16px;
    }

}

/* ── Newsletter ─────────────────────────────────────────────────────────────── */

.qp-newsletter {
    padding: var(--qp-section-py) 0;
    border-top: 1px solid var(--qp-border);
    background: rgba(1, 20, 63, 0.6);
}

.qp-newsletter__grid {
    display: grid;
    grid-template-columns: 1fr repeat(3, auto);
    gap: 48px;
    align-items: start;
}
@media (max-width: 1024px) {
    .qp-newsletter__grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 640px) {
    .qp-newsletter__grid {
        grid-template-columns: 1fr;
    }
}

.qp-newsletter__signup {
    max-width: 380px;
}

.qp-newsletter__nav-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--qp-white);
    margin: 0 0 20px;
}

.qp-newsletter__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.qp-newsletter__nav-link {
    font-size: 13px;
    color: var(--qp-gray);
    text-decoration: none;
    -webkit-transition: color .2s;
    transition: color .2s;
}
.qp-newsletter__nav-link:hover {
    color: var(--qp-white);
}

.qp-newsletter__title {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--qp-white);
    margin: 0 0 32px;
    line-height: 1.15;
}
@media (max-width: 768px) {
    .qp-newsletter__title {
        font-size: 24px;
    }
}

.qp-newsletter__form {
    margin-bottom: 24px;
}

.qp-newsletter__field {
    display: -webkit-flex;
    display: flex;
    gap: 0;
    border: 1px solid var(--qp-border);
}
@media (max-width: 480px) {
    .qp-newsletter__field {
        flex-direction: column;
    }
}

.qp-newsletter__input {
    flex: 1;
    padding: 14px 20px;
    background: transparent;
    border: none;
    color: var(--qp-white);
    font-size: 14px;
    outline: none;
}
.qp-newsletter__input::-webkit-input-placeholder {
    color: var(--qp-gray);
}
.qp-newsletter__input:-ms-input-placeholder {
    color: var(--qp-gray);
}
.qp-newsletter__input::placeholder {
    color: var(--qp-gray);
}

.qp-newsletter__address {
    font-size: 13px;
    color: var(--qp-gray);
    line-height: 1.6;
    margin: 0;
}
.qp-newsletter__address .text-pure-gold {
    display: block;
    font-size: 11px;
    letter-spacing: 0.12em;
    margin-bottom: 6px;
}

/* ── Swiper overrides ───────────────────────────────────────────────────────── */

.qp-quiz__areas-dots.swiper-pagination,
.qp-testimonials__slider .swiper-pagination {
    position: static;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    width: -webkit-fit-content !important;
    width: fit-content !important;
}

.qp-quiz__areas-nav {
    display: -webkit-flex;
    display: flex;
    gap: 10px;
    align-items: center;
}

.qp-quiz__areas-dots .swiper-pagination-bullet,
.qp-testimonials__slider .swiper-pagination-bullet {
    background: rgba(222, 232, 248, 0.60);
    opacity: 1;
    margin: 0 !important;
    flex-shrink: 0;
    border-radius: 0;
}

.qp-quiz__areas-dots .swiper-pagination-bullet-active,
.qp-testimonials__slider .swiper-pagination-bullet-active {
    background: white;
}

.qp-testimonials__prev,
.qp-testimonials__next {
    color: var(--qp-gold);
}
.qp-testimonials__prev::after,
.qp-testimonials__next::after {
    font-size: 18px;
}
