/* =============================================
   Software Vertical – Estilos principales
   ============================================= */

/* =============================================
   SECCIÓN PLANES – Efectos visuales
   ============================================= */

/* Animación de entrada escalonada */
@keyframes planeFadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Estado inicial: invisible hasta que el observer lo activa */
#planes .plan-card {
  opacity: 0;
  transform: translateY(32px);
  transition:
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    transform 0.35s ease,
    color 0.25s ease;
}

/* Transición de color, peso y tamaño en elementos hijos */
#planes .plan-card * {
  transition: color 0.25s ease, font-weight 0.2s ease, font-size 0.25s ease, letter-spacing 0.2s ease;
}

/* Clase que agrega el observer cuando la card entra en viewport */
#planes .plan-card.visible {
  animation: planeFadeUp 0.55s ease both;
}

/* Retrasos escalonados por tarjeta */
#planes .plan-card:nth-child(1).visible {
  animation-delay: 0s;
}

#planes .plan-card:nth-child(2).visible {
  animation-delay: 0.12s;
}

#planes .plan-card:nth-child(3).visible {
  animation-delay: 0.24s;
}

/* Hover premium: elevar + escalar + sombra de color azul + resalte tipografía */
#planes .plan-card:not(.plan-popular):hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 24px 48px -8px rgba(0, 86, 179, 0.22);
  border-color: #0056b3;
}

/* Resalte de tipografía al hacer hover en cards blancas */
#planes .plan-card:not(.plan-popular):hover .text-4xl {
  color: #0056b3;
  font-size: calc(2.25rem + 2px);
  /* ~1px mayor que text-4xl */
}

#planes .plan-card:not(.plan-popular):hover .text-slate-900 {
  color: #0056b3;
  font-weight: 900;
}

#planes .plan-card:not(.plan-popular):hover .text-slate-700 {
  color: #1e3a5f;
  font-weight: 700;
}

#planes .plan-card:not(.plan-popular):hover .text-slate-500,
#planes .plan-card:not(.plan-popular):hover .text-slate-600 {
  color: #3b659e;
  font-weight: 600;
}

/* Badge de nombre del plan más destacado en hover */
#planes .plan-card:not(.plan-popular):hover .tracking-widest {
  font-weight: 900;
  letter-spacing: 0.12em;
}

/* ── Plan Popular (destacado) ── */
#planes .plan-popular {
  opacity: 0;
  transform: translateY(32px) scale(1.03);
  position: relative;
  overflow: hidden;
}

#planes .plan-popular.visible {
  animation: planeFadeUp 0.55s 0.12s ease both;
}

/* Halo exterior animado */
#planes .plan-popular::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(from 0deg,
      #60a5fa,
      #0056b3,
      #38bdf8,
      #0056b3,
      #60a5fa);
  z-index: -1;
  animation: rotateBorder 4s linear infinite;
  opacity: 0.55;
  border-radius: 1.1rem;
}

/* Fondo sólido por debajo del halo para no verse transparente */
#planes .plan-popular::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: #0056b3;
  border-radius: 0.9rem;
  z-index: -1;
}

@keyframes rotateBorder {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Hover del plan popular: lift + escala mayor */
#planes .plan-popular:hover {
  transform: translateY(-6px) scale(1.07);
  box-shadow: 0 32px 56px -8px rgba(0, 86, 179, 0.5);
}

/* Glass panel utility (previously @layer utilities in Tailwind) */
.glass-panel {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.5);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* =============================================
   Modal de Video
   ============================================= */
#video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.2s ease;
}

#video-modal.active {
  display: flex;
}

#video-modal .modal-box {
  position: relative;
  width: 100%;
  max-width: 900px;
  background-color: #1e293b;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
  animation: scaleIn 0.25s ease;
}

#video-modal .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #334155;
}

#video-modal .modal-header h3 {
  color: #f8fafc;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#video-modal .modal-close {
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s, background-color 0.15s;
}

#video-modal .modal-close:hover {
  color: #f8fafc;
  background-color: #334155;
}

#video-modal .video-wrapper {
  position: relative;
  width: 100%;
  /* Relación de aspecto 16:9 */
  aspect-ratio: 16 / 9;
  background-color: #000;
}

#video-modal .video-wrapper video,
#video-modal .video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Placeholder cuando aún no hay video */
#video-modal .video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #64748b;
  text-align: center;
  padding: 2rem;
}

#video-modal .video-placeholder .material-symbols-outlined {
  font-size: 64px;
  color: #334155;
}

#video-modal .video-placeholder p {
  font-size: 0.875rem;
}

/* Animaciones */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* =============================================
   Modal de Demo – Solicitar Demo
   ============================================= */

/* --- Overlay --- */
#demo-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background-color: rgba(16, 25, 34, 0.60);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.2s ease;
}

#demo-modal.active {
  display: flex;
}

/* --- Contenedor principal --- */
#demo-modal .demo-box {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE / Edge legacy */
  background: #1c2127;
  border-radius: 0.75rem;
  box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.7);
  border: 1px solid #2d3748;
  display: flex;
  flex-direction: column;
  animation: scaleIn 0.25s ease;
}

/* Chrome / Safari / Opera */
#demo-modal .demo-box::-webkit-scrollbar {
  display: none;
}


/* Panel formulario */
#demo-form-panel {
  display: flex;
  flex-direction: column;
  flex: 1;
}


/* --- Botón cerrar --- */
#demo-modal .demo-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.07);
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 0.3rem;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 60;
  transition: background 0.15s, color 0.15s;
}

#demo-modal .demo-close:hover {
  background: #0f172a;
  color: #fff;
}

/* --- Panel del formulario --- */
#demo-modal .demo-right {
  flex: 1;
  min-width: 0;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}


/* Modo éxito: el demo-box se encoge y centra */
#demo-modal.success-mode .demo-box {
  max-width: 520px;
  flex-direction: column;
}

#demo-modal.success-mode .demo-left,
#demo-modal.success-mode #demo-form-panel {
  display: none !important;
}

/* --- Inputs y selects --- */
#demo-modal input,
#demo-modal select {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  background: #111418;
  border: 1px solid #1e293b;
  border-radius: 0.5rem;
  color: #f1f5f9;
  font-size: 0.875rem;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  font-family: inherit;
}

#demo-modal input::placeholder {
  color: #64748b;
}

#demo-modal input:focus,
#demo-modal select:focus {
  border-color: #137fec;
  box-shadow: 0 0 0 3px rgba(19, 127, 236, 0.25);
}

#demo-modal select {
  appearance: none;
  cursor: pointer;
}

#demo-modal label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #cbd5e1;
  margin-bottom: 0.375rem;
}

/* Input con icono */
#demo-modal .input-icon-wrap {
  position: relative;
}

#demo-modal .input-icon-wrap .icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  font-size: 1.1rem;
  pointer-events: none;
  line-height: 1;
}

#demo-modal .input-icon-wrap input {
  padding-left: 2.25rem;
}

/* --- Botón submit --- */
#demo-modal .btn-submit {
  width: 100%;
  padding: 1rem;
  background: #137fec;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(19, 127, 236, 0.3);
  transition: background 0.15s, transform 0.1s;
  font-family: inherit;
}

#demo-modal .btn-submit:hover {
  background: rgba(19, 127, 236, 0.9);
}

#demo-modal .btn-submit:active {
  transform: scale(0.98);
}

#demo-modal .btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* --- Error message --- */
#demo-form-error {
  display: none;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  color: #fca5a5;
  font-size: 0.8rem;
  margin-top: 0.75rem;
}

#demo-form-error.visible {
  display: block;
}

/* --- Panel de Éxito --- */
#demo-success-panel {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 2rem;
  color: #f1f5f9;
  width: 100%;
}

#demo-success-panel.visible {
  display: flex;
}

/* Icono éxito */
.success-icon-ring {
  position: relative;
  width: 5rem;
  height: 5rem;
  background: rgba(19, 127, 236, 0.15);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(19, 127, 236, 0.3);
  margin-bottom: 1.5rem;
}

.success-glow {
  position: absolute;
  inset: 0;
  background: rgba(19, 127, 236, 0.2);
  border-radius: 9999px;
  filter: blur(20px);
  transform: scale(1.5);
}

.check-badge {
  position: absolute;
  bottom: -4px;
  right: -4px;
  background: #22c55e;
  border-radius: 9999px;
  padding: 4px;
  border: 3px solid #1c2127;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Tarjeta PDF */
.pdf-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  background: rgba(19, 127, 236, 0.07);
  border: 1px solid rgba(19, 127, 236, 0.25);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  text-decoration: none;
  transition: border-color 0.15s;
  cursor: pointer;
}

.pdf-card:hover {
  border-color: rgba(19, 127, 236, 0.5);
}

.pdf-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: rgba(19, 127, 236, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #137fec;
  flex-shrink: 0;
}

.pdf-info {
  flex: 1;
  text-align: left;
}

.pdf-info strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #f1f5f9;
}

.pdf-info span {
  font-size: 0.75rem;
  color: #64748b;
}

.btn-dl {
  background: #137fec;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: 0.375rem;
  border: none;
  cursor: pointer;
  transition: transform 0.1s;
  white-space: nowrap;
}

.btn-dl:hover {
  transform: translateY(-1px);
}

/* Botón cerrar éxito */
.btn-close-success {
  width: 100%;
  background: #1e293b;
  color: #cbd5e1;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.875rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  font-family: inherit;
}

.btn-close-success:hover {
  background: #334155;
}

/* =============================================
   Modal Plan A Medida – Contacto
   ============================================= */

/* --- Overlay --- */
#custom-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background-color: rgba(16, 25, 34, 0.60);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.2s ease;
}

#custom-modal.active {
  display: flex;
}

/* --- Contenedor principal --- */
#custom-modal .demo-box {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background: #1c2127;
  border-radius: 0.75rem;
  box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.7);
  border: 1px solid #2d3748;
  display: flex;
  flex-direction: column;
  animation: scaleIn 0.25s ease;
}

#custom-modal .demo-box::-webkit-scrollbar {
  display: none;
}

/* Panel formulario */
#custom-form-panel {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* --- Botón cerrar --- */
#custom-modal .demo-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.07);
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 0.3rem;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 60;
  transition: background 0.15s, color 0.15s;
}

#custom-modal .demo-close:hover {
  background: #0f172a;
  color: #fff;
}

/* --- Panel del formulario --- */
#custom-modal .demo-right {
  flex: 1;
  min-width: 0;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}

/* Modo éxito */
#custom-modal.success-mode .demo-box {
  max-width: 520px;
  flex-direction: column;
}

#custom-modal.success-mode #custom-form-panel {
  display: none !important;
}

/* --- Inputs y selects --- */
#custom-modal input,
#custom-modal select {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  background: #111418;
  border: 1px solid #1e293b;
  border-radius: 0.5rem;
  color: #f1f5f9;
  font-size: 0.875rem;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  font-family: inherit;
}

#custom-modal input::placeholder {
  color: #64748b;
}

#custom-modal input:focus,
#custom-modal select:focus {
  border-color: #137fec;
  box-shadow: 0 0 0 3px rgba(19, 127, 236, 0.25);
}

#custom-modal select {
  appearance: none;
  cursor: pointer;
}

#custom-modal label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #cbd5e1;
  margin-bottom: 0.375rem;
}

/* Input con icono */
#custom-modal .input-icon-wrap {
  position: relative;
}

#custom-modal .input-icon-wrap .icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  font-size: 1.1rem;
  pointer-events: none;
  line-height: 1;
}

#custom-modal .input-icon-wrap input {
  padding-left: 2.25rem;
}

/* --- Botón submit --- */
#custom-modal .btn-submit {
  width: 100%;
  padding: 1rem;
  background: #137fec;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(19, 127, 236, 0.3);
  transition: background 0.15s, transform 0.1s;
  font-family: inherit;
}

#custom-modal .btn-submit:hover {
  background: rgba(19, 127, 236, 0.9);
}

#custom-modal .btn-submit:active {
  transform: scale(0.98);
}

#custom-modal .btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* --- Error message --- */
#custom-modal-error {
  display: none;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  color: #fca5a5;
  font-size: 0.8rem;
  margin-top: 0.75rem;
}

#custom-modal-error.visible {
  display: block;
}

/* --- Panel de Éxito --- */
#custom-success-panel {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 2rem;
  color: #f1f5f9;
  width: 100%;
}

#custom-success-panel.visible {
  display: flex;
}

/* 4th plan card animation delay */
#planes .plan-card:nth-child(4).visible {
  animation-delay: 0.36s;
}

/* ================================================
   WIDGET: Agente Chat Flotante
   ================================================ */

/* Contenedor raíz */
#chat-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  font-family: 'Inter', sans-serif;
}

/* ── Botón flotante (FAB) ── */
#chat-fab {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #137fec, #0e63c4);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(19, 127, 236, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  flex-shrink: 0;
}

#chat-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(19, 127, 236, 0.55);
}

/* Badge parpadeante */
#chat-fab-badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 0.8rem;
  height: 0.8rem;
  background: #ef4444;
  border-radius: 9999px;
  border: 2px solid #fff;
  animation: badgePulse 1.8s infinite;
}

#chat-fab-badge.hidden {
  display: none;
}

@keyframes badgePulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

/* ── Tarjeta del chat ── */
#chat-card {
  width: 320px;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 20px 50px -8px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  display: none;
  /* oculto por defecto */
  flex-direction: column;
  animation: chatSlideUp 0.25s ease;
  transform-origin: bottom right;
}

#chat-card.open {
  display: flex;
}

@keyframes chatSlideUp {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ── Cabecera ── */
#chat-header {
  background: linear-gradient(135deg, #137fec, #0e63c4);
  padding: 1rem 1rem 1rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

#chat-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

#chat-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

#chat-online-dot {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 0.6rem;
  height: 0.6rem;
  background: #4ade80;
  border-radius: 9999px;
  border: 2px solid #137fec;
}

#chat-agent-info {
  flex: 1;
}

#chat-agent-name {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
}

#chat-agent-status {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
  margin-top: 0.15rem;
}

#chat-close-btn {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 0.4rem;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  flex-shrink: 0;
}

#chat-close-btn:hover {
  background: rgba(255, 255, 255, 0.28);
}

/* ── Cuerpo ── */
#chat-body {
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  background: #f8fafc;
}

/* Burbuja del agente */
#chat-bubble {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0 0.75rem 0.75rem 0.75rem;
  padding: 0.75rem 0.875rem;
  font-size: 0.875rem;
  color: #334155;
  line-height: 1.5;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

/* Opciones */
#chat-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.chat-option {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 0.65rem 0.875rem;
  font-size: 0.82rem;
  color: #1e293b;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s, transform 0.1s;
  font-family: inherit;
}

.chat-option:hover {
  border-color: #137fec;
  background: #eff8ff;
  color: #0e63c4;
  transform: translateX(2px);
}

/* ── Pie ── */
#chat-footer {
  background: #f1f5f9;
  border-top: 1px solid #e2e8f0;
  padding: 0.5rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: #64748b;
}

/* ── Mobile ── */
@media (max-width: 400px) {
  #chat-widget {
    bottom: 1rem;
    right: 1rem;
  }

  #chat-card {
    width: calc(100vw - 2rem);
  }
}