:root {
    --pm-color-header-top: #100c08;
    --pm-color-footer: #0a1017;
    --pm-color-review: #2f2f2f;
    --pm-color-accent: #ff9327;
    --pm-color-stars: #f2c552;
    --pm-color-white: #ffffff;
    --pm-color-text-light: rgba(255, 255, 255, .80);
    --pm-color-text-muted: rgba(255, 255, 255, .60);
    --pm-color-line: rgba(245, 245, 245, .10);
    --pm-color-dark: #111111;
    --pm-font-main: "Jost", Arial, sans-serif;
    --pm-container: 1450rem;
}

html {
    box-sizing: border-box;
    font-size: calc(1vw / 19.5) !important;
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

html,
body {
    margin: 0;
    min-width: 320px;
}

body {
    overflow-x: clip;
    color: var(--pm-color-dark);
    font-family: var(--pm-font-main);
    font-size: 16rem;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.pm-menu-open {
    overflow: hidden;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    color: inherit;
}

.pm-container {
    width: min(var(--pm-container), calc(100% - 80rem));
    margin-inline: auto;
}

.pm-skip-link {
    position: fixed;
    z-index: 10000;
    top: 12rem;
    left: 12rem;
    padding: 10rem 14rem;
    border-radius: 6rem;
    background: #fff;
    color: #111;
    font-size: 14rem;
    transform: translateY(-160%);
    transition: transform .18s ease;
}

.pm-skip-link:focus {
    transform: translateY(0);
}

/* Header */
.pm-site-header {
    --pm-header-fg: rgba(255, 255, 255, .80);
    --pm-header-line: rgba(245, 245, 245, .10);
    position: absolute;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 157rem;
    color: var(--pm-header-fg);
    border-bottom: 1px solid var(--pm-header-line);
    backdrop-filter: blur(3.75rem);
    -webkit-backdrop-filter: blur(3.75rem);
}

.admin-bar .pm-site-header {
    top: 32px;
}

.pm-site-header--light {
    --pm-header-fg: rgba(18, 18, 18, .82);
    --pm-header-line: rgba(18, 18, 18, .12);
}

/* Light first screen: only the menu strip and reviews card switch to light styling. */
.pm-site-header--light .pm-header-top {
    background: #fff;
    border-bottom-color: rgba(18, 18, 18, .10);
    color: rgba(18, 18, 18, .82);
}

.pm-site-header--light .pm-header-menu a:hover,
.pm-site-header--light .pm-header-menu a:focus-visible,
.pm-site-header--light .pm-header-menu .current-menu-item > a,
.pm-site-header--light .pm-header-menu .current-menu-ancestor > a {
    color: #111;
}

.pm-site-header--light .pm-header-menu .sub-menu {
    border-color: rgba(18, 18, 18, .10);
    background: #fff;
    color: #333;
    box-shadow: 0 18rem 45rem rgba(0, 0, 0, .12);
}

.pm-site-header--light .pm-reviews {
    border: 1px solid rgba(18, 18, 18, .08);
    background: #fff;
    color: #333;
}

.pm-header-top {
    height: 51rem;
    background: var(--pm-color-header-top);
    border-bottom: 1px solid var(--pm-color-line);
    color: rgba(255, 255, 255, .80);
}

.pm-header-top .pm-container {
    height: 100%;
}

.pm-header-nav,
.pm-header-menu {
    width: 100%;
    height: 100%;
}

.pm-header-menu,
.pm-header-menu .sub-menu,
.pm-mobile-menu,
.pm-mobile-menu .sub-menu,
.pm-footer-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pm-header-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34rem;
    font-size: 16rem;
    font-weight: 400;
    line-height: 26.26rem;
    text-transform: uppercase;
}

.pm-header-menu > li {
    position: relative;
    display: flex;
    align-items: center;
    height: 51rem;
}

.pm-header-menu a {
    display: inline-flex;
    align-items: center;
    min-height: 40rem;
    transition: color .18s ease, opacity .18s ease;
}

.pm-header-menu a:hover,
.pm-header-menu a:focus-visible,
.pm-header-menu .current-menu-item > a,
.pm-header-menu .current-menu-ancestor > a {
    color: #fff;
}

.pm-header-menu .sub-menu {
    position: absolute;
    top: calc(100% - 2rem);
    left: -18rem;
    min-width: 210rem;
    padding: 12rem;
    border: 1px solid var(--pm-color-line);
    border-radius: 10rem;
    background: rgba(16, 12, 8, .97);
    box-shadow: 0 18rem 45rem rgba(0, 0, 0, .24);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8rem);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.pm-header-menu .sub-menu li + li {
    margin-top: 3rem;
}

.pm-header-menu .sub-menu a {
    width: 100%;
    min-height: 36rem;
    padding: 6rem;
    white-space: nowrap;
}

.pm-header-menu li:hover > .sub-menu,
.pm-header-menu li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.pm-header-main {
    height: 100rem;
    background: transparent;
}

.pm-header-main__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.pm-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.pm-logo--header {
    width: 529rem;
    height: 74rem;
}

.pm-logo--footer {
    width: 353rem;
    min-height: 49rem;
}

.pm-logo__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
}

.pm-logo__fallback {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: currentColor;
    font-size: 36rem;
    font-weight: 600;
    line-height: .92;
    letter-spacing: 2rem;
    text-transform: uppercase;
    white-space: nowrap;
}

.pm-logo__fallback small {
    margin-top: 6rem;
    font-size: 12rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .35rem;
    text-transform: none;
}

.pm-header-reviews {
    margin-left: auto;
    margin-right: 169.5rem;
}

.pm-reviews {
    display: flex;
    align-items: center;
    width: 286rem;
    height: 70rem;
    padding: 9rem 18rem 8rem 25rem;
    border-radius: 15rem;
    background: var(--pm-color-review);
    color: #fff;
}

.pm-reviews__score {
    position: relative;
    flex: 0 0 143rem;
    height: 53rem;
}

.pm-reviews__stars {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--pm-color-stars);
    font-size: 12.26rem;
    line-height: 18.39rem;
    letter-spacing: 1.63rem;
    white-space: nowrap;
}

.pm-reviews__rating {
    position: absolute;
    top: -5rem;
    left: 77rem;
    display: inline-flex;
    align-items: baseline;
    line-height: 26.26rem;
}

.pm-reviews__rating strong {
    font-size: 16rem;
    font-weight: 400;
}

.pm-reviews__rating small {
    font-size: 12rem;
    font-weight: 400;
}

.pm-reviews__count {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 140rem;
    font-size: 18rem;
    font-weight: 500;
    line-height: 21.6rem;
    white-space: nowrap;
}

.pm-reviews__sources {
    display: flex;
    gap: 6rem;
    margin-left: 6rem;
}

.pm-review-source {
    display: block;
    width: 43rem;
    height: 43rem;
    border-radius: 50%;
    overflow: hidden;
    transition: transform .18s ease;
}

.pm-review-source:hover,
.pm-review-source:focus-visible {
    transform: translateY(-2rem);
}

.pm-review-source img {
    width: 43rem;
    height: 43rem;
}

.pm-header-contacts {
    display: flex;
    align-items: center;
    gap: 40rem;
    flex: 0 0 auto;
}

.pm-messengers {
    display: flex;
    align-items: center;
    gap: 9.74rem;
}

.pm-messengers a,
.pm-messengers span {
    display: block;
    width: 43rem;
    height: 43rem;
}

.pm-messengers img {
    width: 43rem;
    height: 43rem;
    object-fit: contain;
}

.pm-messengers a {
    transition: transform .18s ease;
}

.pm-messengers a:hover,
.pm-messengers a:focus-visible {
    transform: translateY(-2rem);
}

.pm-header-phones,
.pm-mobile-phones,
.pm-footer-phones {
    display: flex;
    flex-direction: column;
}

.pm-header-phones {
    width: 159rem;
    font-size: 21rem;
    font-weight: 500;
    line-height: 26.26rem;
    white-space: nowrap;
}

.pm-header-phones a,
.pm-mobile-phones a,
.pm-footer-phones a,
.pm-mobile-email,
.pm-footer-contact-row {
    transition: opacity .18s ease;
}

.pm-header-phones a:hover,
.pm-header-phones a:focus-visible,
.pm-mobile-phones a:hover,
.pm-mobile-phones a:focus-visible,
.pm-footer-phones a:hover,
.pm-footer-phones a:focus-visible,
.pm-mobile-email:hover,
.pm-mobile-email:focus-visible,
a.pm-footer-contact-row:hover,
a.pm-footer-contact-row:focus-visible {
    opacity: .72;
}

.pm-burger {
    display: none;
}

/* Mobile menu */
.pm-mobile-overlay,
.pm-mobile-drawer {
    display: none;
}

/* Footer */
.pm-site-footer {
    position: relative;
    z-index: 2;
    overflow: hidden;
    background: var(--pm-color-footer);
    color: var(--pm-color-text-muted);
}

.pm-footer-main {
    padding-top: 84rem;
}

.pm-footer-company {
    display: flex;
    align-items: center;
    gap: 91rem;
    width: 1272rem;
    min-height: 235rem;
}

.pm-footer-company__image {
    position: relative;
    flex: 0 0 498rem;
    width: 498rem;
    height: 235rem;
    overflow: hidden;
    border-radius: 20rem;
    background: #171e26;
}

.pm-footer-company__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.pm-footer-company__placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(130deg, rgba(255, 255, 255, .05), transparent 42%),
        repeating-linear-gradient(135deg, #141b23 0, #141b23 16rem, #111820 16rem, #111820 32rem);
}

.pm-footer-company__content {
    width: 683rem;
}

.pm-eyebrow {
    display: flex;
    align-items: center;
    gap: 12.5rem;
    min-height: 22.5rem;
    color: var(--pm-color-text-light);
}

.pm-eyebrow > span {
    width: 28rem;
    height: 2rem;
    background: var(--pm-color-accent);
}

.pm-eyebrow h2 {
    margin: 0;
    font-size: 14rem;
    font-weight: 400;
    line-height: 18rem;
    letter-spacing: 1.92rem;
    text-transform: uppercase;
}

.pm-eyebrow--plain {
    gap: 0;
}

.pm-footer-company__content > p {
    width: 813rem;
    margin: 26rem 0 0;
    padding-left: 37rem;
    font-size: 20rem;
    font-weight: 400;
    line-height: 1.4;
}

.pm-footer-metal-text {
    display: flex;
    align-items: center;
    width: 1512rem;
    height: 248rem;
    margin-top: 34rem;
    margin-left: -1rem;
    overflow: hidden;
    color: transparent;
    background:
        linear-gradient(180deg,
            #f4f5f6 0%,
            #aeb3b9 16%,
            #e2e4e7 28%,
            #7b8188 39%,
            #d7dadd 50%,
            #8d9399 62%,
            #eef0f1 73%,
            #90969d 87%,
            #d0d3d6 100%);
    background-size: 100% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 221.75rem;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: 1.58rem;
    text-transform: uppercase;
    white-space: nowrap;
    filter: contrast(1.06);
    text-shadow: 0 1rem 0 rgba(255, 255, 255, .08);
}

.pm-footer-columns {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    margin-top: 18rem;
}

.pm-footer-brand {
    width: 353rem;
}

.pm-logo--footer {
    color: rgba(255, 255, 255, .82);
}

.pm-footer-brand__text,
.pm-footer-requisites {
    margin: 0;
    font-size: 16rem;
    font-weight: 400;
    line-height: 1.4;
}

.pm-footer-brand__text {
    margin-top: 30rem;
}

.pm-footer-requisites {
    margin-top: 20rem;
}

.pm-footer-contacts {
    width: 398rem;
}

.pm-footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14rem;
    margin-top: 30rem;
}

.pm-footer-contact-row {
    display: flex;
    align-items: center;
    gap: 20rem;
    width: 100%;
    min-height: 22rem;
    font-size: 16rem;
    font-weight: 400;
    line-height: 1.4;
}

.pm-footer-contact-row > img {
    flex: 0 0 auto;
    width: 18rem;
    height: 18rem;
    object-fit: contain;
}

.pm-footer-contact-row--address {
    align-items: flex-start;
}

.pm-footer-contact-row--address > img {
    width: 20rem;
    height: 20rem;
}

.pm-footer-phones {
    width: 353rem;
}

.pm-footer-contact-list .pm-messengers {
    margin-top: 0;
}

.pm-footer-sections {
    width: 160rem;
}

.pm-footer-menu {
    display: flex;
    flex-direction: column;
    gap: 10rem;
    margin-top: 30rem;
    font-size: 16rem;
    font-weight: 400;
    line-height: 1.4;
}

.pm-footer-menu a {
    transition: color .18s ease, opacity .18s ease;
}

.pm-footer-menu a:hover,
.pm-footer-menu a:focus-visible {
    color: #fff;
}

.pm-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40rem;
    margin-top: 113rem;
    padding-bottom: 37rem;
    font-size: 16rem;
    font-weight: 400;
    line-height: 1.4;
}

.pm-footer-bottom p {
    margin: 0;
}

.pm-footer-legal {
    display: flex;
    align-items: center;
    gap: 40rem;
    white-space: nowrap;
}

.pm-footer-legal a {
    transition: color .18s ease;
}

.pm-footer-legal a:hover,
.pm-footer-legal a:focus-visible {
    color: #fff;
}

.pm-main {
    min-height: 45vh;
}

.pm-content {
    padding-block: 210rem 100rem;
}

.pm-error-page {
    padding: 0;
    background: #080d13;
}

.pm-error-page h1 {
    margin: 0 0 24rem;
    font-size: 64rem;
    line-height: 1.05;
}

.pm-error-page p {
    margin: 0 0 28rem;
}

.pm-error-page a {
    text-decoration: underline;
}

@media (max-width: 782px) {
    .admin-bar .pm-site-header {
        top: 46px;
    }
}

@media (max-width: 767px) {
    html {
        font-size: calc(1vw / 3.9) !important;
    }

    body {
        font-size: 16rem;
    }

    .pm-container {
        width: calc(100% - 40rem);
    }

    .pm-site-header {
        height: 82rem;
        border-bottom-color: rgba(245, 245, 245, .12);
        backdrop-filter: blur(5rem);
        -webkit-backdrop-filter: blur(5rem);
    }

    .pm-header-top,
    .pm-header-reviews,
    .pm-header-contacts {
        display: none;
    }

    .pm-header-main {
        height: 82rem;
        background: rgba(10, 16, 23, .18);
    }

    .pm-site-header--light .pm-header-main {
        background: rgba(255, 255, 255, .18);
    }

    .pm-header-main__inner {
        gap: 16rem;
    }

    .pm-logo--header {
        width: min(250rem, calc(100% - 72rem));
        height: 50rem;
    }

    .pm-logo__fallback {
        font-size: 24rem;
        letter-spacing: 1.2rem;
    }

    .pm-logo__fallback small {
        margin-top: 4rem;
        font-size: 8rem;
    }

    .pm-burger {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 6rem;
        flex: 0 0 48rem;
        width: 48rem;
        height: 48rem;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        cursor: pointer;
    }

    .pm-burger span {
        width: 28rem;
        height: 2px;
        background: currentColor;
    }

    .pm-mobile-overlay,
    .pm-mobile-drawer {
        display: block;
        position: fixed;
    }

    .pm-mobile-overlay {
        z-index: 1990;
        inset: 0;
        background: rgba(0, 0, 0, .52);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .24s ease, visibility .24s ease;
    }

    .pm-mobile-overlay.is-open,
    body.pm-menu-open .pm-mobile-overlay {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .pm-mobile-drawer {
        z-index: 2000;
        top: 0;
        right: 0;
        width: min(335rem, calc(100vw - 48rem));
        height: 100dvh;
        padding: 24rem 24rem 34rem;
        overflow-y: auto;
        overscroll-behavior: contain;
        background: var(--pm-color-footer);
        color: rgba(255, 255, 255, .86);
        box-shadow: -20rem 0 70rem rgba(0, 0, 0, .36);
        visibility: hidden;
        transform: translateX(102%);
        transition: transform .30s cubic-bezier(.2, .75, .2, 1), visibility .30s;
    }

    .admin-bar .pm-mobile-drawer {
        top: 46px;
        height: calc(100dvh - 46px);
    }

    .pm-mobile-drawer.is-open,
    body.pm-menu-open .pm-mobile-drawer {
        visibility: visible;
        transform: translateX(0);
    }

    body.pm-menu-open {
        overflow: hidden;
    }

    .pm-mobile-drawer__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 48rem;
        padding-bottom: 18rem;
        border-bottom: 1px solid var(--pm-color-line);
    }

    .pm-mobile-drawer__title {
        font-size: 14rem;
        line-height: 18rem;
        letter-spacing: 1.9rem;
        text-transform: uppercase;
    }

    .pm-mobile-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42rem;
        height: 42rem;
        padding: 0 0 3rem;
        border: 0;
        border-radius: 0;
        background: transparent;
        color: #fff;
        font-size: 32rem;
        font-weight: 300;
        line-height: 1;
        cursor: pointer;
    }

    .pm-mobile-nav {
        padding: 26rem 0 28rem;
        border-bottom: 1px solid var(--pm-color-line);
    }

    .pm-mobile-menu {
        display: flex;
        flex-direction: column;
    }

    .pm-mobile-menu > li + li {
        border-top: 1px solid rgba(255, 255, 255, .07);
    }

    .pm-mobile-menu a {
        display: flex;
        align-items: center;
        min-height: 51rem;
        font-size: 18rem;
        line-height: 1.25;
        text-transform: uppercase;
    }

    .pm-mobile-menu .sub-menu {
        padding: 0 0 12rem 16rem;
    }

    .pm-mobile-menu .sub-menu a {
        min-height: 38rem;
        color: rgba(255, 255, 255, .65);
        font-size: 15rem;
        text-transform: none;
    }

    .pm-mobile-contacts {
        padding: 27rem 0 28rem;
        border-bottom: 1px solid var(--pm-color-line);
    }

    .pm-mobile-contacts h2 {
        margin: 0 0 18rem;
        font-size: 14rem;
        font-weight: 400;
        line-height: 18rem;
        letter-spacing: 1.9rem;
        text-transform: uppercase;
    }

    .pm-mobile-phones {
        gap: 5rem;
        font-size: 21rem;
        font-weight: 500;
        line-height: 1.2;
    }

    .pm-mobile-email {
        display: inline-block;
        margin-top: 16rem;
        color: rgba(255, 255, 255, .68);
        font-size: 16rem;
    }

    .pm-messengers--mobile {
        margin-top: 20rem;
    }

    .pm-mobile-reviews {
        padding-top: 27rem;
    }

    .pm-reviews--mobile {
        width: 100%;
        max-width: 286rem;
    }

    .pm-footer-main {
        padding-top: 52rem;
    }

    .pm-footer-company {
        flex-direction: column;
        align-items: stretch;
        gap: 26rem;
        width: 100%;
        min-height: 0;
    }

    .pm-footer-company__image {
        flex: none;
        width: 100%;
        height: 165rem;
        border-radius: 16rem;
    }

    .pm-footer-company__content {
        width: 100%;
    }

    .pm-footer-company__content > p {
        width: 100%;
        margin-top: 18rem;
        padding-left: 0;
        font-size: 16rem;
        line-height: 1.45;
    }

    .pm-eyebrow {
        min-height: 20rem;
    }

    .pm-eyebrow h2 {
        font-size: 13rem;
        line-height: 17rem;
        letter-spacing: 1.6rem;
    }

    .pm-eyebrow > span {
        width: 24rem;
    }

    .pm-footer-metal-text {
        display: none;
    }

    .pm-footer-columns {
        display: flex;
        flex-direction: column;
        gap: 46rem;
        margin-top: 45rem;
    }

    .pm-footer-brand,
    .pm-footer-contacts,
    .pm-footer-sections {
        width: 100%;
    }

    .pm-logo--footer {
        width: min(100%, 300rem);
        min-height: 42rem;
    }

    .pm-footer-brand__text {
        margin-top: 22rem;
    }

    .pm-footer-requisites {
        margin-top: 18rem;
    }

    .pm-footer-contact-list {
        gap: 16rem;
        margin-top: 22rem;
    }

    .pm-footer-contact-row {
        gap: 16rem;
    }

    .pm-footer-phones {
        width: auto;
    }

    .pm-footer-menu {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12rem 24rem;
        margin-top: 22rem;
    }

    .pm-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 18rem;
        margin-top: 54rem;
        padding-bottom: 34rem;
        font-size: 14rem;
    }

    .pm-footer-legal {
        align-items: flex-start;
        flex-direction: column;
        gap: 10rem;
        white-space: normal;
    }

    .pm-content {
        padding-block: 120rem 70rem;
    }

    .pm-error-page {
        padding: 0;
    }

    .pm-error-page h1 {
        font-size: 42rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* Production 404 */
.pm-error-page__section {
    display: flex;
    min-height: max(720rem, 100vh);
    padding: 220rem 0 110rem;
    align-items: center;
    overflow: hidden;
    background: #080d13;
    color: #fff;
}

.pm-error-page__inner {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90rem;
    align-items: center;
}

.pm-error-page__code {
    font-size: 250rem;
    font-weight: 600;
    line-height: .8;
    letter-spacing: -10rem;
    color: #f1c551;
    text-shadow: 0 20rem 60rem rgba(241, 197, 81, .14);
}

.pm-error-page__copy { max-width: 650rem; }
.pm-error-page__title { margin: 0 0 25rem; font-size: 64rem; line-height: 1.05; font-weight: 600; }
.pm-error-page__text { margin: 0 0 38rem; font-size: 22rem; line-height: 1.45; color: rgba(255,255,255,.72); }
.pm-error-page__button,
.pm-thank-you__button {
    display: inline-flex;
    min-height: 64rem;
    padding: 0 28rem;
    align-items: center;
    justify-content: center;
    gap: 18rem;
    border-radius: 15rem;
    background: linear-gradient(180deg, #f1c856 0%, #fa9a1a 100%);
    box-shadow: inset 0 -4rem 0 #df8123;
    color: #111;
    font-size: 18rem;
    font-weight: 600;
    letter-spacing: 1rem;
    text-decoration: none;
}

/* Thank-you page */
.pm-thank-you { padding: 100rem 0 120rem; background: #f7f7f7; }
.pm-thank-you__container { display: flex; justify-content: center; }
.pm-thank-you__card {
    width: min(920rem, 100%);
    padding: 70rem 85rem;
    border: 1px solid rgba(99,120,191,.25);
    border-radius: 24rem;
    background: #222;
    box-shadow: 0 20rem 60rem rgba(0,0,0,.12);
    text-align: center;
    color: #fff;
}
.pm-thank-you__icon {
    display: inline-flex;
    width: 70rem;
    height: 70rem;
    margin-bottom: 28rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1c551;
    color: #222;
    font-size: 36rem;
    font-weight: 700;
}
.pm-thank-you__title { margin: 0 0 20rem; font-size: 46rem; line-height: 1.1; font-weight: 600; }
.pm-thank-you__text { max-width: 680rem; margin: 0 auto 35rem; color: rgba(255,255,255,.76); font-size: 20rem; line-height: 1.45; }

@media (max-width: 767px) {
    .pm-error-page__section { min-height: 620rem; padding: 150rem 0 80rem; }
    .pm-error-page__inner { grid-template-columns: 1fr; gap: 35rem; text-align: center; }
    .pm-error-page__code { font-size: 140rem; letter-spacing: -5rem; }
    .pm-error-page__copy { margin: 0 auto; }
    .pm-error-page__title { font-size: 34rem; }
    .pm-error-page__text { font-size: 17rem; }
    .pm-error-page__button, .pm-thank-you__button { min-height: 56rem; padding: 0 22rem; font-size: 16rem; }
    .pm-thank-you { padding: 55rem 15rem 80rem; }
    .pm-thank-you__card { padding: 42rem 22rem; border-radius: 18rem; }
    .pm-thank-you__icon { width: 58rem; height: 58rem; font-size: 30rem; }
    .pm-thank-you__title { font-size: 28rem; }
    .pm-thank-you__text { font-size: 16rem; }
}
