.support-page {
    background:
        radial-gradient(circle at top center, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 36%),
        linear-gradient(180deg, #eef4ff 0%, #f6f9ff 44%, #ffffff 100%);
    padding: 118px 0 36px;
}

.support-page .container {
    max-width: 1180px;
}

.support-page__hero {
    margin: 0 auto;
    max-width: 1040px;
}

.support-page__title {
    color: #1f2b44;
    font-family: Raleway, sans-serif;
    font-size: 54px;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.04;
    margin: 0 0 28px;
    max-width: none;
    text-align: center;
}

.support-page__cards {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 28px;
}

.support-page__card,
.support-page__guide {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(181, 204, 234, 0.55);
    border-radius: 28px;
    box-shadow: 0 28px 50px rgba(86, 110, 153, 0.13);
}

.support-page__card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 280px;
    padding: 34px 32px 30px;
}

.support-page__icon {
    align-items: center;
    background: linear-gradient(135deg, #103f68 0%, #2c7cb4 100%);
    border-radius: 18px;
    color: #ffffff;
    display: inline-flex;
    font-size: 28px;
    height: 64px;
    justify-content: center;
    width: 64px;
}

.support-page__card-title,
.support-page__guide-title {
    color: #1f2b44;
    font-family: Raleway, sans-serif;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0;
}

.support-page__card-title {
    font-size: 30px;
    line-height: 1.12;
}

.support-page__card-text,
.support-page__guide-text {
    color: #5f6f87;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.support-page__button {
    align-items: center;
    background: linear-gradient(90deg, #00b6b4 0%, #1caad5 100%);
    border: 0;
    border-radius: 14px;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    font-size: 15px;
    font-weight: 700;
    gap: 10px;
    justify-content: center;
    margin-top: auto;
    min-height: 52px;
    padding: 14px 24px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.support-page__button:hover,
.support-page__button:focus {
    box-shadow: 0 18px 28px rgba(31, 105, 161, 0.16);
    color: #ffffff;
    opacity: 0.98;
    text-decoration: none;
    transform: translateY(-1px);
}

.support-page__button--chat {
    background: linear-gradient(90deg, #113f68 0%, #2f80ba 100%);
}

.support-page__guide {
    align-items: center;
    display: flex;
    gap: 28px;
    justify-content: space-between;
    margin-bottom: 56px;
    padding: 32px;
}

.support-page__guide-copy {
    max-width: 620px;
}

.support-page__eyebrow {
    color: #21a8bf;
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.support-page__guide-title {
    font-size: 38px;
    line-height: 1.08;
    margin-bottom: 12px;
}

.support-page__button--guide {
    flex-shrink: 0;
    min-width: 210px;
}

@media (max-width: 991px) {
    .support-page {
        padding-top: 104px;
    }

    .support-page__title {
        font-size: 42px;
    }

    .support-page__cards {
        grid-template-columns: 1fr;
    }

    .support-page__guide {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .support-page {
        padding: 96px 0 20px;
    }

    .support-page__hero {
        max-width: 100%;
    }

    .support-page__title {
        font-size: 34px;
        margin-bottom: 20px;
    }

    .support-page__card,
    .support-page__guide {
        border-radius: 22px;
        padding: 24px 20px;
    }

    .support-page__card-title {
        font-size: 26px;
    }

    .support-page__guide-title {
        font-size: 30px;
    }

    .support-page__button,
    .support-page__button--guide {
        width: 100%;
    }
}
