.chat-hero {
    text-align: center;
    display: grid;
    gap: 10px;
    justify-items: center;
    width: 100%;
    flex: 0 0 auto;
}

.chat-hero__eyebrow {
    display: none;
}

.chat-hero__title {
    font-size: clamp(28px, 4vw, 34px);
    font-weight: 600;
    letter-spacing: -0.04em;
    text-align: center;
    color: var(--chat-text);
    line-height: 1.2;
    max-width: 18ch;
}

.chat-hero__subtitle {
    max-width: 38ch;
    color: var(--chat-text-secondary);
    font-size: 15px;
    line-height: 1.45;
}

.chat-quick {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 2px;
    flex: 0 0 auto;
}

.chat-quick__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 0 14px;
    color: var(--chat-text-secondary);
    font-size: 13.5px;
    font-weight: 500;
    border-radius: var(--chat-radius-pill);
    background: transparent;
    border: 1px solid var(--chat-border-strong);
}

.chat-quick__item:hover {
    color: var(--chat-text);
    background: var(--chat-bg-hover);
}

@media (max-width: 900px) {
    .chat-hero {
        gap: 8px;
        padding: 4px 4px 0;
    }

    .chat-hero__title {
        max-width: 100%;
        width: 100%;
        font-size: clamp(24px, 6.5vw, 30px);
        padding: 0 4px;
        box-sizing: border-box;
    }

    .chat-hero__subtitle {
        display: none;
    }

    .chat-quick {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .chat-quick__item {
        justify-content: center;
        min-height: 38px;
        padding: 0 12px;
        background: var(--chat-bg-hover);
        box-sizing: border-box;
    }
}

@media (max-height: 700px) {
    .chat-hero__subtitle {
        display: none;
    }

    .chat-hero__title {
        font-size: clamp(22px, 5vw, 28px);
    }

    .chat-quick__item {
        min-height: 34px;
        font-size: 12.5px;
    }
}
