.block-number {
  text-align: center;
  font-weight: bold;
  font-size: 0.8125em;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #191919;
  transition: 0.3s ease-out; }
  .block-number:hover {
    opacity: 1; }
  .block-number::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 6px;
    margin-bottom: 2px;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 3px solid #191919; }
  .block-number a:hover,
  .block-number a:focus {
    color: #191919; }

.demo-section .main-content .section,
.main-content .topbar,
.main-content .navbar,
.main-content .header,
.main-content .footer {
  margin: 30px 20px 100px;
  border: 1px solid #f5f6f7;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05); }

.main-content .navbar {
  position: static;
  margin: 0; }

@keyframes pulse-soft {
  0%, 100% {
    box-shadow: 0 12px 25px rgba(124, 90, 194, 0.4);
  }
  50% {
    box-shadow: 0 12px 35px rgba(124, 90, 194, 0.6);
  }
}

.chatbot-widget {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: flex-end; }

.chatbot-launcher {
  border: 0;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7c5ac2, #6b4db8);
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 25px rgba(124, 90, 194, 0.4);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  animation: pulse-soft 3s ease-in-out infinite; }
  .chatbot-launcher:hover,
  .chatbot-launcher:focus {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 18px 30px rgba(124, 90, 194, 0.5);
    outline: none;
    background: linear-gradient(135deg, #8d6dd6, #7c5ac2);
    animation: none; }
  .chatbot-launcher svg {
    transition: transform 0.2s ease; }
  .chatbot-launcher:hover svg {
    transform: scale(1.1); }

.chatbot-window {
  width: 360px;
  max-width: calc(100vw - 30px);
  height: 620px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(124, 90, 194, 0.1);
  margin-bottom: 12px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
  .chatbot-window.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1); }

.chatbot-window__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: linear-gradient(135deg, #7c5ac2, #6b4db8);
  color: #fff;
  box-shadow: inset 0 -1px rgba(255, 255, 255, 0.35); }
  .chatbot-window__title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600; }
  .chatbot-window__subtitle {
    margin: 2px 0 0;
    font-size: 0.85rem;
    opacity: 0.9; }
  .chatbot-window__identity {
    display: flex;
    flex-direction: column; }

.chatbot-window__close {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px 8px;
  transition: all 0.2s ease;
  border-radius: 8px; }
  .chatbot-window__close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: rotate(90deg); }

.chatbot-window__body {
  height: calc(100% - 150px);
  display: flex;
  flex-direction: column;
  background-color: #f6f8fc; }
  .chatbot-window__body iframe {
    border: 0;
    width: 100%;
    height: 100%; }

.chatbot-window__hint {
  font-size: 0.75rem;
  color: #8892a7;
  padding: 10px 12px;
  text-align: center;
  background-color: #e9edf5; }

.chatbot-window__footer {
  background: linear-gradient(135deg, #7c5ac2, #6b4db8);
  padding: 12px 18px 14px;
  display: flex;
  align-items: center;
  gap: 12px; }
  .chatbot-window__footer input {
    flex: 1;
    border: 0;
    border-radius: 999px;
    padding: 12px 16px;
    font-size: 0.95rem;
    color: #333;
    background-color: rgba(255, 255, 255, 0.95);
    outline: none; }
    .chatbot-window__footer input:focus {
      box-shadow: 0 0 0 2px rgba(124, 90, 194, 0.3); }
  .chatbot-window__send {
    border: 0;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    width: 48px;
    height: 48px;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    transition: background 0.2s ease; }
    .chatbot-window__send:hover {
      background: rgba(255, 255, 255, 0.35); }

/* Responsive styles for mobile */
@media (max-width: 480px) {
  .chatbot-widget {
    bottom: 12px;
    right: 12px; }

  .chatbot-launcher {
    width: 56px;
    height: 56px; }
    .chatbot-launcher svg {
      width: 24px;
      height: 24px; }

  .chatbot-window {
    width: calc(100vw - 24px);
    height: calc(100vh - 80px);
    max-height: 600px; }
}

/*# sourceMappingURL=style.css.map */
