:root {
    --wch-header-bg: #0d1f53;
    --wch-menu-bg: #10245c;
    --wch-menu-bg-light: #173b8e;
    --wch-text: #ffffff;
    --wch-muted: rgba(255, 255, 255, 0.62);
    --wch-border: rgba(255, 255, 255, 0.24);
    --wch-accent: #28b8ef;
    --wch-orange: #ee9255;
    --wch-support: #ef5f62;
    --wch-container-width: 1260px;
    --wch-header-height: 72px;
}

body {
    font-family: "Montserrat", sans-serif;
}

/* Header base */

.wch-header,
.wch-header * {
    box-sizing: border-box;
}

.wch-header {
    position: relative;
    z-index: 1000;
    width: 100%;
    min-height: var(--wch-header-height);
    background: var(--wch-header-bg);
    color: var(--wch-text);
    font-family: inherit;
}

.wch-container {
    width: min( calc(100% - 40px), var(--wch-container-width) );
    margin-inline: auto;
}

.wch-header-inner {
    display: flex;
    align-items: center;
    min-height: var(--wch-header-height);
    gap: 26px;
}

.wch-logo {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    width: 93px;
    text-decoration: none;
}

.wch-logo-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 52px;
    object-fit: contain;
}

.wch-desktop-nav {
    display: flex;
    align-items: stretch;
    align-self: stretch;
    gap: 3px;
    min-width: 0;
    margin-left: auto;
}

.wch-nav-item {
    position: relative;
    display: flex;
    align-items: stretch;
}

.wch-nav-trigger,
.wch-nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: var(--wch-header-height);
    padding: 0 10px;
    border: 0;
    background: transparent;
    color: var(--wch-text);
    font: inherit;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.035em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    transition: color 160ms ease, background-color 160ms ease;
}

    .wch-nav-trigger:hover,
    .wch-nav-trigger:focus-visible,
    .wch-nav-link:hover,
    .wch-nav-link:focus-visible {
        color: var(--wch-accent);
    }

    .wch-nav-trigger:focus-visible,
    .wch-nav-link:focus-visible,
    .wch-header-button:focus-visible,
    .wch-support-link:focus-visible {
        outline: 2px solid var(--wch-accent);
        outline-offset: -2px;
    }

    .wch-nav-trigger svg {
        width: 9px;
        height: 6px;
        overflow: visible;
        fill: none;
        stroke: currentColor;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-width: 1.5;
        transition: transform 160ms ease;
    }

.wch-nav-item:hover .wch-nav-trigger svg,
.wch-nav-item:focus-within .wch-nav-trigger svg {
    transform: rotate(180deg);
}

/* Standard dropdown */

.wch-dropdown {
    position: absolute;
    top: calc(100% - 12px);
    left: 0;
    display: flex;
    flex-direction: column;
    width: 220px;
    padding: 9px 0;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0 0 14px 14px;
    background: var(--wch-menu-bg);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.26);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
}

.wch-dropdown--services {
    width: 225px;
}

.wch-dropdown a {
    display: block;
    padding: 11px 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.35;
    text-decoration: none;
    transition: color 150ms ease, background-color 150ms ease;
}

    .wch-dropdown a:hover,
    .wch-dropdown a:focus-visible {
        color: var(--wch-text);
        background: rgba(255, 255, 255, 0.06);
        outline: none;
    }

.wch-nav-item:hover > .wch-dropdown,
.wch-nav-item:focus-within > .wch-dropdown,
.wch-nav-item:hover > .wch-mega-menu,
.wch-nav-item:focus-within > .wch-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mega menu */

.wch-mega-menu {
    position: fixed;
    top: var(--wch-header-height);
    left: 50%;
    width: min(calc(100vw - 56px), 1080px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0 0 15px 15px;
    background: var(--wch-menu-bg);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.34);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 9px);
    transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
}

.wch-nav-item:hover > .wch-mega-menu,
.wch-nav-item:focus-within > .wch-mega-menu {
    transform: translate(-50%, 0);
}

.wch-mega-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.wch-mega-section {
    min-width: 0;
    padding: 31px 30px 28px;
}

    .wch-mega-section + .wch-mega-section {
        border-left: 1px solid rgba(255, 255, 255, 0.11);
    }

.wch-menu-eyebrow {
    display: block;
    margin-bottom: 8px;
    color: var(--wch-orange);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.wch-mega-section h2 {
    margin: 0 0 26px;
    color: var(--wch-text);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.wch-mega-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 24px;
}

.wch-mega-link {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    align-items: start;
    gap: 11px;
    color: var(--wch-text);
    text-decoration: none;
}

.wch-mega-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(46, 179, 235, 0.19);
    border-radius: 50%;
    background: rgba(46, 179, 235, 0.08);
    color: var(--wch-accent);
    font-size: 16px;
    transition: background-color 150ms ease, transform 150ms ease;
}

.wch-mega-link strong {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.96);
    font-size: 12px;
    font-weight: 650;
    line-height: 1.25;
}

    .wch-mega-link strong small {
        color: var(--wch-orange);
        font: inherit;
        font-size: 10px;
    }

.wch-mega-link em {
    display: block;
    color: var(--wch-muted);
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.45;
}

.wch-mega-link:hover .wch-mega-icon,
.wch-mega-link:focus-visible .wch-mega-icon {
    background: rgba(46, 179, 235, 0.17);
    transform: translateY(-2px);
}

.wch-mega-link:focus-visible {
    outline: 2px solid var(--wch-accent);
    outline-offset: 5px;
}

.wch-mega-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 65px;
    padding: 14px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    background: linear-gradient( 90deg, rgba(24, 54, 132, 0.94), rgba(19, 68, 151, 0.94) );
    color: var(--wch-text);
    text-decoration: none;
}

    .wch-mega-footer strong,
    .wch-mega-footer small {
        display: block;
    }

    .wch-mega-footer strong {
        margin-bottom: 3px;
        font-size: 11px;
    }

    .wch-mega-footer small {
        color: var(--wch-muted);
        font-size: 10px;
    }

.wch-mega-footer-action {
    color: var(--wch-orange);
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

/* Header action buttons */

.wch-header-actions {
    display: flex;
    align-items: center;
    gap: 9px;
    flex: 0 0 auto;
}

.wch-header-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 16px;
    border: 1px solid var(--wch-border);
    border-radius: 4px;
    color: var(--wch-text);
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: border-color 150ms ease, background-color 150ms ease, color 150ms ease;
}

    .wch-header-button:hover {
        border-color: rgba(255, 255, 255, 0.58);
        background: rgba(255, 255, 255, 0.08);
        color: var(--wch-text);
    }

.wch-support-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding-left: 4px;
    color: var(--wch-support) !important;
    font-size: 11px;
    font-weight: 650;
    text-decoration: none;
    white-space: nowrap;
}

    .wch-support-link:hover {
        color: #ff7b7d;
    }

    .wch-support-link svg {
        width: 18px;
        height: 18px;
        fill: none;
        stroke: currentColor;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-width: 1.8;
    }

/* Mobile button */

.wch-mobile-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    margin-left: auto;
    padding: 0;
    border: 1px solid var(--wch-border);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

    .wch-mobile-toggle span {
        display: block;
        width: 18px;
        height: 1.5px;
        border-radius: 2px;
        background: var(--wch-text);
    }

/* Mobile drawer */

.wch-mobile-overlay {
    position: fixed;
    z-index: 1001;
    inset: 0;
    background: rgba(0, 7, 28, 0.78);
    backdrop-filter: blur(2px);
}

.wch-mobile-menu {
    position: fixed;
    z-index: 1002;
    top: 0;
    right: 0;
    width: min(86vw, 390px);
    height: 100dvh;
    background: linear-gradient( 180deg, #142c70 0%, #123684 100% );
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.35);
    transform: translateX(105%);
    transition: transform 220ms ease;
}

    .wch-mobile-menu.is-open {
        transform: translateX(0);
    }

.wch-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 79px;
    padding: 13px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.wch-mobile-logo {
    width: 104px;
}

    .wch-mobile-logo img {
        display: block;
        width: 100%;
        height: auto;
    }

.wch-mobile-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0 0 3px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.09);
    color: var(--wch-text);
    font-size: 28px;
    font-weight: 200;
    line-height: 1;
    cursor: pointer;
}

.wch-mobile-scroll {
    height: calc(100dvh - 79px);
    overflow-y: auto;
    padding: 21px 28px 40px;
    scrollbar-width: thin;
}

.wch-mobile-section {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 24px;
}

    .wch-mobile-section h2 {
        margin: 0 0 11px;
        color: var(--wch-orange);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.2em;
        text-transform: uppercase;
    }

    .wch-mobile-section a {
        padding: 7px 0;
        color: rgba(255, 255, 255, 0.72);
        font-size: 13px;
        line-height: 1.35;
        text-decoration: none;
    }

        .wch-mobile-section a:hover,
        .wch-mobile-section a:focus-visible {
            color: var(--wch-text);
            outline: none;
        }

.wch-mobile-actions {
    display: grid;
    gap: 10px;
    padding-top: 5px;
}

    .wch-mobile-actions a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 43px;
        padding: 0 15px;
        border: 1px solid rgba(255, 255, 255, 0.28);
        border-radius: 5px;
        color: var(--wch-text);
        font-size: 12px;
        font-weight: 600;
        text-decoration: none;
    }

    .wch-mobile-actions .wch-mobile-support {
        border-color: rgba(239, 95, 98, 0.45);
        color: #ff7b7d;
    }

/* Responsive */

@media (max-width: 1210px) {
    .wch-header-inner {
        gap: 14px;
    }

    .wch-nav-trigger,
    .wch-nav-link {
        padding-inline: 7px;
        font-size: 10px;
    }

    .wch-header-button {
        padding-inline: 11px;
        font-size: 10px;
    }

    .wch-support-link {
        font-size: 0;
    }

        .wch-support-link svg {
            width: 20px;
            height: 20px;
        }
}

@media (max-width: 1024px) {
    :root {
        --wch-header-height: 68px;
    }

    .wch-container {
        width: min(calc(100% - 32px), var(--wch-container-width));
    }

    .wch-desktop-nav,
    .wch-header-actions {
        display: none;
    }

    .wch-mobile-toggle {
        display: inline-flex;
    }

    .wch-logo {
        width: 92px;
    }
}

@media (max-width: 520px) {
    .wch-container {
        width: calc(100% - 28px);
    }

    .wch-mobile-menu {
        width: min(88vw, 360px);
    }

    .wch-mobile-header {
        padding-inline: 21px;
    }

    .wch-mobile-scroll {
        padding-inline: 25px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wch-dropdown,
    .wch-mega-menu,
    .wch-mobile-menu,
    .wch-nav-trigger svg {
        transition: none;
    }
}

body.wch-menu-open {
    overflow: hidden;
}

:root {
    --wch-footer-bg: #102354;
    --wch-footer-bg-deep: #0d1f4e;
    --wch-footer-text: #ffffff;
    --wch-footer-muted: rgba(255, 255, 255, 0.48);
    --wch-footer-muted-light: rgba(255, 255, 255, 0.64);
    --wch-footer-border: rgba(255, 255, 255, 0.12);
    --wch-footer-orange: #f28c3d;
    --wch-footer-blue: #29b6ed;
}

.wch-footer,
.wch-footer * {
    box-sizing: border-box;
}

.wch-footer {
    position: relative;
    overflow: hidden;
    padding: 76px 0 0;
    background: radial-gradient( circle at 88% 92%, rgba(16, 83, 177, 0.18), transparent 34% ), radial-gradient( circle at 7% 25%, rgba(28, 92, 168, 0.12), transparent 28% ), linear-gradient( 180deg, var(--wch-footer-bg) 0%, var(--wch-footer-bg-deep) 100% );
    color: var(--wch-footer-text);
}

    .wch-footer::before {
        position: absolute;
        inset: 0;
        content: "";
        pointer-events: none;
        opacity: 0.13;
        background-image: linear-gradient( 115deg, transparent 0%, rgba(255, 255, 255, 0.025) 49%, transparent 50% );
        background-size: 210px 210px;
    }

    .wch-footer > .wch-container {
        position: relative;
        z-index: 1;
    }

/* Main columns */

.wch-footer-main {
    display: grid;
    grid-template-columns: minmax(190px, 1.35fr) repeat(5, minmax(120px, 1fr));
    gap: 36px;
    align-items: start;
}

/* Brand */

.wch-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.wch-footer-logo {
    display: inline-flex;
    width: 112px;
    text-decoration: none;
}

    .wch-footer-logo img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: contain;
    }

.wch-payment-methods {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    margin-top: 59px;
}

.wch-payment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    min-height: 20px;
    padding: 2px 5px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.78);
    font-size: 7px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.wch-footer-pay-button,
.wch-footer-support-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 39px;
    padding: 0 31px;
    border: 2px solid var(--wch-footer-orange);
    border-radius: 14px;
    background: transparent;
    color: var(--wch-footer-text);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    text-decoration: none;
    text-transform: none;
    transition: background-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.wch-footer-pay-button {
    margin-top: 50px;
}

    .wch-footer-pay-button:hover,
    .wch-footer-support-button:hover {
        background: var(--wch-footer-orange);
        color: #0f214e;
        transform: translateY(-1px);
    }

    .wch-footer-pay-button:focus-visible,
    .wch-footer-support-button:focus-visible,
    .wch-footer-column a:focus-visible,
    .wch-footer-socials a:focus-visible,
    .wch-footer-bottom a:focus-visible {
        outline: 2px solid var(--wch-footer-blue);
        outline-offset: 4px;
    }

/* Link columns */

.wch-footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

    .wch-footer-column h2 {
        margin: 0 0 26px;
        color: var(--wch-footer-text);
        font-size: 11px;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0.22em;
        text-transform: uppercase;
    }

    .wch-footer-column a {
        display: inline-block;
        margin-bottom: 20px;
        color: var(--wch-footer-muted);
        font-size: 13px;
        font-weight: 400;
        line-height: 1.25;
        text-decoration: none;
        transition: color 150ms ease, transform 150ms ease;
    }

        .wch-footer-column a:hover {
            color: var(--wch-footer-text);
            transform: translateX(2px);
        }

/* Contact */

.wch-footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 85px;
    padding-bottom: 49px;
    text-align: center;
}

.wch-footer-phone {
    color: var(--wch-footer-text);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.025em;
    text-decoration: none;
}

    .wch-footer-phone:hover {
        color: var(--wch-footer-blue);
    }

.wch-footer-address,
.wch-footer-fax {
    color: var(--wch-footer-muted);
    font-size: 13px;
    font-style: normal;
    line-height: 1.5;
}

.wch-footer-address {
    margin-top: 20px;
}

.wch-footer-fax {
    margin-top: 10px;
}

.wch-footer-support-button {
    min-width: 200px;
    margin-top: 30px;
    border-radius: 13px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.wch-footer-follow {
    margin-top: 35px;
    color: var(--wch-footer-text);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.wch-footer-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 21px;
    margin-top: 18px;
}

    .wch-footer-socials a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 20px;
        color: rgba(255, 255, 255, 0.72);
        text-decoration: none;
        transition: color 150ms ease, transform 150ms ease;
    }

        .wch-footer-socials a:hover {
            color: var(--wch-footer-blue);
            transform: translateY(-2px);
        }

    .wch-footer-socials svg {
        width: 18px;
        height: 18px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .wch-footer-socials a:first-child svg {
        fill: currentColor;
        stroke: none;
    }

/* Bottom */

.wch-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    min-height: 92px;
    padding: 25px 10px;
    border-top: 1px solid var(--wch-footer-border);
    color: rgba(255, 255, 255, 0.34);
    font-size: 11px;
    line-height: 1.5;
    text-align: center;
}

    .wch-footer-bottom a {
        color: rgba(242, 140, 61, 0.72);
        text-decoration: none;
    }

        .wch-footer-bottom a:hover {
            color: var(--wch-footer-orange);
        }

/* Tablet */

@media (max-width: 1100px) {
    .wch-footer-main {
        grid-template-columns: minmax(190px, 1.3fr) repeat(3, minmax(140px, 1fr));
        row-gap: 50px;
    }

    .wch-footer-brand {
        grid-row: span 2;
    }
}

/* Mobile */

@media (max-width: 760px) {
    .wch-footer {
        padding-top: 52px;
    }

    .wch-footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 43px 24px;
    }

    .wch-footer-brand {
        grid-column: 1 / -1;
        grid-row: auto;
        align-items: center;
        text-align: center;
    }

    .wch-footer-logo {
        width: 118px;
    }

    .wch-payment-methods {
        justify-content: center;
        margin-top: 28px;
    }

    .wch-footer-pay-button {
        margin-top: 27px;
    }

    .wch-footer-column {
        align-items: flex-start;
    }

        .wch-footer-column h2 {
            margin-bottom: 19px;
        }

        .wch-footer-column a {
            margin-bottom: 14px;
            font-size: 12px;
        }

    .wch-footer-contact {
        margin-top: 62px;
        padding-bottom: 40px;
    }

    .wch-footer-phone {
        font-size: 24px;
    }

    .wch-footer-bottom {
        min-height: 105px;
        padding-inline: 20px;
    }

    .wch-footer-bottom-separator {
        display: none;
    }

    .wch-footer-bottom span,
    .wch-footer-bottom a {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .wch-footer-main {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .wch-footer-brand {
        grid-column: auto;
    }

    .wch-footer-column {
        align-items: center;
        text-align: center;
    }

        .wch-footer-column h2 {
            margin-bottom: 16px;
        }

        .wch-footer-column a {
            margin-bottom: 12px;
        }

    .wch-footer-contact {
        margin-top: 48px;
    }

    .wch-footer-address {
        max-width: 280px;
    }
}


/* =========================================================
   PAYMENT PAGE
   Header and footer are styled separately in _Layout
   ========================================================= */

:root {
    --payment-bg-start: #203a7a;
    --payment-bg-middle: #1c469e;
    --payment-bg-end: #0758d5;
    --payment-card-bg: #0e214e;
    --payment-card-bg-soft: rgba(13, 34, 79, 0.94);
    --payment-card-bg-hover: #102858;
    --payment-text: #ffffff;
    --payment-text-muted: rgba(255, 255, 255, 0.55);
    --payment-text-soft: rgba(255, 255, 255, 0.4);
    --payment-cyan: #23baf2;
    --payment-cyan-light: #5bd8ff;
    --payment-orange: #ef914e;
    --payment-border: rgba(255, 255, 255, 0.12);
    --payment-border-soft: rgba(255, 255, 255, 0.08);
    --payment-input-bg: rgba(255, 255, 255, 0.035);
    --payment-input-border: rgba(255, 255, 255, 0.16);
    --payment-container-width: 1260px;
    --payment-radius-large: 23px;
    --payment-radius-card: 16px;
    --payment-radius-input: 11px;
}

.wch-page,
.wch-page * {
    box-sizing: border-box;
}

.wch-page {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    background: radial-gradient( circle at 85% 17%, rgba(0, 121, 255, 0.2), transparent 33% ), radial-gradient( circle at 7% 72%, rgba(57, 79, 172, 0.22), transparent 35% ), linear-gradient( 112deg, var(--payment-bg-start) 0%, var(--payment-bg-middle) 54%, var(--payment-bg-end) 100% );
    color: var(--payment-text);
}

    .wch-page::before {
        position: absolute;
        inset: 0;
        content: "";
        z-index: 0;
        pointer-events: none;
        background: linear-gradient( 120deg, rgba(255, 255, 255, 0.018), transparent 34% ), repeating-linear-gradient( 115deg, transparent 0, transparent 170px, rgba(255, 255, 255, 0.01) 171px, transparent 172px );
    }

    .wch-page main {
        position: relative;
        z-index: 1;
    }

    .wch-page .wch-container {
        width: min( calc(100% - 48px), var(--payment-container-width) );
        margin-inline: auto;
    }

/* =========================================================
   HERO
   ========================================================= */

.payment-hero {
    padding: 80px 0 39px;
}

.hero-eyebrow,
.section-eyebrow,
.summary-eyebrow {
    display: block;
    color: var(--payment-orange);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.payment-hero h1 {
    max-width: 960px;
    margin: 18px 0 20px;
    color: var(--payment-text);
    font-size: clamp(42px, 4.3vw, 61px);
    font-weight: 500;
    line-height: 1.06;
    letter-spacing: -0.035em;
}

    .payment-hero h1 span,
    .section-heading span {
        color: var(--payment-cyan);
    }

.payment-hero-description {
    max-width: 750px;
    margin: 0;
    color: var(--payment-text-muted);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.68;
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.hero-benefit {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: start;
    gap: 14px;
    min-height: 101px;
    padding: 19px 21px;
    border: 1px solid var(--payment-border-soft);
    border-radius: 13px;
    background: linear-gradient( 145deg, rgba(10, 35, 82, 0.92), rgba(11, 37, 84, 0.8) );
    box-shadow: 0 14px 35px rgba(0, 14, 53, 0.1);
}

.icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 41px;
    height: 41px;
    flex: 0 0 41px;
    border: 1px solid rgba(35, 186, 242, 0.23);
    border-radius: 10px;
    background: rgba(35, 186, 242, 0.08);
    color: var(--payment-cyan);
}

    .icon-box svg {
        width: 21px;
        height: 21px;
        stroke: currentColor;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.hero-benefit h3 {
    margin: 2px 0 5px;
    color: var(--payment-text);
    font-size: 15px;
    font-weight: 650;
    line-height: 1.3;
}

.hero-benefit p {
    margin: 0;
    color: var(--payment-text-muted);
    font-size: 12px;
    line-height: 1.5;
}

/* =========================================================
   PAYMENT FORM SECTION
   ========================================================= */

.payment-section {
    padding: 0 0 84px;
}

.payment-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.37fr) minmax(350px, 1fr);
    gap: 29px;
    align-items: start;
}

.payment-card {
    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: var(--payment-radius-large);
    background: linear-gradient( 145deg, rgba(12, 34, 79, 0.99), rgba(12, 34, 77, 0.96) );
    box-shadow: 0 22px 48px rgba(0, 15, 56, 0.19), inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.payment-form-card {
    min-height: 590px;
    padding: 38px 37px 34px;
}

.card-title {
    margin: 0;
    color: var(--payment-text);
    font-size: 27px;
    font-weight: 650;
    line-height: 1.2;
    letter-spacing: -0.018em;
}

.card-subtitle {
    margin: 6px 0 34px;
    color: var(--payment-text-soft);
    font-size: 12px;
    line-height: 1.45;
}

    .card-subtitle strong {
        font-weight: 400;
    }

.validation-summary {
    display: none;
    margin: -10px 0 22px;
    padding: 13px 15px;
    border: 1px solid rgba(255, 102, 102, 0.35);
    border-radius: 9px;
    background: rgba(160, 25, 35, 0.17);
    color: #ffb9bd;
    font-size: 13px;
    line-height: 1.45;
}

    .validation-summary.is-visible {
        display: block;
    }

/* Form */

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 23px 18px;
}

.form-field {
    min-width: 0;
}

.form-field--full {
    grid-column: 1 / -1;
}

.form-field label,
.payment-method-title {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 10px;
    font-weight: 650;
    line-height: 1;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.required-star {
    color: rgba(255, 255, 255, 0.74);
}

.payment-input {
    display: block;
    width: 100%;
    height: 38px;
    padding: 0 12px;
    border: 1px solid var(--payment-input-border);
    border-radius: var(--payment-radius-input);
    outline: 0;
    background: var(--payment-input-bg);
    color: var(--payment-text);
    font: inherit;
    font-size: 12px;
    line-height: 1;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.015);
    transition: border-color 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

    .payment-input::placeholder {
        color: rgba(255, 255, 255, 0.37);
        opacity: 1;
    }

    .payment-input:hover {
        border-color: rgba(255, 255, 255, 0.25);
    }

    .payment-input:focus {
        border-color: rgba(35, 186, 242, 0.8);
        background: rgba(255, 255, 255, 0.055);
        box-shadow: 0 0 0 3px rgba(35, 186, 242, 0.09);
    }

    .payment-input.input-validation-error {
        border-color: rgba(255, 100, 115, 0.72);
    }

.field-help {
    display: block;
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 9px;
    line-height: 1.35;
}

.field-error {
    display: block;
    margin-top: 6px;
    color: #ff9fa8;
    font-size: 10px;
    line-height: 1.35;
}

    .field-error:empty {
        display: none;
    }

/* Payment methods */

.payment-method-wrapper {
    margin-top: 32px;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
}

.payment-method {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 20px;
    align-items: center;
    gap: 11px;
    min-height: 73px;
    padding: 11px 13px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.025);
    cursor: pointer;
    transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

    .payment-method:hover {
        border-color: rgba(35, 186, 242, 0.42);
        background: rgba(35, 186, 242, 0.035);
    }

    .payment-method.is-selected {
        border-color: rgba(35, 186, 242, 0.9);
        background: linear-gradient( 145deg, rgba(35, 186, 242, 0.08), rgba(255, 255, 255, 0.025) );
        box-shadow: 0 0 0 1px rgba(35, 186, 242, 0.05), inset 0 0 24px rgba(35, 186, 242, 0.025);
    }

    .payment-method input {
        position: absolute;
        width: 1px;
        height: 1px;
        opacity: 0;
        pointer-events: none;
    }

.method-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(35, 186, 242, 0.2);
    border-radius: 10px;
    background: rgba(35, 186, 242, 0.08);
    color: var(--payment-cyan);
}

    .method-icon svg {
        width: 21px;
        height: 21px;
        stroke: currentColor;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.method-content {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

    .method-content strong {
        color: rgba(255, 255, 255, 0.94);
        font-size: 14px;
        font-weight: 600;
        line-height: 1.3;
    }

    .method-content > span {
        margin-top: 3px;
        color: rgba(255, 255, 255, 0.4);
        font-size: 10px;
        line-height: 1.3;
    }

.method-check {
    display: none;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    border: 1px solid var(--payment-cyan);
    border-radius: 50%;
    color: var(--payment-cyan);
    font-size: 10px;
    font-weight: 700;
}

.payment-method.is-selected .method-check {
    display: inline-flex;
}

.fee-notice {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 13px 0 0;
    color: rgba(255, 255, 255, 0.39);
    font-size: 9px;
    line-height: 1.45;
}

    .fee-notice svg {
        width: 14px;
        height: 14px;
        flex: 0 0 14px;
        margin-top: 1px;
        stroke: rgba(255, 255, 255, 0.58);
        stroke-linecap: round;
        stroke-linejoin: round;
    }

/* Submit */

.payment-submit {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 229px;
    min-height: 45px;
    margin-top: 25px;
    padding: 0 26px;
    overflow: hidden;
    border: 0;
    border-radius: 7px;
    outline: 0;
    background: linear-gradient( 105deg, #1476ec 0%, #1eb5ee 58%, #5ad9ff 100% );
    color: #ffffff;
    font: inherit;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    box-shadow: 0 11px 25px rgba(10, 126, 226, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: transform 150ms ease, box-shadow 150ms ease, filter 150ms ease;
}

    .payment-submit::before {
        position: absolute;
        inset: 0;
        content: "";
        background: linear-gradient( 110deg, transparent 20%, rgba(255, 255, 255, 0.16) 50%, transparent 80% );
        transform: translateX(-120%);
        transition: transform 450ms ease;
    }

    .payment-submit:hover:not(:disabled) {
        transform: translateY(-1px);
        filter: brightness(1.08);
        box-shadow: 0 14px 29px rgba(10, 126, 226, 0.29);
    }

        .payment-submit:hover:not(:disabled)::before {
            transform: translateX(120%);
        }

    .payment-submit:focus-visible {
        box-shadow: 0 0 0 3px rgba(83, 215, 255, 0.23), 0 14px 29px rgba(10, 126, 226, 0.29);
    }

    .payment-submit:disabled {
        cursor: wait;
        opacity: 0.72;
    }

.button-icon {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.button-spinner {
    display: none;
    width: 15px;
    height: 15px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: payment-spinner 700ms linear infinite;
}

.payment-submit.is-loading .button-spinner {
    display: inline-block;
}

.payment-submit.is-loading .button-icon {
    display: none;
}

@keyframes payment-spinner {
    to {
        transform: rotate(360deg);
    }
}

.submit-security {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 9px;
}

    .submit-security svg {
        width: 14px;
        height: 14px;
        stroke: rgba(255, 255, 255, 0.4);
        stroke-linecap: round;
        stroke-linejoin: round;
    }

/* =========================================================
   ORDER SUMMARY
   ========================================================= */

.payment-summary-card {
    position: sticky;
    top: 95px;
    min-height: 388px;
    padding: 30px 28px 28px;
}

.summary-heading {
    margin: 9px 0 27px;
    color: var(--payment-text);
    font-size: 17px;
    font-weight: 620;
    line-height: 1.3;
}

.summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 8px 0;
    color: var(--payment-text-muted);
    font-size: 13px;
}

    .summary-row strong {
        color: rgba(255, 255, 255, 0.47);
        font-size: 13px;
        font-weight: 400;
    }

.summary-total {
    margin-top: 4px;
    padding: 15px 0 19px;
    border-top: 1px solid rgba(255, 255, 255, 0.065);
    color: var(--payment-text);
    font-size: 16px;
    font-weight: 650;
}

    .summary-total strong {
        color: var(--payment-cyan);
        font-size: 17px;
        font-weight: 700;
    }

.summary-points {
    display: grid;
    gap: 12px;
}

.summary-point {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.47);
    font-size: 11px;
    line-height: 1.3;
}

    .summary-point svg {
        width: 15px;
        height: 15px;
        flex: 0 0 15px;
        stroke: var(--payment-cyan);
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.summary-help {
    margin-top: 27px;
    padding: 14px 15px;
    border: 1px solid rgba(255, 255, 255, 0.105);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.027);
    color: rgba(255, 255, 255, 0.38);
    font-size: 11px;
    line-height: 1.5;
}

    .summary-help a {
        color: rgba(35, 186, 242, 0.75);
        text-decoration: none;
    }

        .summary-help a:hover {
            color: var(--payment-cyan-light);
            text-decoration: underline;
        }

/* =========================================================
   COMMON CONTENT SECTIONS
   ========================================================= */

.content-section,
.why-section {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.045);
}

.content-section {
    padding: 72px 0 71px;
}

.why-section {
    padding: 70px 0 78px;
}

.section-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.section-heading {
    margin: 14px 0 13px;
    color: var(--payment-text);
    font-size: clamp(31px, 3.1vw, 42px);
    font-weight: 520;
    line-height: 1.12;
    letter-spacing: -0.025em;
}

.section-description {
    max-width: 760px;
    margin: 0;
    color: var(--payment-text-muted);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
}

/* Services cards */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 35px;
}

.service-card {
    display: flex;
    min-height: 164px;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px 22px 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    background: linear-gradient( 145deg, rgba(11, 34, 79, 0.98), rgba(11, 35, 79, 0.93) );
    color: var(--payment-text);
    text-decoration: none;
    box-shadow: 0 14px 32px rgba(0, 18, 60, 0.11);
    transition: transform 170ms ease, border-color 170ms ease, background-color 170ms ease, box-shadow 170ms ease;
}

    .service-card:hover {
        border-color: rgba(35, 186, 242, 0.28);
        background: var(--payment-card-bg-hover);
        transform: translateY(-3px);
        box-shadow: 0 19px 38px rgba(0, 18, 60, 0.18);
    }

    .service-card h3 {
        margin: 0 0 14px;
        color: rgba(255, 255, 255, 0.94);
        font-size: 15px;
        font-weight: 600;
        line-height: 1.3;
    }

.service-card-link {
    color: rgba(239, 145, 78, 0.76);
    font-size: 11px;
    line-height: 1;
}

.service-card:hover .service-card-link {
    color: var(--payment-orange);
}

.outline-button,
.secondary-link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    padding: 0 28px;
    border: 2px solid var(--payment-orange);
    border-radius: 11px;
    background: transparent;
    color: var(--payment-text);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 150ms ease, background-color 150ms ease, transform 150ms ease;
}

.outline-button {
    margin-top: 34px;
}

    .outline-button:hover,
    .secondary-link-button:hover {
        background: var(--payment-orange);
        color: #10234e;
        transform: translateY(-1px);
    }

/* Why cards */

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-top: 37px;
}

.why-card {
    min-height: 163px;
    padding: 24px 22px 20px;
    border: 1px solid rgba(255, 255, 255, 0.045);
    border-radius: 14px;
    background: linear-gradient( 145deg, rgba(10, 32, 75, 0.98), rgba(10, 34, 78, 0.93) );
}

    .why-card .icon-box {
        width: 34px;
        height: 34px;
        margin-bottom: 17px;
        border: 0;
        background: transparent;
    }

        .why-card .icon-box svg {
            width: 27px;
            height: 27px;
            stroke-width: 1.9;
        }

    .why-card h3 {
        margin: 0 0 9px;
        color: rgba(255, 255, 255, 0.94);
        font-size: 15px;
        font-weight: 600;
        line-height: 1.35;
    }

    .why-card p {
        margin: 0;
        color: rgba(255, 255, 255, 0.42);
        font-size: 11px;
        line-height: 1.5;
    }

/* Help banner */

.help-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-height: 123px;
    margin-top: 43px;
    padding: 24px 37px;
    border: 1px solid rgba(255, 255, 255, 0.045);
    border-radius: 20px;
    background: linear-gradient( 115deg, rgba(8, 30, 72, 0.98), rgba(11, 36, 83, 0.96) );
}

.help-banner-content {
    display: flex;
    align-items: center;
    gap: 17px;
}

    .help-banner-content .icon-box {
        width: 36px;
        height: 36px;
        border: 0;
        background: transparent;
    }

        .help-banner-content .icon-box svg {
            width: 31px;
            height: 31px;
        }

    .help-banner-content h3 {
        margin: 0 0 6px;
        color: var(--payment-text);
        font-size: 17px;
        font-weight: 620;
        line-height: 1.3;
    }

    .help-banner-content p {
        margin: 0;
        color: rgba(255, 255, 255, 0.4);
        font-size: 11px;
        line-height: 1.45;
    }

.help-banner-actions {
    display: flex;
    align-items: center;
    gap: 11px;
    flex: 0 0 auto;
}

.primary-link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    padding: 0 27px;
    border-radius: 8px;
    background: linear-gradient( 105deg, #1478ed, #1eb7ee 65%, #5ad9ff );
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.11em;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(16, 139, 225, 0.2);
    transition: filter 150ms ease, transform 150ms ease;
}

    .primary-link-button:hover {
        filter: brightness(1.08);
        transform: translateY(-1px);
    }

.secondary-link-button {
    min-width: 232px;
}

    /* =========================================================
   ACCESSIBILITY
   ========================================================= */

    .service-card:focus-visible,
    .outline-button:focus-visible,
    .primary-link-button:focus-visible,
    .secondary-link-button:focus-visible,
    .summary-help a:focus-visible {
        outline: 2px solid var(--payment-cyan-light);
        outline-offset: 4px;
    }

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {
    .payment-hero {
        padding-top: 66px;
    }

    .payment-grid {
        grid-template-columns: minmax(0, 1.25fr) minmax(315px, 0.85fr);
        gap: 20px;
    }

    .payment-form-card {
        padding-inline: 28px;
    }

    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .help-banner {
        align-items: flex-start;
    }

    .help-banner-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .primary-link-button,
    .secondary-link-button {
        width: 100%;
    }
}

@media (max-width: 900px) {
    .hero-benefits {
        grid-template-columns: 1fr;
    }

    .hero-benefit {
        min-height: 88px;
    }

    .payment-grid {
        grid-template-columns: 1fr;
    }

    .payment-summary-card {
        position: static;
        grid-row: 1;
        min-height: 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .help-banner {
        flex-direction: column;
        align-items: stretch;
    }

    .help-banner-actions {
        flex-direction: row;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 640px) {
    .wch-page .wch-container {
        width: calc(100% - 28px);
    }

    .payment-hero {
        padding: 46px 0 30px;
    }

        .payment-hero h1 {
            margin-top: 14px;
            font-size: 38px;
            line-height: 1.08;
        }

            .payment-hero h1 span {
                display: block;
            }

    .payment-hero-description {
        font-size: 14px;
        line-height: 1.62;
    }

    .hero-benefits {
        margin-top: 25px;
    }

    .hero-benefit {
        grid-template-columns: 39px minmax(0, 1fr);
        padding: 17px;
    }

    .payment-section {
        padding-bottom: 58px;
    }

    .payment-card {
        border-radius: 17px;
    }

    .payment-form-card,
    .payment-summary-card {
        padding: 25px 20px;
    }

    .card-title {
        font-size: 23px;
    }

    .card-subtitle {
        margin-bottom: 28px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-field--full {
        grid-column: auto;
    }

    .payment-input {
        height: 44px;
        font-size: 13px;
    }

    .payment-method-wrapper {
        margin-top: 29px;
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }

    .payment-method {
        min-height: 76px;
    }

    .payment-submit {
        width: 100%;
        min-width: 0;
        min-height: 49px;
    }

    .submit-security {
        justify-content: center;
    }

    .payment-summary-card {
        grid-row: auto;
    }

    .content-section,
    .why-section {
        padding: 55px 0;
    }

    .section-heading {
        font-size: 31px;
    }

    .services-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-card {
        min-height: 143px;
    }

    .outline-button {
        width: 100%;
    }

    .help-banner {
        margin-top: 29px;
        padding: 24px 20px;
        border-radius: 16px;
    }

    .help-banner-content {
        align-items: flex-start;
    }

    .help-banner-actions {
        width: 100%;
        flex-direction: column;
    }

    .primary-link-button,
    .secondary-link-button {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 420px) {
    .payment-hero h1 {
        font-size: 34px;
    }

    .hero-benefit {
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 12px;
    }

    .icon-box {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
    }

    .payment-form-card,
    .payment-summary-card {
        padding-inline: 17px;
    }

    .method-content strong {
        font-size: 13px;
    }

    .help-banner-content {
        flex-direction: column;
    }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    .payment-input,
    .payment-method,
    .payment-submit,
    .service-card,
    .outline-button,
    .primary-link-button,
    .secondary-link-button {
        transition: none;
    }

    .button-spinner {
        animation-duration: 1.3s;
    }
}

a {
    color: white !important;
}