/* ===== CHATBOT — BRAND MATCHED MINIMAL UI ===== */

:root {
    --cb-primary:     #377fc7;
    --cb-primary-dk:  #2563a8;
    --cb-primary-lt:  #eaf2fb;
    --cb-dark:        #0f172a;
    --cb-dark2:       #1e293b;
    --cb-text:        #1f2937;
    --cb-muted:       #6b7280;
    --cb-border:      #e5e9f0;
    --cb-bg:          #f8fafc;
    --cb-white:       #ffffff;
    --cb-radius:      16px;
    --cb-shadow:      0 8px 32px rgba(55,127,199,0.13), 0 2px 8px rgba(0,0,0,0.08);
    --cb-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Hide old floating contact */
.floating-contact { display: none !important; }

/* ===== FLOATING WRAPPER ===== */
.chatbot-floating {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 1000;
}

/* ===== TRIGGER BUTTON ===== */
.chatbot-trigger {
    width: 56px;
    height: 56px;
    background: var(--cb-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
    box-shadow: 0 4px 20px rgba(55,127,199,0.4);
    transition: transform 0.25s var(--cb-ease-spring), box-shadow 0.2s ease;
}

/* Pulse ring */
.chatbot-trigger::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid rgba(55,127,199,0.35);
    animation: cbRing 2.5s ease-out infinite;
}

/* Notification dot */
.chatbot-trigger::after {
    content: '';
    position: absolute;
    top: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #ef4444;
    border-radius: 50%;
    border: 2px solid var(--cb-white);
}

.chatbot-trigger.active::before { animation: none; opacity: 0; }
.chatbot-trigger.active::after  { display: none; }

.chatbot-trigger:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 8px 28px rgba(55,127,199,0.5);
}
.chatbot-trigger:active { transform: scale(0.95); }

.chatbot-trigger .bot-icon  { font-size: 1.6rem; color: var(--cb-white); }
.chatbot-trigger .close-icon {
    display: none;
    font-size: 1.2rem;
    color: var(--cb-white);
    animation: cbSpinIn 0.3s var(--cb-ease-spring);
}
.chatbot-trigger.active .bot-icon  { display: none; }
.chatbot-trigger.active .close-icon { display: block; }

@keyframes cbRing {
    0%   { transform: scale(1);    opacity: 0.7; }
    70%  { transform: scale(1.4);  opacity: 0; }
    100% { transform: scale(1.4);  opacity: 0; }
}
@keyframes cbSpinIn {
    from { transform: rotate(-90deg) scale(0.5); opacity: 0; }
    to   { transform: rotate(0deg)   scale(1);   opacity: 1; }
}

/* ===== CONTAINER ===== */
.chatbot-container {
    position: absolute;
    bottom: 68px;
    left: 0;
    width: 380px;
    height: 620px;
    background: var(--cb-white);
    border-radius: var(--cb-radius);
    box-shadow: var(--cb-shadow);
    border: 1px solid var(--cb-border);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.95);
    transform-origin: bottom left;
    transition: opacity 0.25s ease, transform 0.3s var(--cb-ease-spring), visibility 0.25s ease;
}
.chatbot-container.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* ===== HEADER ===== */
.chatbot-header {
    background: var(--cb-dark);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    position: relative;
}
.chatbot-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: rgba(55,127,199,0.3);
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(55,127,199,0.5);
    background: var(--cb-dark2);
}
.chatbot-avatar img { width: 100%; height: 100%; object-fit: cover; }

.chatbot-header-info { flex: 1; min-width: 0; }
.chatbot-header-info h3 {
    color: var(--cb-white);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 2px;
}
.chatbot-header-info p {
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
}

.online-status {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    flex-shrink: 0;
    animation: cbOnline 2.5s ease infinite;
}
@keyframes cbOnline {
    0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
    50%      { box-shadow: 0 0 0 4px rgba(34,197,94,0); }
}

.chatbot-close {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease, transform 0.25s var(--cb-ease-spring);
}
.chatbot-close:hover {
    background: rgba(255,255,255,0.14);
    color: var(--cb-white);
    transform: rotate(90deg);
}

/* ===== MESSAGES ===== */
.chatbot-messages {
    flex: 1;
    padding: 16px 14px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: var(--cb-bg);
}
.chatbot-messages::-webkit-scrollbar { width: 3px; }
.chatbot-messages::-webkit-scrollbar-track { background: transparent; }
.chatbot-messages::-webkit-scrollbar-thumb { background: var(--cb-border); border-radius: 3px; }

/* ===== MESSAGE BUBBLES ===== */
.message {
    display: flex;
    gap: 8px;
    max-width: 88%;
    animation: cbSlide 0.3s var(--cb-ease-spring);
}
@keyframes cbSlide {
    from { opacity: 0; transform: translateY(10px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0)    scale(1); }
}

.message.bot  { align-self: flex-start; }
.message.user { align-self: flex-end; flex-direction: row-reverse; }

.message-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--cb-dark2);
    border: 1.5px solid var(--cb-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cb-white);
    font-weight: 600;
    font-size: 0.75rem;
    align-self: flex-end;
}
.message-avatar img { width: 100%; height: 100%; object-fit: cover; }

.message-content {
    padding: 10px 14px;
    border-radius: 14px;
    line-height: 1.55;
    max-width: 100%;
    word-break: break-word;
    font-size: 0.88rem;
}

.message.bot .message-content {
    background: var(--cb-white);
    color: var(--cb-text);
    border-bottom-left-radius: 4px;
    border: 1px solid var(--cb-border);
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.message.user .message-content {
    background: var(--cb-primary);
    color: var(--cb-white);
    border-bottom-right-radius: 4px;
    box-shadow: 0 2px 10px rgba(55,127,199,0.3);
}

.message-content p { margin: 0 0 5px; }
.message-content p:last-of-type { margin-bottom: 0; }

.message-time {
    font-size: 0.65rem;
    opacity: 0.4;
    margin-top: 5px;
    text-align: right;
}

/* ===== TYPING INDICATOR ===== */
.typing-indicator {
    display: flex;
    gap: 8px;
    align-self: flex-start;
    animation: cbSlide 0.3s ease;
}
.typing-indicator .message-avatar { width: 30px; height: 30px; align-self: flex-end; }
.typing-indicator .message-content {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
    background: var(--cb-white);
    border: 1px solid var(--cb-border);
    border-bottom-left-radius: 4px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.typing-dot {
    width: 6px;
    height: 6px;
    background: var(--cb-primary);
    border-radius: 50%;
    opacity: 0.4;
    animation: cbDot 1.3s infinite ease-in-out;
}
.typing-dot:nth-child(1) { animation-delay: 0s; }
.typing-dot:nth-child(2) { animation-delay: 0.16s; }
.typing-dot:nth-child(3) { animation-delay: 0.32s; }
@keyframes cbDot {
    0%,60%,100% { transform: translateY(0);   opacity: 0.4; }
    30%          { transform: translateY(-6px); opacity: 1; }
}

/* ===== INPUT AREA ===== */
.chatbot-input-area {
    padding: 12px 14px;
    background: var(--cb-white);
    border-top: 1px solid var(--cb-border);
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

.chatbot-input {
    flex: 1;
    padding: 10px 14px;
    border: 1.5px solid var(--cb-border);
    border-radius: 10px;
    outline: none;
    font-size: 0.88rem;
    background: var(--cb-bg);
    color: var(--cb-text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    min-width: 0;
}
.chatbot-input:focus {
    border-color: var(--cb-primary);
    background: var(--cb-white);
    box-shadow: 0 0 0 3px rgba(55,127,199,0.1);
}
.chatbot-input::placeholder { color: #b0b7c3; }

.chatbot-send {
    width: 38px;
    height: 38px;
    background: var(--cb-primary);
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--cb-white);
    flex-shrink: 0;
    transition: background 0.2s ease, transform 0.2s var(--cb-ease-spring), box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(55,127,199,0.35);
}
.chatbot-send:hover {
    background: var(--cb-primary-dk);
    transform: scale(1.08);
    box-shadow: 0 4px 14px rgba(55,127,199,0.45);
}
.chatbot-send:active { transform: scale(0.94); }
.chatbot-send i { font-size: 0.9rem; transform: rotate(-30deg); }

/* ===== QUICK QUESTIONS ===== */
.quick-questions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.quick-question-btn {
    background: var(--cb-white);
    border: 1.5px solid var(--cb-border);
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--cb-text);
    cursor: pointer;
    font-weight: 500;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    line-height: 1.3;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s var(--cb-ease-spring);
}
.quick-question-btn:hover {
    background: var(--cb-primary);
    border-color: var(--cb-primary);
    color: var(--cb-white);
    transform: translateY(-1px);
}
.quick-question-btn:active { transform: scale(0.97); }

.quick-questions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}
.quick-questions-grid .quick-question-btn {
    justify-content: center;
    font-size: 0.78rem;
    padding: 8px 6px;
}

/* Tally accent button */
.quick-question-btn.tally-btn {
    background: var(--cb-primary-lt);
    border-color: var(--cb-primary);
    color: var(--cb-primary);
}
.quick-question-btn.tally-btn:hover {
    background: var(--cb-primary);
    color: var(--cb-white);
}

/* ===== WELCOME SECTION ===== */
.welcome-section {
    text-align: center;
    margin-bottom: 10px;
}
.welcome-wave {
    font-size: 2rem;
    display: inline-block;
    animation: cbWave 1.8s ease-in-out infinite;
    margin-bottom: 6px;
}
@keyframes cbWave {
    0%,100% { transform: rotate(0deg); }
    25%      { transform: rotate(20deg); }
    75%      { transform: rotate(-12deg); }
}
.welcome-name { color: var(--cb-primary); font-weight: 700; }

/* ===== EMPLOYEE CARDS ===== */
.employee-card {
    background: var(--cb-white);
    border-radius: 10px;
    padding: 11px 13px;
    margin-top: 7px;
    border: 1.5px solid var(--cb-border);
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.22s var(--cb-ease-spring), box-shadow 0.2s ease;
}
.employee-card:hover {
    border-color: var(--cb-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(55,127,199,0.12);
}
.employee-info { display: flex; align-items: center; gap: 11px; }
.employee-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cb-dark2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cb-white);
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
    overflow: hidden;
    border: 1.5px solid var(--cb-border);
}
.employee-avatar img { width: 100%; height: 100%; object-fit: cover; }
.employee-details h4 { font-size: 0.88rem; font-weight: 600; color: var(--cb-text); margin: 0 0 2px; }
.employee-details p  { font-size: 0.78rem; color: var(--cb-muted); margin: 0; }
.employee-details .phone { color: var(--cb-primary); font-weight: 600; font-size: 0.8rem; }

/* ===== TEAM GRID ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 10px 0;
}
.team-card {
    background: var(--cb-white);
    border: 1.5px solid var(--cb-border);
    border-radius: 10px;
    padding: 11px 8px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.22s var(--cb-ease-spring), box-shadow 0.2s ease;
}
.team-card:hover {
    border-color: var(--cb-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(55,127,199,0.12);
}
.team-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 7px;
    background: var(--cb-dark2);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--cb-border);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar-fallback { color: var(--cb-white); font-weight: 600; font-size: 1rem; }
.team-info h4    { margin: 0; font-size: 0.8rem; font-weight: 600; color: var(--cb-text); }
.team-info .role { margin: 2px 0; font-size: 0.7rem; color: var(--cb-primary); font-weight: 500; }
.team-info .phone { margin: 3px 0 0; font-size: 0.67rem; color: var(--cb-muted); }

/* ===== CONTACT OPTIONS ===== */
.contact-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 10px 0;
}
.contact-option-card {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 11px;
    background: var(--cb-white);
    border: 1.5px solid var(--cb-border);
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.22s var(--cb-ease-spring), box-shadow 0.2s ease, border-color 0.2s ease;
}
.contact-option-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
.contact-option-card.phone    { border-color: #10b981; }
.contact-option-card.phone i  { color: #10b981; }
.contact-option-card.whatsapp { border-color: #25d366; }
.contact-option-card.whatsapp i { color: #25d366; }
.contact-option-card.email    { border-color: #f59e0b; }
.contact-option-card.email i  { color: #f59e0b; }
.contact-option-card.website  { border-color: var(--cb-primary); }
.contact-option-card.website i { color: var(--cb-primary); }
.contact-option-card i        { font-size: 1.2rem; flex-shrink: 0; }
.contact-option-card strong   { display: block; font-size: 0.8rem; color: var(--cb-text); }
.contact-option-card p        { margin: 1px 0 0; font-size: 0.7rem; color: var(--cb-muted); }

/* ===== SERVICES LIST ===== */
.services-list { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    background: var(--cb-bg);
    border-radius: 8px;
    border: 1px solid var(--cb-border);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.service-item:hover {
    background: var(--cb-white);
    border-color: var(--cb-primary);
    transform: translateX(3px);
}
.service-item i    { color: var(--cb-primary); font-size: 0.9rem; width: 16px; text-align: center; flex-shrink: 0; }
.service-item span { font-size: 0.85rem; color: var(--cb-text); }

/* ===== SERVICES GRID ===== */
.services-grid { display: flex; flex-direction: column; gap: 6px; }
.service-grid-item {
    display: flex;
    gap: 10px;
    padding: 10px 12px;
    background: var(--cb-white);
    border: 1px solid var(--cb-border);
    border-radius: 9px;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.service-grid-item:hover { border-color: var(--cb-primary); background: var(--cb-primary-lt); }
.service-icon {
    font-size: 1.2rem;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cb-bg);
    border-radius: 8px;
    flex-shrink: 0;
}
.service-text { display: flex; flex-direction: column; gap: 1px; }
.service-text strong { font-size: 0.85rem; color: var(--cb-text); }
.service-text small  { font-size: 0.75rem; color: var(--cb-muted); }

/* ===== FEATURED SERVICE BANNER ===== */
.featured-service-banner {
    background: var(--cb-dark);
    border-radius: 10px;
    padding: 13px;
    margin: 10px 0;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(55,127,199,0.3);
}
.featured-badge {
    position: absolute;
    top: 8px; right: 8px;
    background: var(--cb-primary);
    color: var(--cb-white);
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 6px;
    letter-spacing: 0.05em;
}
.featured-content { display: flex; align-items: center; gap: 10px; color: var(--cb-white); margin-bottom: 10px; }
.featured-icon { font-size: 1.6rem; }
.featured-text h4 { margin: 0; font-size: 0.95rem; font-weight: 600; }
.featured-text p  { margin: 3px 0 0; font-size: 0.78rem; opacity: 0.65; }
.featured-btn {
    width: 100%;
    justify-content: center;
    background: var(--cb-primary) !important;
    border-color: var(--cb-primary) !important;
    color: var(--cb-white) !important;
}
.featured-btn:hover { background: var(--cb-primary-dk) !important; transform: none; }

/* ===== SERVICE FEATURED CARD ===== */
.service-featured-card {
    display: flex;
    gap: 10px;
    padding: 12px;
    background: var(--cb-dark);
    border-radius: 10px;
    cursor: pointer;
    color: var(--cb-white);
    margin-bottom: 10px;
    border: 1px solid rgba(55,127,199,0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-featured-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(15,23,42,0.25);
}
.featured-star { font-size: 1.3rem; }
.service-featured-content h4 { margin: 0; font-size: 0.92rem; font-weight: 600; }
.service-featured-content p  { margin: 3px 0 0; font-size: 0.78rem; opacity: 0.65; }
.view-more { display: inline-block; margin-top: 6px; font-size: 0.75rem; color: var(--cb-primary); font-weight: 500; }

/* ===== TALLY ===== */
.tally-hero {
    text-align: center;
    padding: 13px;
    background: var(--cb-primary-lt);
    border-radius: 10px;
    margin-bottom: 12px;
    border: 1px solid rgba(55,127,199,0.15);
}
.tally-hero-badge {
    display: inline-block;
    background: var(--cb-primary);
    color: var(--cb-white);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 6px;
    margin-bottom: 6px;
}
.tally-hero h3 { margin: 6px 0; font-size: 1.1rem; color: var(--cb-dark); font-weight: 700; }
.tally-hero p  { color: var(--cb-muted); font-size: 0.85rem; line-height: 1.5; margin: 0; }

.tally-features { display: flex; flex-direction: column; gap: 7px; }
.tally-feature-item {
    display: flex;
    gap: 10px;
    padding: 10px;
    background: var(--cb-white);
    border: 1px solid var(--cb-border);
    border-radius: 9px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.tally-feature-item:hover { border-color: var(--cb-primary); box-shadow: 0 2px 8px rgba(55,127,199,0.1); }
.tally-feature-item.highlight { background: var(--cb-primary-lt); border-color: rgba(55,127,199,0.3); }
.tally-feature-icon {
    font-size: 1.2rem;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cb-bg);
    border-radius: 8px;
    flex-shrink: 0;
}
.tally-feature-content h4 { margin: 0 0 3px; font-size: 0.88rem; color: var(--cb-text); font-weight: 600; }
.tally-feature-content p  { margin: 0; font-size: 0.78rem; color: var(--cb-muted); }
.popular-tag {
    display: inline-block;
    background: var(--cb-primary);
    color: var(--cb-white);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 5px;
    margin-top: 4px;
}

/* ===== PRICING ===== */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
    margin: 12px 0;
}
.pricing-card {
    background: var(--cb-white);
    border: 1.5px solid var(--cb-border);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.pricing-card.popular { border-color: var(--cb-primary); }
.popular-ribbon {
    position: absolute;
    top: 7px; right: -22px;
    background: var(--cb-primary);
    color: var(--cb-white);
    font-size: 0.6rem;
    font-weight: 700;
    padding: 3px 28px;
    transform: rotate(45deg);
}
.pricing-header { padding: 10px; text-align: center; }
.pricing-header.silver { background: var(--cb-dark2); color: var(--cb-white); }
.pricing-header.gold   { background: var(--cb-primary); color: var(--cb-white); }
.pricing-header h4 { margin: 0; font-size: 0.88rem; font-weight: 600; }
.pricing-header p  { margin: 3px 0 0; font-size: 0.75rem; opacity: 0.8; }
.pricing-features  { padding: 10px; margin: 0; list-style: none; }
.pricing-features li { font-size: 0.78rem; padding: 3px 0; color: var(--cb-muted); }
.pricing-note {
    background: var(--cb-primary-lt);
    padding: 10px;
    border-radius: 8px;
    border-left: 3px solid var(--cb-primary);
}
.pricing-note p { margin: 0; font-size: 0.8rem; color: var(--cb-primary-dk); }

/* ===== CLOUD BENEFITS ===== */
.cloud-benefits { display: flex; flex-direction: column; gap: 7px; margin: 10px 0; }
.cloud-benefit-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 9px;
    background: var(--cb-bg);
    border-radius: 8px;
    border: 1px solid var(--cb-border);
}
.benefit-icon { font-size: 1.2rem; flex-shrink: 0; }
.cloud-benefit-item strong { display: block; font-size: 0.85rem; color: var(--cb-text); }
.cloud-benefit-item p { margin: 2px 0 0; font-size: 0.75rem; color: var(--cb-muted); }

/* ===== TRAINING ===== */
.training-levels { display: flex; flex-direction: column; gap: 9px; margin: 12px 0; }
.training-card {
    background: var(--cb-white);
    border: 1.5px solid var(--cb-border);
    border-radius: 10px;
    padding: 11px;
    position: relative;
}
.training-card.beginner    { border-color: #10b981; }
.training-card.intermediate { border-color: var(--cb-primary); }
.training-card.advanced    { border-color: #8b5cf6; }
.level-badge {
    position: absolute;
    top: -9px; right: 10px;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--cb-white);
}
.training-card.beginner    .level-badge { background: #10b981; }
.training-card.intermediate .level-badge { background: var(--cb-primary); }
.training-card.advanced    .level-badge { background: #8b5cf6; }
.training-card h4  { margin: 6px 0 3px; font-size: 0.9rem; color: var(--cb-text); }
.training-card > p { margin: 0 0 7px; font-size: 0.8rem; color: var(--cb-muted); }
.training-card ul  { margin: 0; padding-left: 16px; }
.training-card li  { font-size: 0.77rem; color: var(--cb-muted); padding: 2px 0; }

/* ===== ABOUT STATS ===== */
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 12px 0;
}
.stat-item {
    background: var(--cb-primary-lt);
    border-radius: 9px;
    padding: 11px;
    text-align: center;
    border: 1px solid rgba(55,127,199,0.15);
}
.stat-number { display: block; font-size: 1.3rem; font-weight: 700; color: var(--cb-primary); }
.stat-label  { font-size: 0.72rem; color: var(--cb-muted); }

.about-highlight {
    display: flex;
    gap: 10px;
    padding: 11px;
    background: var(--cb-primary-lt);
    border-radius: 9px;
    border-left: 3px solid var(--cb-primary);
    margin-top: 10px;
}
.highlight-icon { font-size: 1.3rem; flex-shrink: 0; }
.highlight-text strong { display: block; color: var(--cb-primary-dk); font-size: 0.85rem; }
.highlight-text p { margin: 2px 0 0; font-size: 0.77rem; color: var(--cb-primary); }

/* ===== LOCATION ===== */
.location-card {
    display: flex;
    gap: 12px;
    padding: 13px;
    background: var(--cb-primary-lt);
    border-radius: 10px;
    margin: 10px 0;
    border: 1px solid rgba(55,127,199,0.15);
}
.location-icon { font-size: 2rem; flex-shrink: 0; }
.location-details h4 { margin: 0; font-size: 0.9rem; color: var(--cb-text); font-weight: 600; }
.location-details p  { margin: 4px 0 0; font-size: 0.8rem; color: var(--cb-muted); }
.location-map-placeholder { text-align: center; margin: 10px 0; }
.map-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    background: var(--cb-primary);
    color: var(--cb-white);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: background 0.2s ease, transform 0.2s ease;
}
.map-link:hover { background: var(--cb-primary-dk); transform: translateY(-1px); }

/* ===== WORKING HOURS ===== */
.status-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 7px;
    font-weight: 600;
    font-size: 0.82rem;
    margin-bottom: 10px;
}
.status-badge.open   { background: #dcfce7; color: #166534; }
.status-badge.closed { background: #fee2e2; color: #991b1b; }
.hours-schedule {
    background: var(--cb-white);
    border: 1px solid var(--cb-border);
    border-radius: 9px;
    overflow: hidden;
}
.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 9px 12px;
    border-bottom: 1px solid var(--cb-bg);
    font-size: 0.83rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row.closed-day { background: var(--cb-bg); color: var(--cb-muted); }
.hours-row .day  { font-weight: 500; color: var(--cb-text); }
.hours-row .time { color: var(--cb-muted); }

/* ===== HELP OPTIONS ===== */
.help-options { display: flex; flex-direction: column; gap: 6px; margin: 10px 0; }
.help-category {
    padding: 9px 11px;
    background: var(--cb-bg);
    border-radius: 8px;
    border-left: 3px solid var(--cb-primary);
}
.help-category h4 { margin: 0; font-size: 0.85rem; color: var(--cb-text); font-weight: 600; }
.help-category p  { margin: 2px 0 0; font-size: 0.77rem; color: var(--cb-muted); }

/* ===== LINKS IN MESSAGES ===== */
.message-content a { color: var(--cb-primary); text-decoration: none; font-weight: 600; }
.message-content a:hover { text-decoration: underline; }
.message.user .message-content a { color: rgba(255,255,255,0.9); }
.message.user .message-content a:hover { color: var(--cb-white); }

/* ===== FOOTER ===== */
.chatbot-footer {
    padding: 6px;
    text-align: center;
    background: var(--cb-bg);
    border-top: 1px solid var(--cb-border);
    font-size: 0.65rem;
    color: #b0b7c3;
    flex-shrink: 0;
}
.chatbot-footer a { color: var(--cb-primary); text-decoration: none; font-weight: 600; }

/* ===== ANIMATIONS ===== */
.fade-in  { animation: cbFade 0.4s ease; }
.slide-up { animation: cbSlide 0.35s var(--cb-ease-spring); }
@keyframes cbFade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) and (min-width: 769px) {
    .chatbot-container { height: 580px; }
}
@media (max-width: 768px) and (min-width: 481px) {
    .chatbot-container { height: 560px; }
}
@media (max-width: 480px) {
    .chatbot-floating   { bottom: 16px; left: 16px; }
    .chatbot-trigger    { width: 50px; height: 50px; }
    .chatbot-trigger .bot-icon { font-size: 1.4rem; }
    .chatbot-container  {
        width: calc(100vw - 32px);
        height: calc(100vh - 120px);
        max-height: 580px;
        bottom: 64px;
        border-radius: 14px;
    }
    .chatbot-header     { padding: 12px 14px; }
    .chatbot-avatar     { width: 36px; height: 36px; }
    .chatbot-messages   { padding: 13px 11px; gap: 10px; }
    .message            { max-width: 94%; }
    .message-content    { padding: 9px 12px; font-size: 0.85rem; }
    .chatbot-input-area { padding: 10px 12px; }
    .chatbot-input      { padding: 9px 13px; font-size: 0.85rem; }
    .chatbot-send       { width: 36px; height: 36px; }
    .pricing-cards      { grid-template-columns: 1fr; }
    .contact-options    { grid-template-columns: 1fr; }
    .team-grid          { grid-template-columns: 1fr; }
    .about-stats        { grid-template-columns: 1fr; }
}
@media (max-width: 380px) {
    .chatbot-container  { width: calc(100vw - 24px); }
    .quick-question-btn { font-size: 0.75rem; padding: 6px 10px; }
    .quick-questions-grid { grid-template-columns: 1fr; }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
@media print { .chatbot-floating { display: none; } }
