/* ═══════════════════════════════════════
   KAMAZ Webinars - Page-specific Styles
   ═══════════════════════════════════════ */

/* Hide ::before dash markers on emoji lists */
.kamaz-webinars ul[style*="list-style: none"] li::before {
    content: none !important;
    display: none !important;
}

/* Chat modal active state */
.modal-overlay.active {
    display: flex !important;
}

/* Chat message animations */
@keyframes msgAppear {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Chat message typing indicator */
.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    align-self: flex-start;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
    animation: typing 1.2s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.15s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes typing {

    0%,
    80%,
    100% {
        transform: scale(0.8);
        opacity: 0.4;
    }

    40% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Button hover effects */
.btn-cta:hover {
    transform: translateY(-3px);
    opacity: 0.95;
}

.btn-bonus:hover {
    box-shadow: 0 8px 24px rgba(255, 147, 123, 0.35);
}

.btn-analysis:hover {
    box-shadow: 0 8px 24px rgba(255, 147, 123, 0.35);
}

/* Question link hover */
.question-link:hover {
    background: rgba(255, 147, 123, 0.06);
    border-color: rgba(255, 147, 123, 0.4) !important;
}

/* Chat close hover */
.chat-close:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
}

/* Chat input focus */
.chat-input:focus {
    border-color: #ff937b !important;
}

/* Dynamically-generated chat elements — corporate palette */
.chat-msg.bot {
    max-width: 85%;
    padding: 14px 18px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.6;
    background: rgba(18, 50, 72, 0.06);
    color: #123248;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    animation: msgAppear 0.3s ease;
}

.chat-msg.user {
    max-width: 85%;
    padding: 14px 18px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.6;
    background: #ff937b;
    color: #fff;
    border-bottom-right-radius: 4px;
    align-self: flex-end;
    animation: msgAppear 0.3s ease;
}

.chat-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-self: flex-start;
    animation: msgAppear 0.3s ease;
}

.chat-option-btn {
    padding: 10px 18px;
    border-radius: 12px;
    border: 1px solid rgba(18, 50, 72, 0.15);
    background: #fff;
    color: #123248;
    font-size: 14px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.2s;
}

.chat-option-btn:hover {
    border-color: #ff937b;
    background: rgba(255, 147, 123, 0.06);
}

.chat-option-btn.selected {
    background: #ff937b;
    color: #fff;
    border-color: #ff937b;
}

.chat-option-confirm {
    padding: 10px 18px;
    border-radius: 12px;
    border: none;
    background: #123248;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.2s;
}

.chat-option-confirm:hover {
    opacity: 0.85;
}

/* Chat input row visibility */
.chat-input-row {
    display: none !important;
}

.chat-input-row.active {
    display: flex !important;
}



/* ═══════════════════════════════════════
   Responsive
   ═══════════════════════════════════════ */
@media (max-width: 640px) {
    .cta-row {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .btn-cta {
        justify-content: center !important;
    }
}