@font-face {
    font-family: 'Gilroy';
    src: url('/assets/fonts/Gilroy-Regular.woff2') format('woff2'),
         url('/assets/fonts/Gilroy-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/assets/fonts/Gilroy-SemiBold.woff2') format('woff2'),
         url('/assets/fonts/Gilroy-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/assets/fonts/Gilroy-Bold.woff2') format('woff2'),
         url('/assets/fonts/Gilroy-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #071439;
    color: #ffffff;
}

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

a {
    color: inherit;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-frame {
    width: 100%;
    min-height: 100vh;
    background: #071439;
}

.landing-shell {
    width: 100%;
    min-height: calc(100vh - 48px);
    background: #071439;
    display: flex;
    flex-direction: column;
    position: relative;
}

.top-notice {
    width: 100%;
    background: #f4d80b;
    color: #111111;
}

.top-notice__inner {
    width: 100%;
    min-height: 48px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    position: relative;
}

.top-notice__text {
    margin: 0 0 0 46px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    color: #111111;
}

.top-notice__close {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.top-notice__close span {
    position: absolute;
    top: 10px;
    left: 1px;
    width: 20px;
    height: 3px;
    background: #111111;
    border-radius: 2px;
}

.top-notice__close span:first-child {
    transform: rotate(45deg);
}

.top-notice__close span:last-child {
    transform: rotate(-45deg);
}

.site-header,
.site-footer {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding-left: 94px;
    padding-right: 94px;
}

.site-header {
    padding-top: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.site-logo img {
    height: 58px;
    width: auto;
    object-fit: contain;
}

.support-button {
    min-width: 186px;
    height: 48px;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #67d0d4;
    border-radius: 14px;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.01em;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.support-button:hover {
    background: #67d0d4;
    color: #071439;
    border-color: #67d0d4;
}

.hero-section {
    flex: 1;
    width: 100%;
    padding: 36px 0 24px;
    display: flex;
}

.hero-content {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 600px 430px;
    grid-template-areas:
        "copy form"
        "contacts form";
    column-gap: 90px;
    row-gap: 0;
    align-items: center;
    align-content: center;
    min-height: 620px;
}

.hero-copy {
    grid-area: copy;
    width: 600px;
    padding-top: 12px;
    align-self: end;
}

.hero-title {
    margin: 0 0 36px;
    max-width: 600px;
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 66px;
    line-height: 1.06;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.hero-text {
    margin: 0 0 20px;
    max-width: 600px;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 400;
    color: #ffffff;
}

.hero-copy .hero-text:last-of-type {
    margin-bottom: 42px;
}

.hero-actions {
    width: 600px;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 82px;
    flex-wrap: nowrap;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    height: 52px;
    padding: 0 34px;
    border-radius: 16px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.01em;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hero-actions .hero-cta:first-child {
    min-width: 236px;
    background: #f4d80b;
    color: #111111;
    border: 2px solid #f4d80b;
}

.hero-actions .hero-cta:first-child:hover {
    background: #e2c700;
    border-color: #e2c700;
}

.hero-cta__arrow {
    font-size: 19px;
    line-height: 1;
    transform: translateY(-1px);
}

.hero-cta.hero-cta--secondary {
    min-width: 236px;
    height: 52px;
    padding: 0 34px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid #67d0d4;
    background: transparent;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-cta.hero-cta--secondary:hover {
    background: #67d0d4;
    color: #071439;
    border-color: #67d0d4;
}

.hero-contact-blocks {
    grid-area: contacts;
    width: 600px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 42px;
    row-gap: 0;
    max-width: 600px;
    align-items: start;
    align-self: start;
}

.hero-contact-block__title {
    margin: 0 0 16px;
    font-size: 22px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #ffffff;
}

.hero-contact-block__item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 14px;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
}

.hero-contact-block__item:last-child {
    margin-bottom: 0;
}

.hero-contact-block__icon {
    width: 19px;
    height: 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 19px;
    color: #ffffff;
}

.hero-contact-block__icon svg {
    width: 19px;
    height: 19px;
    display: block;
}

.contact-card {
    grid-area: form;
    width: 430px;
    background: #79bcc0;
    border-radius: 22px;
    margin-top: 18px;
    align-self: center;
}

.contact-card__inner {
    padding: 42px 40px 42px;
}

.contact-card__title {
    margin: 0 0 14px;
    font-size: 32px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #071439;
}

.contact-card__intro {
    margin: 0 0 22px;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 400;
    color: #111111;
}

.contact-form {
    display: block;
    position: relative;
}

.contact-form__status {
    margin: 0 0 14px;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 600;
}

.contact-form__status--success {
    background: rgba(255, 255, 255, 0.35);
    color: #111111;
}

.contact-form__status--error {
    background: rgba(184, 52, 52, 0.12);
    color: #7d1111;
}

.contact-form__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-field {
    margin-bottom: 14px;
}

.form-field__error {
    margin: 7px 0 0;
    padding-left: 4px;
    font-size: 11px;
    line-height: 1.3;
    font-weight: 600;
    color: #7d1111;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    display: block;
    margin: 0;
    border: 0;
    outline: none;
    background: #f2f2f2;
    color: #111111;
    font-family: inherit;
    font-size: 15px;
    font-weight: 400;
    border-radius: 14px;
    box-shadow: none;
}

.contact-form input {
    height: 46px;
    padding: 0 18px;
}

.contact-form textarea {
    min-height: 120px;
    padding: 14px 18px;
    resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #4e4e4e;
    opacity: 1;
}

.contact-form input.is-invalid,
.contact-form textarea.is-invalid {
    border: 1px solid rgba(125, 17, 17, 0.45);
    background: #f8eeee;
}

.contact-form input.is-invalid::placeholder,
.contact-form textarea.is-invalid::placeholder {
    color: #6e4a4a;
}

.form-consent {
    display: grid;
    grid-template-columns: 14px 1fr;
    column-gap: 10px;
    align-items: start;
    margin: 8px 0 24px;
}

.form-consent input[type="checkbox"] {
    width: 14px;
    height: 14px;
    min-height: 14px;
    margin: 3px 0 0;
    padding: 0;
    accent-color: #f4d80b;
}

.form-consent label {
    font-size: 10px;
    line-height: 1.35;
    color: #111111;
}

.form-consent a {
    color: #db6b6b;
    text-decoration: none;
}

.form-consent a:hover {
    text-decoration: underline;
}

.contact-form__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    height: 44px;
    padding: 0 28px;
    margin: 0 auto;
    border: 0;
    border-radius: 999px;
    background: #f4d80b;
    color: #111111;
    font-family: inherit;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
}

.site-footer {
    padding-top: 18px;
    padding-bottom: 20px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 32px;
    margin-top: auto;
}

.site-footer__socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-footer__socials a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.site-footer__socials img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.site-footer__links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.site-footer__links a {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
    color: #b6bfd3;
    text-decoration: none;
}

.site-footer__links a:hover {
    color: #ffffff;
}

.site-footer__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
    color: #b6bfd3;
}

.site-footer__brand,
.site-footer__bottom {
    display: none;
}

.legal-shell {
    min-height: calc(100vh - 48px);
}

.legal-hero-section {
    width: 100%;
    padding: 170px 0 110px;
    display: flex;
    justify-content: center;
}

.legal-hero-content {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    display: block;
    padding-left: 0;
    padding-right: 0;
}

.legal-page-title {
    width: 100%;
    max-width: 1080px;
    margin: 0;
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 60px;
    line-height: 1.04;
    font-weight: 600;
    letter-spacing: -0.03em;
    text-align: left;
    color: #ffffff;
}

.legal-body-section {
    width: 100%;
    background: #f3f3f1;
    border-top-left-radius: 150px;
    border-bottom-left-radius: 150px;
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.legal-body-inner {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 62px 0 0;
}

.legal-copy-column {
    width: 100%;
    max-width: 1080px;
    padding-bottom: 150px;
}

.legal-copy-block {
    width: 100%;
    margin: 0 0 28px 0;
}

.legal-copy-block:last-child {
    margin-bottom: 0;
}

.legal-copy-block h2 {
    margin: 0 0 10px;
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 700;
    color: #111111;
}

.legal-copy-block p {
    margin: 0 0 14px;
    font-size: 17px;
    line-height: 1.48;
    font-weight: 400;
    color: #111111;
}

.legal-copy-block p:last-child {
    margin-bottom: 0;
}

.site-footer--legal {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    display: block;
    background: #071439;
    overflow: hidden;
    position: relative;
    z-index: 1;
    min-height: 300px;
}

.site-footer--legal .site-footer__brand {
    display: flex;
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 72px 94px 0;
    text-decoration: none;
}

.site-footer--legal .site-footer__brand img {
    height: 58px;
    width: auto;
    object-fit: contain;
}

.site-footer--legal .site-footer__bottom {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 32px;
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 113px 94px 20px;
}

.site-footer--legal .site-footer__socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-footer--legal .site-footer__links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.site-footer--legal .site-footer__meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    white-space: nowrap;
}

@media (max-width: 1280px) {
    .site-header,
    .site-footer {
        padding-left: 64px;
        padding-right: 64px;
    }

    .hero-content {
        max-width: 1020px;
        grid-template-columns: 540px 400px;
        grid-template-areas:
            "copy form"
            "contacts form";
        column-gap: 80px;
        min-height: 580px;
    }

    .hero-copy {
        width: 540px;
    }

    .hero-title {
        max-width: 540px;
        font-size: 58px;
    }

    .hero-text {
        max-width: 540px;
        font-size: 16px;
    }

    .hero-actions {
        width: 540px;
        gap: 20px;
        margin-bottom: 68px;
    }

    .hero-actions .hero-cta:first-child,
    .hero-cta.hero-cta--secondary {
        min-width: 212px;
        height: 48px;
        padding: 0 30px;
        font-size: 17px;
    }

    .hero-contact-blocks {
        width: 540px;
        max-width: 540px;
        column-gap: 28px;
    }

    .hero-contact-block__title {
        font-size: 20px;
    }

    .hero-contact-block__item {
        font-size: 17px;
    }

    .hero-contact-block__icon,
    .hero-contact-block__icon svg {
        width: 18px;
        height: 18px;
    }

    .contact-card {
        width: 400px;
    }

    .contact-card__inner {
        padding: 38px 34px 38px;
    }

    .legal-hero-content,
    .legal-body-inner {
        max-width: 980px;
    }

    .legal-page-title,
    .legal-copy-column {
        max-width: 980px;
    }

    .site-footer--legal .site-footer__brand {
        padding-left: 64px;
        padding-right: 64px;
    }

    .site-footer--legal .site-footer__bottom {
        padding-left: 64px;
        padding-right: 64px;
    }
}

@media (max-width: 1180px) {
    .hero-content {
        max-width: 460px;
        grid-template-columns: 1fr;
        grid-template-areas:
            "copy"
            "form"
            "contacts";
        row-gap: 42px;
        min-height: auto;
    }

    .hero-copy {
        width: 100%;
        max-width: 100%;
        padding-top: 0;
    }

    .hero-title,
    .hero-text {
        max-width: 100%;
    }

    .hero-actions {
        width: 100%;
        max-width: 100%;
        gap: 16px;
        margin-bottom: 40px;
        flex-wrap: wrap;
    }

    .hero-contact-blocks {
        width: 100%;
        max-width: 100%;
        column-gap: 28px;
    }

    .hero-contact-block__title {
        font-size: 20px;
    }

    .hero-contact-block__item {
        font-size: 16px;
        white-space: normal;
    }

    .contact-card {
        width: 100%;
        margin-top: 0;
        align-self: start;
    }

    .site-footer {
        grid-template-columns: 1fr;
        row-gap: 18px;
        justify-items: start;
    }

    .site-footer__links,
    .site-footer__meta {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .legal-hero-section {
        padding: 120px 0 70px;
    }

    .legal-hero-content,
    .legal-body-inner {
        max-width: 640px;
        margin: 0 auto;
    }

    .legal-page-title {
        max-width: 640px;
        font-size: 42px;
        line-height: 1.08;
    }

    .legal-copy-column {
        max-width: 640px;
    }

    .legal-body-inner {
        padding: 48px 0 0;
    }

    .legal-copy-block p {
        font-size: 15px;
        line-height: 1.5;
    }

    .site-footer--legal {
        min-height: 260px;
    }

    .site-footer--legal .site-footer__brand {
        padding-top: 56px;
        padding-left: 64px;
        padding-right: 64px;
    }

    .site-footer--legal .site-footer__bottom {
        grid-template-columns: 1fr;
        row-gap: 18px;
        justify-items: start;
        padding: 64px 64px 26px;
    }

    .site-footer--legal .site-footer__links,
    .site-footer--legal .site-footer__meta {
        justify-content: flex-start;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .hero-section {
        padding-top: 48px;
        padding-bottom: 0;
        padding-left: 32px;
        padding-right: 32px;
    }

    .hero-content {
        max-width: 760px;
        margin: 0 auto;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 32px;
        min-height: auto;
    }

    .hero-copy {
        width: 100%;
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
        padding-top: 0;
        text-align: left;
    }

    .hero-title,
    .hero-text {
        max-width: 100%;
    }

    .hero-title {
        margin-bottom: 28px;
    }

    .hero-text {
        font-size: 16px;
        line-height: 1.5;
    }

    .hero-copy .hero-text:last-of-type {
        margin-bottom: 32px;
    }

    .hero-actions {
        width: 100%;
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        margin-bottom: 24px;
        flex-wrap: nowrap;
    }

    .hero-cta,
    .hero-actions .hero-cta:first-child,
    .hero-cta.hero-cta--secondary {
        flex: 1;
        min-width: 0;
        width: auto;
        justify-content: center;
    }

    .contact-card {
        width: 100%;
        max-width: 620px;
        margin: 0 auto;
        align-self: center;
    }

    .contact-card__inner {
        padding: 38px 32px 40px;
    }

    .hero-contact-blocks {
        width: 100%;
        max-width: 520px;
        margin: 24px auto 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 48px;
        row-gap: 0;
        justify-content: center;
        align-items: start;
    }

    .hero-contact-block {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-contact-block__title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .hero-contact-block__item {
        font-size: 16px;
        line-height: 1.45;
        white-space: nowrap;
        margin-bottom: 10px;
    }

    .hero-contact-block__icon {
        width: 18px;
        height: 18px;
        flex: 0 0 18px;
    }

    .hero-contact-block__icon svg {
        width: 18px;
        height: 18px;
    }

    .landing-shell .site-footer {
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
        grid-template-columns: 1fr;
        row-gap: 16px;
        column-gap: 0;
        justify-items: center;
        align-items: center;
        padding-top: 20px;
        padding-bottom: 24px;
    }

    .landing-shell .site-footer__socials {
        justify-content: center;
    }

    .landing-shell .site-footer__links,
    .landing-shell .site-footer__meta {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .landing-shell .site-footer__links {
        gap: 12px 24px;
    }

    .landing-shell .site-footer__meta {
        gap: 8px 14px;
    }

    .legal-hero-section {
        padding: 120px 32px 70px;
    }

    .legal-hero-content,
    .legal-body-inner {
        max-width: 680px;
        margin: 0 auto;
    }

    .legal-page-title {
        max-width: 680px;
        font-size: 42px;
        line-height: 1.08;
    }

    .legal-copy-column {
        max-width: 680px;
    }

    .legal-body-inner {
        padding: 48px 0 0;
    }

    .legal-copy-block p {
        font-size: 15px;
        line-height: 1.5;
    }

    .site-footer--legal {
        min-height: 260px;
    }

    .site-footer--legal .site-footer__brand {
        width: 100%;
        max-width: 680px;
        margin: 0 auto;
        padding-top: 56px;
        padding-left: 0;
        padding-right: 0;
    }

    .site-footer--legal .site-footer__bottom {
        width: 100%;
        max-width: 680px;
        margin: 0 auto;
        grid-template-columns: 1fr;
        row-gap: 16px;
        column-gap: 0;
        justify-items: center;
        align-items: center;
        padding: 56px 0 26px;
    }

    .site-footer--legal .site-footer__socials {
        justify-content: center;
    }

    .site-footer--legal .site-footer__links,
    .site-footer--legal .site-footer__meta {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .site-footer--legal .site-footer__links {
        gap: 12px 24px;
    }

    .site-footer--legal .site-footer__meta {
        gap: 8px 14px;
    }
}

@media (max-width: 767px) {
    .top-notice__inner {
        min-height: 48px;
        padding: 0 16px;
    }

    .top-notice__text {
        margin-left: 34px;
        font-size: 13px;
    }

    .top-notice__close {
        left: 14px;
    }

    .site-header {
        padding-top: 28px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .site-logo img {
        height: 46px;
    }

    .support-button {
        min-width: 138px;
        height: 40px;
        padding: 0 16px;
        font-size: 14px;
    }

    .hero-section {
        padding-top: 42px;
        padding-bottom: 0;
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero-content {
        display: flex !important;
        flex-direction: column !important;
    }

    .hero-copy {
        display: block;
    }

    .hero-title {
        font-size: 42px;
        line-height: 1.08;
        margin-bottom: 24px;
    }

    .hero-text {
        margin-bottom: 16px;
        font-size: 15px;
    }

    .hero-copy .hero-text:last-of-type {
        margin-bottom: 28px;
    }

    .hero-actions {
        gap: 14px;
        margin-bottom: 6px;
        flex-wrap: wrap;
    }

    .contact-card {
        margin-top: 0;
    }

    .hero-contact-blocks {
        grid-template-columns: 1fr;
        row-gap: 24px;
        column-gap: 0;
        margin-top: 18px;
    }

    .hero-contact-block__title {
        margin-bottom: 12px;
        font-size: 17px;
    }

    .hero-contact-block__item {
        font-size: 14px;
        white-space: normal;
    }

    .contact-card__inner {
        padding: 28px 24px 30px;
    }

    .contact-card__title {
        font-size: 24px;
    }

    .contact-form input {
        height: 42px;
    }

    .contact-form textarea {
        min-height: 104px;
    }

    .contact-form__submit {
        min-width: 152px;
        height: 40px;
        font-size: 16px;
    }

    .contact-form__status {
        margin-bottom: 12px;
        padding: 10px 11px;
        font-size: 12px;
    }

    .form-field__error {
        font-size: 10px;
    }

    .site-footer {
        padding-top: 20px;
        padding-bottom: 18px;
        padding-left: 24px;
        padding-right: 24px;
        row-gap: 16px;
    }

    .site-footer__links {
        gap: 18px;
        flex-wrap: wrap;
    }

    .site-footer__meta {
        gap: 10px;
        white-space: normal;
    }

    .legal-hero-section {
        padding: 76px 24px 34px;
    }

    .legal-hero-content,
    .legal-body-inner {
        max-width: 600px;
        margin: 0 auto;
    }

    .legal-page-title {
        max-width: 600px;
        font-size: 32px;
        line-height: 1.08;
    }

    .legal-body-section {
        border-top-left-radius: 80px;
        border-bottom-left-radius: 80px;
    }

    .legal-body-inner {
        padding: 34px 24px 0;
    }

    .legal-copy-column {
        max-width: 560px;
        margin: 0 auto;
        padding-bottom: 72px;
    }

    .legal-copy-block {
        margin-bottom: 24px;
    }

    .legal-copy-block h2 {
        font-size: 16px;
    }

    .legal-copy-block p {
        font-size: 15px;
        line-height: 1.5;
    }

    .site-footer--legal {
        min-height: 220px;
    }

    .site-footer--legal .site-footer__brand {
        padding: 44px 24px 0;
    }

    .site-footer--legal .site-footer__brand img {
        height: 46px;
    }

    .site-footer--legal .site-footer__bottom {
        grid-template-columns: 1fr;
        row-gap: 22px;
        justify-items: start;
        padding: 52px 24px 20px;
    }

    .site-footer--legal .site-footer__socials {
        margin-bottom: 6px;
    }

    .site-footer--legal .site-footer__links {
        display: flex;
        flex-wrap: wrap;
        gap: 16px 24px;
        margin-bottom: 6px;
    }

    .site-footer--legal .site-footer__meta {
        display: flex;
        flex-wrap: wrap;
        gap: 8px 16px;
        font-size: 13px;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .site-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }

    .site-logo img {
        height: 44px;
    }

    .support-button {
        min-width: 132px;
        height: 40px;
        padding: 0 16px;
        font-size: 14px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .hero-cta:first-child,
    .hero-cta.hero-cta--secondary {
        width: 100%;
        min-width: 0;
    }

    .site-footer__links {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .site-footer__meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .legal-page-title {
        font-size: 30px;
    }

    .legal-body-section {
        border-top-left-radius: 40px;
        border-bottom-left-radius: 40px;
    }
}