* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Manrope', sans-serif;
}

/* Плавающая кнопка "Задать вопрос" — общая для всех страниц */
.floating-cta {
    all: unset;
    /* обнуляем наследованные стили ссылок */

    position: fixed;
    right: 22px;
    bottom: 26px;
    z-index: 9800;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 24px;
    height: 42px;

    border-radius: 20px;
    border: 1.6px solid rgba(163, 219, 255, 0.55);
    background: rgba(0, 0, 0, 0.9);

    color: #f5f7ff !important;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none !important;
    cursor: pointer;

    backdrop-filter: blur(6px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.7);

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.18s ease,
        box-shadow 0.18s ease;
}

.floating-cta:hover {
    background: rgba(13, 27, 44, 0.95);
    border-color: rgba(215, 238, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.9);
}

/* mobile-адаптация — только размеры/отступы, НЕ display:none */
@media (max-width: 700px) {
    .floating-cta {
        right: 16px;
        bottom: 18px;
        height: 36px;
        padding: 0 18px;
        font-size: 12px;
        border-radius: 16px;
    }
}