.chat-landing {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 24px 48px;
}

.chat-landing__hero {
    text-align: center;
    margin: 16px 0 20px;
}

.chat-landing__title {
    margin: 0;
    font-size: clamp(28px, 3.4vw, 42px);
    line-height: 1.14;
    color: #1f2f57;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.chat-landing__subtitle {
    margin: 14px 0 0;
    color: #4f5f82;
    font-size: clamp(18px, 1.5vw, 28px);
}

.chat-landing__menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 14px 0 24px;
}

.chat-landing__menu-link {
    color: #1f7a8c;
    border: 1px solid #d7e5ea;
    background: #ffffff;
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 600;
}

.chat-landing__menu-link:hover {
    color: #176070;
    border-color: #b8d4dc;
}

.chat-landing__carousel {
    display: grid;
    grid-template-columns: 52px 1fr 52px;
    gap: 14px;
    align-items: center;
    margin-top: 8px;
}

.chat-landing__viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    position: relative;
}

.chat-landing__viewport::-webkit-scrollbar {
    display: none;
}

.chat-landing__track {
    display: flex;
    gap: 22px;
    padding: 8px 2px 14px;
}

.chat-landing__viewport::before,
.chat-landing__viewport::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 36px;
    pointer-events: none;
    z-index: 2;
}

.chat-landing__viewport::before {
    left: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0));
}

.chat-landing__viewport::after {
    right: 0;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0));
}

.chat-landing__arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(145deg, #1f5ec2 0%, #2d7be8 100%);
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 14px 26px rgba(31, 94, 194, 0.28);
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.chat-landing__arrow:hover {
    transform: translateY(-2px);
}

.chat-landing__arrow:disabled {
    opacity: 0.35;
    cursor: default;
    transform: none;
    box-shadow: none;
}

.chat-landing__carousel-hint {
    margin: 10px 0 0;
    text-align: center;
    color: #6a7798;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.bot-card {
    flex: 0 0 calc((100% - 44px) / 3);
    min-width: 0;
    scroll-snap-align: start;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(14, 28, 60, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 40px rgba(14, 28, 60, 0.16);
}

.bot-card__link {
    display: block;
    color: inherit;
    text-decoration: none;
    height: 100%;
}

.bot-card__header {
    font-size: clamp(17px, 1.15vw, 21px);
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    color: #ffffff;
    padding: 14px 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bot-card--0 .bot-card__header,
.bot-card--0 .bot-card__cta {
    background: linear-gradient(135deg, #7f4bd3 0%, #5c37aa 100%);
}

.bot-card--1 .bot-card__header,
.bot-card--1 .bot-card__cta {
    background: linear-gradient(135deg, #276cd9 0%, #1f57ae 100%);
}

.bot-card--2 .bot-card__header,
.bot-card--2 .bot-card__cta {
    background: linear-gradient(135deg, #f59f47 0%, #df7f1e 100%);
}

.bot-card--3 .bot-card__header,
.bot-card--3 .bot-card__cta {
    background: linear-gradient(135deg, #23a55f 0%, #1a7f47 100%);
}

.bot-card__image-wrap {
    background: #eef2fb;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bot-card__image {
    width: 100%;
    max-width: 360px;
    height: 320px;
    object-fit: cover;
}

.bot-card__footer {
    padding: 14px 18px 20px;
    text-align: center;
}

.bot-card__tagline {
    margin: 0 0 10px;
    color: #2f3d62;
    font-size: clamp(14px, 1.05vw, 18px);
    font-weight: 600;
}

.bot-card__cta {
    display: inline-block;
    color: #ffffff;
    border-radius: 12px;
    font-size: clamp(16px, 1.2vw, 24px);
    font-weight: 700;
    padding: 10px 24px;
    min-width: 180px;
}

.chat-landing__connect {
    margin: 38px auto 0;
    text-align: center;
}

.chat-landing__connect-text {
    margin: 0;
    color: #3e4f77;
    font-size: clamp(16px, 1.45vw, 28px);
    font-weight: 500;
}

.chat-landing__connect-icons {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 28px;
    color: #8a92a4;
    font-size: clamp(20px, 2vw, 34px);
}

@media (max-width: 900px) {
    .chat-landing {
        padding: 20px 16px 40px;
    }

    .chat-landing__title {
        white-space: normal;
    }

    .chat-landing__carousel {
        grid-template-columns: 44px 1fr 44px;
        gap: 10px;
    }

    .chat-landing__arrow {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .bot-card {
        flex: 0 0 calc((100% - 22px) / 2);
    }

    .bot-card__header {
        font-size: 18px;
        padding: 14px 12px;
    }

    .bot-card__image-wrap {
        min-height: 250px;
    }

    .bot-card__image {
        height: 250px;
    }

    .bot-card__cta {
        font-size: 20px;
    }

    .chat-landing__connect-icons {
        font-size: 30px;
        gap: 20px;
    }
}

@media (max-width: 760px) {
    .chat-landing__carousel {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .chat-landing__arrow {
        display: none;
    }

    .chat-landing__viewport::before,
    .chat-landing__viewport::after {
        width: 22px;
    }

    .bot-card {
        flex: 0 0 100%;
    }
}
