/* ========================================
   Parallax Quote — цитата на параллакс-фоне
   ======================================== */

.pxq_wrapper {
    padding: 0;
}

.pxq_bg {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
}

.pxq_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pxq_content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.pxq_subtitle {
    margin-bottom: 16px;
    opacity: 0.8;
}

.pxq_title {
    font-family: var(--font-title);
    line-height: 1.3;
    margin: 0 0 24px;
}

.pxq_text {
    line-height: 1.6;
    opacity: 0.85;
}

/* Steps */
.pxq_steps {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.pxq_step {
    background: var(--white_color);
    border-radius: var(--big_border_radius);
    padding: 32px 24px;
    text-align: left;
    border-left: 4px solid var(--visual_color_step_accent);
}

.pxq_step_number {
    font-family: var(--font-title);
    font-size: 36px;
    font-weight: 700;
    color: var(--visual_color_step_number);
    margin-bottom: 16px;
}

.pxq_step_title {
    font-family: var(--font-title);
    font-size: 18px;
    font-weight: 600;
    color: var(--text_color);
    margin-bottom: 12px;
    line-height: 1.4;
}

.pxq_step_text {
    font-size: 14px;
    color: var(--text_color);
    line-height: 1.6;
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 768px) {
    .pxq_bg {
        background-attachment: scroll;
        padding: 56px 0;
    }

    .pxq_steps {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 32px;
    }

    .pxq_step {
        padding: 24px 20px;
    }

    .pxq_step_number {
        font-size: 28px;
    }
}
