.header-logo-image {
    width: auto;
    height: 40px;
    max-width: 180px;
    object-fit: contain;
}

.site-header::before {
    pointer-events: none;
}

.site-header-inner {
    z-index: 1;
}

.footer-brand .header-logo-image {
    height: 34px;
    max-width: 160px;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.method-logo-image {
    width: auto;
    height: 58px;
    max-width: 220px;
    object-fit: contain;
}

.pricing-table-price {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0;
}

.header-nav a {
    color: #8A94A7;
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    text-decoration: none;
    text-transform: uppercase;
}

.header-nav a:hover {
    color: #fff;
}

.page-hero {
    padding: 48px 0 24px;
}

.page-panel {
    position: relative;
    background: #2C3039;
    padding: 24px;
    box-shadow: 0 24px 48px rgba(21,24,29,.24);
}

.page-panel + .page-panel {
    margin-top: 24px;
}

.page-panel h1,
.page-panel h2,
.page-panel h3 {
    margin-top: 0;
}

.page-panel p:last-child,
.page-panel ul:last-child {
    margin-bottom: 0;
}

.page-grid {
    display: grid;
    gap: 16px;
}

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

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label,
.checkbox-field label {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.input,
.textarea {
    border-color: rgba(138,148,167,.32);
    color: #15181D;
}

.textarea {
    min-height: 160px;
    padding: 13px 16px;
}

.checkbox-field {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-top: 16px;
}

.checkbox-field input {
    margin-top: 5px;
}

.legal-list li {
    margin-bottom: 10px;
}

.cookie-banner {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 20;
    display: none;
    width: min(520px, calc(100vw - 32px));
    background: #2C3039;
    border: 1px solid rgba(138,148,167,.24);
    padding: 20px;
    box-shadow: 0 24px 48px rgba(21,24,29,.35);
}

.cookie-banner p {
    margin-bottom: 14px;
}

.cookie-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .site-header-inner {
        align-items: flex-start;
        gap: 18px;
        flex-direction: column;
    }

    .header-nav {
        gap: 14px;
        flex-wrap: wrap;
    }

    .page-grid.two {
        grid-template-columns: 1fr;
    }

    .footer-copyright {
        text-align: center;
    }
}
