/* =========================================================
   VALYX HOMEPAGE — REMAINING SECTIONS
   Quality, metrics, reviews, FAQ and final CTA
   ========================================================= */

.valyx-quality,
.valyx-metrics,
.valyx-reviews,
.valyx-faq,
.valyx-final-cta {
    --vhs-container: 1200px;
    --vhs-brand: #0f172a;
    --vhs-brand-deep: #0b1324;
    --vhs-blue: #2563eb;
    --vhs-text: #101828;
    --vhs-muted: #667085;
    --vhs-border: #e4e9f0;
    --vhs-soft: #f7f9fc;
    --vhs-green: #16845b;

    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

.valyx-quality *,
.valyx-metrics *,
.valyx-reviews *,
.valyx-faq *,
.valyx-final-cta *,
.valyx-quality *::before,
.valyx-metrics *::before,
.valyx-reviews *::before,
.valyx-faq *::before,
.valyx-final-cta *::before,
.valyx-quality *::after,
.valyx-metrics *::after,
.valyx-reviews *::after,
.valyx-faq *::after,
.valyx-final-cta *::after {
    box-sizing: border-box;
}

.valyx-section-eyebrow {
    margin: 0 0 9px;

    color: var(--vhs-blue);

    font-size: 10px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.valyx-section-title {
    max-width: 650px;

    margin: 0;

    color: var(--vhs-brand);

    font-size: clamp(31px, 3.2vw, 46px);
    line-height: 1.07;
    font-weight: 600;
    letter-spacing: -0.05em;
}

.valyx-section-lead {
    max-width: 590px;

    margin: 17px 0 0;

    color: var(--vhs-muted);

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

.valyx-section-header--center {
    max-width: 760px;

    margin-inline: auto;

    text-align: center;
}

.valyx-section-header--center .valyx-section-title,
.valyx-section-header--center .valyx-section-lead {
    margin-inline: auto;
}

.valyx-text-link {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: var(--vhs-brand);

    font-size: 11px;
    line-height: 1.2;
    font-weight: 600;

    text-decoration: none;

    transition:
        gap 0.18s ease,
        color 0.18s ease;
}

.valyx-text-link:hover {
    gap: 10px;

    color: var(--vhs-blue);
}

.valyx-text-link svg {
    width: 14px;
    height: 14px;

    stroke: currentColor;
}

/* =========================================================
   QUALITY
   Light verification board
   ========================================================= */

.valyx-quality {
    background: #ffffff;
}

.valyx-quality__inner {
    width: min(calc(100% - 48px), var(--vhs-container));

    margin-inline: auto;
    padding: 88px 0 82px;

    display: grid;
    grid-template-columns:
        minmax(0, 0.96fr)
        minmax(0, 1.04fr);

    align-items: center;

    gap: 78px;
}

.valyx-quality__visual {
    position: relative;

    min-height: 470px;

    overflow: hidden;

    padding: 30px;

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

    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(37, 99, 235, 0.08),
            transparent 34%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fbff 100%
        );

    color: var(--vhs-brand);

    box-shadow:
        0 12px 34px
        rgba(15, 23, 42, 0.055);
}

.valyx-quality__visual::after {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(15, 23, 42, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(15, 23, 42, 0.025) 1px,
            transparent 1px
        );

    background-size: 48px 48px;

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.75),
            transparent 72%
        );
}

.valyx-quality__visual-head {
    position: relative;
    z-index: 1;

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

    gap: 20px;

    color: #64748b;

    font-size: 9px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.valyx-quality__status {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: var(--vhs-green);
}

.valyx-quality__status::before {
    content: "";

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #34d399;

    box-shadow:
        0 0 0 4px
        rgba(52, 211, 153, 0.1);
}

.valyx-quality__score {
    position: relative;
    z-index: 1;

    margin-top: 58px;
}

.valyx-quality__score strong,
.valyx-quality__score span {
    display: block;
}

.valyx-quality__score strong {
    color: var(--vhs-brand);

    font-size: clamp(68px, 7vw, 98px);
    line-height: 0.9;
    font-weight: 600;
    letter-spacing: -0.075em;
}

.valyx-quality__score span {
    margin-top: 15px;

    color: var(--vhs-muted);

    font-size: 12px;
    line-height: 1.4;
}

.valyx-quality__metrics {
    position: relative;
    z-index: 1;

    margin-top: 48px;

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

    gap: 10px;
}

.valyx-quality__metrics > div {
    min-width: 0;

    padding: 15px 13px;

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

    background: rgba(255, 255, 255, 0.9);

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

.valyx-quality__metrics > div:hover {
    transform: translateY(-2px);

    border-color: #d8e0ea;

    box-shadow:
        0 10px 22px
        rgba(15, 23, 42, 0.055);
}

.valyx-quality__metric-icon {
    display: block;

    color: var(--vhs-brand);
}

.valyx-quality__metric-icon svg {
    width: 20px;
    height: 20px;

    stroke: currentColor;
}

.valyx-quality__metrics strong,
.valyx-quality__metrics small {
    display: block;
}

.valyx-quality__metrics strong {
    margin-top: 17px;

    color: var(--vhs-brand);

    font-size: 10px;
    line-height: 1.3;
    font-weight: 600;
}

.valyx-quality__metrics small {
    margin-top: 4px;

    color: var(--vhs-muted);

    font-size: 8px;
    line-height: 1.35;
}

.valyx-quality__document {
    display: none;
}

.valyx-quality__content {
    max-width: 570px;
}

.valyx-quality__content .valyx-section-title {
    max-width: 560px;

    font-size: clamp(34px, 3.2vw, 48px);
}

.valyx-quality__content .valyx-section-lead {
    max-width: 540px;
}

.valyx-quality__list {
    margin: 27px 0 29px;
    padding: 0;

    display: grid;

    gap: 13px;

    list-style: none;
}

.valyx-quality__list li {
    display: flex;
    align-items: center;

    gap: 11px;

    color: var(--vhs-text);

    font-size: 12px;
    line-height: 1.4;
    font-weight: 500;
}

.valyx-quality__list li span {
    width: 22px;
    height: 22px;

    flex: 0 0 auto;

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

    border-radius: 50%;

    background: #edf8f3;
    color: var(--vhs-green);

    font-size: 9px;
}

/* Tablet */

@media (max-width: 980px) {
    .valyx-quality__inner {
        grid-template-columns: 1fr;

        gap: 44px;
    }

    .valyx-quality__visual {
        min-height: 450px;
    }

    .valyx-quality__content {
        max-width: 680px;
    }
}

/* Mobile */

@media (max-width: 720px) {
    .valyx-quality__inner {
        width: 100%;

        padding: 58px 18px 60px;

        gap: 34px;
    }

    .valyx-quality__visual {
        min-height: 400px;

        padding: 21px;

        border-radius: 17px;

        box-shadow:
            0 8px 24px
            rgba(15, 23, 42, 0.045);
    }

    .valyx-quality__visual::after {
        background-size: 38px 38px;
    }

    .valyx-quality__score {
        margin-top: 47px;
    }

    .valyx-quality__score strong {
        font-size: 70px;
    }

    .valyx-quality__score span {
        margin-top: 12px;

        font-size: 10px;
    }

    .valyx-quality__metrics {
        margin-top: 39px;

        gap: 7px;
    }

    .valyx-quality__metrics > div {
        padding: 12px 9px;

        border-radius: 11px;
    }

    .valyx-quality__metric-icon svg {
        width: 18px;
        height: 18px;
    }

    .valyx-quality__metrics strong {
        margin-top: 13px;

        font-size: 8px;
    }

    .valyx-quality__metrics small {
        font-size: 7px;
    }

    .valyx-quality__content .valyx-section-title {
        font-size: 29px;
    }

    .valyx-quality__list {
        margin-top: 23px;
    }

    .valyx-quality__list li {
        font-size: 11px;
    }
}

@media (max-width: 390px) {
    .valyx-quality__inner {
        padding-inline: 15px;
    }

    .valyx-quality__visual {
        min-height: 385px;

        padding-inline: 17px;
    }

    .valyx-quality__metrics {
        gap: 6px;
    }

    .valyx-quality__metrics > div {
        padding-inline: 7px;
    }
}

/* =========================================================
   METRICS
   ========================================================= */

.valyx-metrics {
    background: #ffffff;
}

.valyx-metrics__inner {
    width: min(calc(100% - 48px), var(--vhs-container));

    margin-inline: auto;

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

    overflow: hidden;

    border-top: 1px solid var(--vhs-border);
    border-bottom: 1px solid var(--vhs-border);
}

.valyx-metrics__item {
    position: relative;

    padding: 33px 30px;

    text-align: center;
}

.valyx-metrics__item:not(:last-child)::after {
    content: "";

    position: absolute;
    top: 25%;
    right: 0;
    bottom: 25%;

    width: 1px;

    background: var(--vhs-border);
}

.valyx-metrics__item strong,
.valyx-metrics__item span {
    display: block;
}

.valyx-metrics__item strong {
    color: var(--vhs-brand);

    font-size: 28px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.045em;
}

.valyx-metrics__item span {
    margin-top: 8px;

    color: var(--vhs-muted);

    font-size: 10px;
    line-height: 1.4;
}

/* =========================================================
   REVIEWS
   ========================================================= */

.valyx-reviews {
    background: #ffffff;
}

.valyx-reviews__inner {
    width: min(calc(100% - 48px), var(--vhs-container));

    margin-inline: auto;
    padding: 92px 0;
}

.valyx-reviews__stage {
    position: relative;

    max-width: 920px;

    margin: 39px auto 0;
    padding: 48px 54px 28px;

    overflow: hidden;

    border: 1px solid var(--vhs-border);
    border-radius: 20px;

    background: #ffffff;

    box-shadow:
        0 10px 30px
        rgba(15, 23, 42, 0.045);
}

.valyx-reviews__mark {
    position: absolute;
    top: 8px;
    right: 30px;

    color: #f0f3f7;

    font-size: 124px;
    line-height: 1;
    font-family: Georgia, serif;

    user-select: none;
    pointer-events: none;
}

.valyx-reviews__slides {
    position: relative;

    min-height: 270px;
}

.valyx-reviews__slide {
    position: absolute;
    inset: 0;

    min-height: 100%;

    display: flex;
    flex-direction: column;

    margin: 0;

    opacity: 0;
    visibility: hidden;

    transform: translateY(6px);

    transition:
        opacity 0.32s ease,
        visibility 0.32s ease,
        transform 0.32s ease;
}

.valyx-reviews__slide.is-active {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.valyx-reviews__stars {
    margin: 0;

    color: #f59e0b;

    font-size: 12px;
    letter-spacing: 0.16em;
}

.valyx-reviews__quote {
    position: relative;
    z-index: 1;

    max-width: 740px;

    margin: 25px 0 0;

    color: var(--vhs-brand);

    font-size: clamp(22px, 2.15vw, 30px);
    line-height: 1.38;
    font-weight: 500;
    letter-spacing: -0.035em;
}

.valyx-reviews__author {
    margin-top: auto;
    padding-top: 29px;
}

.valyx-reviews__author strong,
.valyx-reviews__author span {
    display: block;
}

.valyx-reviews__author strong {
    color: var(--vhs-text);

    font-size: 11px;
    line-height: 1.35;
    font-weight: 600;
}

.valyx-reviews__author span {
    margin-top: 4px;

    color: var(--vhs-muted);

    font-size: 9px;
    line-height: 1.4;
}

.valyx-reviews__controls {
    min-height: 34px;

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

    gap: 20px;

    margin-top: 18px;
    padding-top: 18px;

    border-top: 1px solid var(--vhs-border);
}

.valyx-reviews__dots {
    flex: 0 0 auto;

    display: flex;
    align-items: center;

    gap: 7px;
}

.valyx-reviews__dot {
    width: 7px;
    height: 7px;

    margin: 0;
    padding: 0;

    border: 0;
    border-radius: 999px;

    background: #cbd5e1;

    cursor: pointer;

    transition:
        width 0.18s ease,
        background 0.18s ease;
}

.valyx-reviews__dot.is-active {
    width: 21px;

    background: var(--vhs-brand);
}

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

.valyx-faq {
    background: #ffffff;
}

.valyx-faq__inner {
    width: min(calc(100% - 48px), var(--vhs-container));

    margin-inline: auto;
    padding: 92px 0;

    display: grid;
    grid-template-columns:
        minmax(280px, 0.72fr)
        minmax(0, 1.28fr);

    align-items: start;

    gap: 82px;
}

.valyx-faq__intro {
    position: sticky;
    top: 120px;
}

.valyx-faq__intro .valyx-text-link {
    margin-top: 29px;
}

.valyx-faq__list {
    border-top: 1px solid var(--vhs-border);
}

.valyx-faq__item {
    border-bottom: 1px solid var(--vhs-border);
}

.valyx-faq__question {
    min-height: 78px;

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

    gap: 24px;

    padding: 19px 0;

    color: var(--vhs-brand);

    font-size: 15px;
    line-height: 1.35;
    font-weight: 600;
    letter-spacing: -0.02em;

    cursor: pointer;

    list-style: none;
}

.valyx-faq__question::-webkit-details-marker {
    display: none;
}

.valyx-faq__toggle {
    position: relative;

    width: 28px;
    height: 28px;

    flex: 0 0 auto;

    border-radius: 50%;

    background: var(--vhs-soft);
}

.valyx-faq__toggle::before,
.valyx-faq__toggle::after {
    content: "";

    position: absolute;
    top: 50%;
    left: 50%;

    width: 11px;
    height: 1px;

    background: var(--vhs-brand);

    transform: translate(-50%, -50%);
}

.valyx-faq__toggle::after {
    transform:
        translate(-50%, -50%)
        rotate(90deg);

    transition: transform 0.18s ease;
}

.valyx-faq__item[open] .valyx-faq__toggle::after {
    transform:
        translate(-50%, -50%)
        rotate(0deg);
}

.valyx-faq__answer {
    overflow: hidden;
}

.valyx-faq__answer p {
    max-width: 660px;

    margin: -2px 0 0;
    padding: 0 58px 25px 0;

    color: var(--vhs-muted);

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

.valyx-faq__answer a {
    color: var(--vhs-blue);

    font-weight: 600;
    text-decoration: none;
}

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

.valyx-final-cta {
    background: #ffffff;
}

.valyx-final-cta__inner {
    width: min(calc(100% - 48px), var(--vhs-container));

    margin: 0 auto 84px;
    padding: 48px 50px;

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

    gap: 48px;

    overflow: hidden;

    border-radius: 24px;

    background:
        radial-gradient(
            circle at 90% 0%,
            rgba(37, 99, 235, 0.22),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            #121e34,
            var(--vhs-brand) 58%,
            var(--vhs-brand-deep)
        );

    color: #ffffff;

    box-shadow:
        0 14px 36px
        rgba(15, 23, 42, 0.11);
}

.valyx-final-cta__copy {
    max-width: 700px;
}

.valyx-final-cta__eyebrow {
    margin: 0 0 10px;

    color: #93c5fd;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.valyx-final-cta h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(30px, 3.2vw, 46px);
    line-height: 1.08;
    font-weight: 600;
    letter-spacing: -0.05em;
}

.valyx-final-cta p:not(.valyx-final-cta__eyebrow) {
    max-width: 560px;

    margin: 15px 0 0;

    color: rgba(255, 255, 255, 0.68);

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

.valyx-final-cta__actions {
    flex: 0 0 auto;

    display: flex;
    align-items: center;

    gap: 10px;
}

.valyx-final-cta__button {
    min-height: 48px;

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

    gap: 7px;

    padding: 0 18px;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 11px;

    color: #ffffff;

    font-size: 11px;
    line-height: 1;
    font-weight: 600;

    text-decoration: none;

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

.valyx-final-cta__button:hover {
    transform: translateY(-1px);
}

.valyx-final-cta__button--light {
    border-color: #ffffff;

    background: #ffffff;
    color: var(--vhs-brand);
}

.valyx-final-cta__button--ghost {
    background: rgba(255, 255, 255, 0.06);
}

.valyx-final-cta__button--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
}

.valyx-final-cta__button svg {
    width: 14px;
    height: 14px;

    stroke: currentColor;
}

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

@media (max-width: 980px) {
    .valyx-quality__inner {
        grid-template-columns: 1fr;

        gap: 46px;
    }

    .valyx-quality__visual {
        min-height: 490px;
    }

    .valyx-faq__inner {
        grid-template-columns: 1fr;

        gap: 42px;
    }

    .valyx-faq__intro {
        position: static;
    }

    .valyx-final-cta__inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

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

@media (max-width: 720px) {
    .valyx-section-eyebrow {
        font-size: 9px;
    }

    .valyx-section-title {
        font-size: 29px;
    }

    .valyx-section-lead {
        margin-top: 13px;

        font-size: 12px;
        line-height: 1.58;
    }

    .valyx-quality__inner,
    .valyx-reviews__inner,
    .valyx-faq__inner {
        width: 100%;

        padding: 62px 18px;
    }

    .valyx-quality__inner {
        gap: 36px;
    }

    .valyx-quality__visual {
        min-height: 430px;

        padding: 22px;

        border-radius: 18px;
    }

    .valyx-quality__score {
        margin-top: 54px;
    }

    .valyx-quality__score strong {
        font-size: 78px;
    }

    .valyx-quality__metrics {
        margin-top: 43px;

        gap: 8px;
    }

    .valyx-quality__metrics > div {
        padding: 13px 10px;

        border-radius: 12px;
    }

    .valyx-quality__metrics strong {
        margin-top: 14px;

        font-size: 9px;
    }

    .valyx-quality__metrics small {
        font-size: 7px;
    }

    .valyx-quality__list {
        margin-top: 24px;
    }

    .valyx-quality__list li {
        font-size: 11px;
    }

    .valyx-metrics__inner {
        width: calc(100% - 36px);

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

    .valyx-metrics__item {
        padding: 25px 12px;
    }

    .valyx-metrics__item:nth-child(2)::after {
        display: none;
    }

    .valyx-metrics__item:nth-child(-n + 2) {
        border-bottom: 1px solid var(--vhs-border);
    }

    .valyx-metrics__item strong {
        font-size: 24px;
    }

    .valyx-reviews__stage {
        min-height: 410px;

        margin-top: 30px;
        padding: 37px 24px 25px;

        border-radius: 18px;
    }

    .valyx-reviews__mark {
        top: 8px;
        right: 18px;

        font-size: 100px;
    }

    .valyx-reviews__slides {
        min-height: 280px;
    }

    .valyx-reviews__quote {
        margin-top: 24px;

        font-size: 22px;
        line-height: 1.42;
    }

    .valyx-reviews__controls {
        margin-top: 18px;
    }

    .valyx-reviews__controls .valyx-text-link span {
        display: none;
    }

    .valyx-reviews__controls .valyx-text-link svg {
        width: 18px;
        height: 18px;
    }

    .valyx-faq__inner {
        gap: 31px;
    }

    .valyx-faq__question {
        min-height: 69px;

        font-size: 13px;
    }

    .valyx-faq__answer p {
        padding-right: 35px;

        font-size: 11px;
    }

    .valyx-final-cta__inner {
        width: calc(100% - 36px);

        margin-bottom: 62px;
        padding: 30px 24px;

        gap: 27px;

        border-radius: 18px;
    }

    .valyx-final-cta h2 {
        font-size: 30px;
    }

    .valyx-final-cta p:not(.valyx-final-cta__eyebrow) {
        font-size: 11px;
    }

    .valyx-final-cta__actions {
        width: 100%;

        display: grid;
        grid-template-columns: 1fr;
    }

    .valyx-final-cta__button {
        width: 100%;
    }
}

@media (max-width: 390px) {
    .valyx-quality__inner,
    .valyx-reviews__inner,
    .valyx-faq__inner {
        padding-inline: 15px;
    }

    .valyx-metrics__inner,
    .valyx-final-cta__inner {
        width: calc(100% - 30px);
    }

    .valyx-quality__visual {
        min-height: 410px;

        padding-inline: 18px;
    }

    .valyx-quality__metrics {
        gap: 6px;
    }

    .valyx-quality__metrics > div {
        padding-inline: 8px;
    }

    .valyx-reviews__stage {
        padding-inline: 20px;
    }

    .valyx-reviews__quote {
        font-size: 20px;
    }
}


/* Cleaner mobile review layout */

@media (max-width: 720px) {
    .valyx-reviews__stage {
        min-height: 0;

        margin-top: 27px;
        padding: 31px 22px 21px;

        border-radius: 16px;

        box-shadow:
            0 7px 22px
            rgba(15, 23, 42, 0.04);
    }

    .valyx-reviews__mark {
        top: 4px;
        right: 15px;

        font-size: 84px;
    }

    .valyx-reviews__slides {
        min-height: 330px;
    }

    .valyx-reviews__quote {
        margin-top: 21px;

        font-size: 20px;
        line-height: 1.43;
    }

    .valyx-reviews__author {
        padding-top: 25px;
    }

    .valyx-reviews__controls {
        min-height: 36px;

        margin-top: 15px;
        padding-top: 15px;
    }

    .valyx-reviews__controls .valyx-text-link span {
        display: inline;
    }

    .valyx-reviews__controls .valyx-text-link {
        font-size: 9px;
    }

    .valyx-reviews__controls .valyx-text-link svg {
        width: 13px;
        height: 13px;
    }
}

@media (max-width: 390px) {
    .valyx-reviews__stage {
        padding-inline: 18px;
    }

    .valyx-reviews__slides {
        min-height: 350px;
    }

    .valyx-reviews__quote {
        font-size: 18px;
    }

    .valyx-reviews__controls {
        gap: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .valyx-reviews__slide,
    .valyx-reviews__dot,
    .valyx-text-link,
    .valyx-final-cta__button {
        transition-duration: 0.01ms;
    }
}

/* =========================================================
   MOBILE QUALITY ORDER
   Copy appears first; verification board follows underneath.
   Desktop and tablet ordering remain unchanged.
   ========================================================= */

@media (max-width: 720px) {
    .valyx-quality__content {
        order: 1;
    }

    .valyx-quality__visual {
        order: 2;
    }
}
