:root{--blue:#0052CC;--blue-dark:#003D99;--bg-subtle:#ffffff;--r:10px;}
/* LP 챗봇 — 홈(components.css) 챗봇 스타일 동기화 사본 (2026-07-18). 원본 수정 시 재추출 필요 */


.mobile-call-btn,
.mobile-inquiry-btn,
.mobile-as-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 1;
  padding: 12px 0;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}


.mobile-call-btn {
  background-color: var(--blue);
}


.mobile-call-btn:hover {
  background-color: var(--blue-dark);
}


/* ===== CHATBOT 임시 숨김 (Claude API 크레딧 이슈) ===== */
/* ===== CHATBOT ===== */
.chatbot-toggle {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 52px;
  height: 52px;
  background: #3617ce;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(54, 23, 206, 0.3);
  z-index: 1003;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
@media (min-width: 769px) {

  .chatbot-toggle {
    bottom: 30px;
    right: 30px;
  }
}


.chatbot-toggle:hover {
  background: transparent;
  transform: scale(1.08);
}


.chatbot-toggle img {
  width: 52px;
  height: 52px;
}


/* 원형 배경 제거 + 손 흔드는 캐릭터 전신 표시 (마스코트 이미지가 있는 페이지에만 — btv/btvpop 등 이모지 런처는 제외) */
button.chatbot-toggle:has(img.chatbot-toggle__img) {
  width: 60px !important;
  height: 60px !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}


button.chatbot-toggle img.chatbot-toggle__img {
  width: 76px !important;
  height: 76px !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  filter: drop-shadow(0 4px 5px rgba(0, 0, 0, 0.25));
  transform-origin: center bottom;
  animation: cbChar 3.4s ease-in-out infinite !important;
}


.chatbot-toggle__emoji {
  font-size: 28px;
  line-height: 1;
}


@keyframes chatbot-alive {
  0%,
  85%,
  100% {
    transform: scaleY(1) rotate(0deg);
  }
  90% {
    transform: scaleY(0.1) rotate(0deg);
  }
  25% {
    transform: scaleY(1) rotate(-2deg);
  }
  75% {
    transform: scaleY(1) rotate(2deg);
  }
}


.chatbot-speech-bubble {
  position: fixed;
  bottom: 160px;
  right: 20px;
  background: #FFFFFF;
  color: #0B1C4D;
  padding: 5px 12px;
  border-radius: 14px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  font-size: 12px;
  font-weight: 600;
  font-family: "Noto Sans KR", sans-serif;
  z-index: 1002;
  opacity: 0;
  transform: translateY(10px) scale(0.8);
  transition: all 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
  border: 2px solid #1E40AF;
}


.chatbot-speech-bubble.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}


.chatbot-speech-bubble::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -7px;
  bottom: auto;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #1E40AF;
  filter: drop-shadow(2px 0 3px rgba(0, 0, 0, 0.08));
}


/* 흰 말풍선 꼬리 — ::after(파란 테두리 삼각형) 위에 흰 삼각형을 덮어
   테두리 선만 남기고 안쪽은 배경색과 같게 만든다 (2026-07-24) */
.chatbot-speech-bubble::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -4px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid #FFFFFF;
  z-index: 1;
}

.chatbot-speech-bubble.hidden {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
@media (min-width: 769px) {

  .chatbot-speech-bubble {
    bottom: 78px;
    right: 104px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
}
@media (max-width: 768px) {

  .chatbot-speech-bubble {
    position: fixed;
    right: 96px !important;
    bottom: 112px !important;
    left: auto !important;
    top: auto !important;
    font-size: 0.8rem !important;
    padding: 6px 12px !important;
    border-radius: 16px !important;
    max-width: 150px !important;
    white-space: normal !important;
    line-height: 1.25 !important;
    z-index: 1002 !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
  }


  .chatbot-speech-bubble::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -7px;
    bottom: auto;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #1E40AF;
    filter: drop-shadow(2px 0 3px rgba(0, 0, 0, 0.08));
  }
}
@media (max-width: 320px) {

  .chatbot-speech-bubble {
    bottom: 88px;
    right: 86px;
    font-size: 0.7rem;
    padding: 8px 12px;
    border-radius: 14px;
    max-width: 120px;
    line-height: 1.2;
  }


  .chatbot-speech-bubble::after {
    top: 50%;
    right: -5px;
    bottom: auto;
    transform: translateY(-50%);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 6px solid #1E40AF;
  }
}


.chatbot-container {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 350px;
  height: 440px;  /* 대화 내 버튼 제거로 축소 (2026-07-24) */
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  z-index: 1000;
  overflow: hidden;
}
@media (min-width: 769px) {

  .chatbot-container {
    bottom: 20px;
  }
}


.chatbot-header {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue) 100%);
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}


.chatbot-title {
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.chatbot-title-ic {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}


/* 챗봇 메시지 영역 (2026-04-01 간격 축소) */
.chat-messages {
  flex: 1;
  padding: 12px;
  overflow-y: auto;
  background: var(--bg-subtle);
  max-height: 400px;
}


.message {
  margin-bottom: 8px;
}


/* 챗봇 메시지 박스 (2026-04-01 간격 축소) */
.bot-message {
  background: white;
  padding: 8px 12px;
  border-radius: 15px 15px 15px 5px;
  margin-bottom: 6px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-size: 0.85rem;
  line-height: 1.3;
  color: #333;
}


.user-message {
  background: var(--blue);
  color: white;
  padding: 10px 15px;
  border-radius: 15px 15px 5px 15px;
  margin-left: auto;
  margin-right: 0;
  max-width: 80%;
  text-align: right;
  font-size: 0.9rem;
  margin-bottom: 10px;
}


.chat-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
  width: 100%;
}
@media (max-width: 768px) {

  .chatbot-container {
    width: 95% !important;
    height: 450px !important;
    bottom: 80px !important;
    right: 2.5% !important;
    left: 2.5% !important;
    border-radius: 12px;
  }


  .chatbot-header {
    padding: 12px 15px;
  }


  .chatbot-title {
    font-size: 0.9rem;
  }


  .chat-messages {
    padding: 15px;
    max-height: 320px;
  }


  .bot-message {
    padding: 10px 12px;
    font-size: 0.85rem;
  }


  .user-message {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
}
@media (max-width: 480px) {

  .chatbot-container {
    width: 98% !important;
    height: 400px !important;
    right: 1% !important;
    left: 1% !important;
  }


  .chat-messages {
    padding: 12px;
    max-height: 280px;
  }


  .bot-message {
    padding: 8px 10px;
    font-size: 0.8rem;
  }


  .user-message {
    padding: 6px 10px;
    font-size: 0.8rem;
  }
}
@media (max-width: 320px) {

  .chatbot-container {
    height: 350px !important;
  }


  .chat-messages {
    padding: 10px;
    max-height: 240px;
  }


  .chatbot-title {
    font-size: 0.8rem;
  }


  .bot-message,
  .user-message {
    font-size: 0.75rem;
    padding: 6px 8px;
  }
}


/* 모달 하단 상담원 연결 버튼 + 시간 텍스트 */
.consult-call-btn {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 10px;
  background: #fff;
  border: 1.5px solid var(--blue);
  border-radius: var(--r);
  color: var(--blue);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  box-sizing: border-box;
}

.consult-call-btn:hover {
  background: var(--blue);
  color: #fff;
}

.consult-call-btn i {
  margin-right: 4px;
}


.main-message {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  margin: 0 0 20px 0;
  font-weight: 500;
}


.main-message strong {
  color: #dc3545;
  font-weight: 700;
  font-size: 1.15rem;
}


.sub-message {
  font-size: 0.95rem;
  color: #555;
  margin: 0 0 15px 0;
  line-height: 1.4;
}
@media (max-width: 768px) {


  .main-message {
    font-size: 1rem;
  }


  .main-message strong {
    font-size: 1.05rem;
  }
}
@media (max-width: 480px) {


  .main-message {
    font-size: 0.95rem;
  }


  .sub-message {
    font-size: 0.9rem;
  }
}


/* ===== QUICK BENEFIT SECTION ===== */
.quick-benefit-section {
  width: 100%;
  padding: 30px 0;
  box-sizing: border-box;
}


.quick-benefit-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  box-sizing: border-box;
}


.quick-benefit-card {
  flex: 1 1 280px;
  min-height: 0;
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.06);
  cursor: pointer;
  transition: all 0.3s ease;
}


.quick-benefit-card--blue {
  background: #e7f3ff;
}


.quick-benefit-card--mint {
  background: #e1f8f3;
}


.quick-benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.15);
}


.quick-benefit-card--blue:hover {
  background: linear-gradient(135deg, #bfdbfe 0%, #dbeafe 100%);
  border-color: #3b82f6;
}


.quick-benefit-card--mint:hover {
  background: linear-gradient(135deg, #a7f3d0 0%, #d1fae5 100%);
  border-color: #10b981;
}


.quick-benefit-card:hover .quick-benefit-icon {
  transform: scale(1.1) rotate(5deg);
}


.quick-benefit-text {
  text-align: left;
}


.quick-benefit-title {
  font-size: clamp(0.92rem, 1.6vw, 1.02rem);
  font-weight: 700;
  color: #111827;
  margin: 0 0 3px;
}


.quick-benefit-desc {
  margin: 0;
  font-size: clamp(0.72rem, 1.4vw, 0.8rem);
  color: #4b5563;
  line-height: 1.4;
}


.quick-benefit-icon {
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s ease;
}


.quick-benefit-icon img {
  display: block;
  width: clamp(70px, 8vw, 95px);
  height: auto;
  border: none;
}
@media (max-width: 768px) {

  .quick-benefit-inner {
    padding: 0 14px;
  }


  .quick-benefit-card {
    padding: 22px 20px;
  }


  .quick-benefit-icon img {
    width: 72px;
  }
}
@media (max-width: 480px) {

  .quick-benefit-inner {
    padding: 0 12px;
  }


  .quick-benefit-card {
    padding: 20px 18px;
  }


  .quick-benefit-title {
    font-size: 1.05rem;
  }


  .quick-benefit-desc {
    font-size: 0.85rem;
  }


  .quick-benefit-icon img {
    width: 64px;
  }
}


/* ===== CHATBOT MESSAGES (REFINED) ===== */
.message {
  display: flex;
  flex-direction: column !important;
  margin-bottom: 15px;
  animation: fadeIn 0.3s ease;
}


.bot-message {
  background: #f1f3f5;
  padding: 10px 14px;
  border-radius: 14px;
  max-width: 85%;
  text-align: left;
  color: #212529;
  font-size: 13px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  white-space: pre-line !important;
  word-break: keep-all !important;
  line-height: 1.45 !important;
  letter-spacing: -0.3px;
}


.user-message {
  background: #4527a0;
  color: white;
  padding: 12px 16px;
  border-radius: 18px;
  max-width: 80%;
  text-align: left;
  line-height: 1.6;
  margin-left: auto;
  font-size: 14px;
  word-wrap: break-word;
  box-shadow: 0 2px 4px rgba(69, 39, 160, 0.2);
}


.bot-message p {
  margin: 0 0 14px 0 !important;
  line-height: 1.8 !important;
}


.bot-message p:last-child {
  margin-bottom: 0 !important;
}


.bot-message strong {
  font-weight: 700 !important;
  color: #4527a0 !important;
}


.bot-message ul,
.bot-message ol {
  margin: 14px 0 !important;
  padding-left: 24px !important;
}


.bot-message li {
  margin-bottom: 10px !important;
  line-height: 1.7 !important;
}


.bot-message br {
  display: block !important;
  content: "" !important;
  margin: 0.5em 0 !important;
}


.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 8px;
}


.typing-indicator span {
  width: 8px;
  height: 8px;
  background: #868e96;
  border-radius: 50%;
  animation: typing 1.4s infinite;
}


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


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


@keyframes typing {
  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  30% {
    transform: translateY(-10px);
    opacity: 1;
  }
}


.quick-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}


.quick-buttons button {
  padding: 10px 16px;
  font-size: 13px;
  border: 1px solid #dee2e6;
  border-radius: 20px;
  background: white;
  color: #495057;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}


.quick-buttons button:hover {
  background: var(--bg-subtle);
  border-color: #4527a0;
  color: #4527a0;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(69, 39, 160, 0.15);
}


.quick-buttons button:active {
  transform: translateY(0);
}


.quick-buttons button.consultation-btn {
  background: #4527a0;
  color: white;
  border: none;
  font-weight: 500;
}


.quick-buttons button.consultation-btn:hover {
  background: #5e35b1;
  color: white;
  box-shadow: 0 4px 12px rgba(69, 39, 160, 0.3);
}


/* 빠른 질문 버튼 (통화 분석 기반 FAQ) */
.quick-questions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #eee;
}


.quick-questions button {
  padding: 6px 12px;
  font-size: 12px;
  border: 1px solid #e0e0ee;
  border-radius: 16px;
  background: #f8f8fc;
  color: #555577;
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: inherit;
  white-space: nowrap;
}


.quick-questions button:hover {
  background: #3617ce;
  color: #fff;
  border-color: #3617ce;
}


.chat-input-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 15px;
  background: var(--bg-subtle);
  border-top: 1px solid #dee2e6;
}
/* AI 고지 문구 — HTML 수정 없이 CSS만으로 입력창 위에 표시 (전 페이지 공용, 2026-07-24) */
.chat-input-container::before {
  content: "AI는 실수할 수 있습니다. 정확한 요금·설치는 상담으로 확인하세요.";
  flex: 1 0 100%;
  margin-bottom: 2px;
  text-align: center;
  font-size: 11px;
  line-height: 1.4;
  color: var(--mut, #8a97bd);
}


.chat-input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #ced4da;
  border-radius: 20px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}


.chat-input:focus {
  border-color: #4527a0;
}


.chat-send-btn {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #4527a0 0%, #5e35b1 100%);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}


.chat-send-btn:hover {
  background: linear-gradient(135deg, #5e35b1 0%, #7e57c2 100%);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(69, 39, 160, 0.3);
}


.chat-send-btn:active {
  transform: scale(0.95);
}
@media (max-width: 480px) {

  .bot-message,
  .user-message {
    max-width: 85%;
    font-size: 13px;
    padding: 14px 16px;
  }


  .quick-buttons {
    gap: 6px;
  }


  .quick-buttons button {
    padding: 9px 14px;
    font-size: 12px;
    width: 100%;
  }


  .chat-input {
    font-size: 13px;
    padding: 10px 13px;
  }


  .chat-send-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}


.chatbot-fixed-buttons {
  background: var(--bg-subtle);
  border-top: 1px solid #dee2e6;
  padding: 10px 15px;
}


.ai-warning {
  font-size: 0.7rem;
  color: #6c757d;
  text-align: center;
  margin-bottom: 8px;
  font-weight: 500;
}


.action-buttons {
  display: flex;
  gap: 6px;
}


.action-btn {
  flex: 1;
  padding: 9px 6px;
  border: none;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


.action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}


.action-btn:active {
  transform: translateY(0);
}


.consult-btn {
  background: #007bff;
  color: #ffffff;
}


.consult-btn:hover {
  background: #0056b3;
}
@media (max-width: 480px) {

  .chatbot-fixed-buttons {
    padding: 8px 10px;
  }


  .action-btn {
    padding: 8px 5px;
    font-size: 0.75rem;
  }


  .ai-warning {
    font-size: 0.65rem;
    margin-bottom: 6px;
  }
}


/* === [2026-04-18] 모바일 바 리디자인 (T1 + 에이닷 AI) === */
.mobile-call-btn {
  background: #FFC400 !important;
  background-color: #FFC400 !important;
  color: #1E40AF !important;
}

.mobile-call-btn:hover {
  background: #E6AC00 !important;
  background-color: #E6AC00 !important;
}

.mobile-call-btn i {
  color: #1E40AF !important;
}

/* =========================================================
   btv-guide 프리미엄 네이비+옐로우 리스킨 (2026-07)
   - btv-guide.html 전용 (다른 페이지 영향 없음)
   - 그라데이션·보라 전부 제거, 색 통일, 높이 확대
   ========================================================= */
.chatbot-container {
  background: var(--navy) !important;
  border: 1px solid var(--line);
  border-radius: 18px !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55) !important;
  width: 384px !important;
  height: 480px !important;  /* 대화 내 버튼 제거로 축소 (2026-07-24) */
  overflow: hidden;
}
.chatbot-header {
  background: var(--navy2) !important;
  color: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 14px 18px;
}
.chatbot-title { color: var(--white); }
.chatbot-title-ic { background: rgba(255, 196, 0, 0.18); }
.close-btn {
  background: transparent;
  border: none;
  color: var(--mut);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.15s;
}
.close-btn:hover { color: var(--yellow); }

/* 메시지 영역 */
.chat-messages {
  background: var(--navy) !important;
  max-height: none !important;
  padding: 16px 14px;
}
.bot-message {
  background: var(--navy2) !important;
  color: var(--soft) !important;
  border: 1px solid var(--line);
  border-radius: 4px 14px 14px 14px !important;
  box-shadow: none !important;
  font-size: 13.5px;
  line-height: 1.55;
}
.bot-message strong { color: var(--yellow) !important; }
.user-message {
  background: var(--yellow) !important;
  color: var(--ink) !important;
  border-radius: 14px 14px 4px 14px !important;
  font-weight: 600;
}
.chat-link { color: var(--yellow) !important; text-decoration: underline; }

/* 빠른 선택 버튼 (2×2) */
.quick-buttons { gap: 8px !important; }
.quick-buttons button {
  background: var(--navy2) !important;
  border: 1px solid var(--line) !important;
  color: var(--soft) !important;
  border-radius: 12px !important;
  padding: 12px 10px !important;
  font-size: 13px !important;
  font-weight: 700;
  transition: all 0.15s ease;
}
.quick-buttons button:hover,
.quick-buttons button:active {
  background: rgba(255, 196, 0, 0.1) !important;
  border-color: var(--yellow) !important;
  color: var(--yellow) !important;
}

/* 빠른 질문 pill */
.quick-questions { border-top: 1px solid var(--line) !important; gap: 6px !important; }
.quick-questions button {
  background: transparent !important;
  border: 1px solid var(--line) !important;
  color: var(--mut) !important;
  border-radius: 16px !important;
}
.quick-questions button:hover {
  background: var(--yellow) !important;
  color: var(--ink) !important;
  border-color: var(--yellow) !important;
}

/* 하단 고정 액션 */
.chatbot-fixed-buttons {
  background: var(--navy2) !important;
  border-top: 1px solid var(--line) !important;
}
.ai-warning { color: var(--mut) !important; }
.action-btn {
  background: var(--navy3) !important;
  color: var(--soft) !important;
  border: 1px solid var(--line) !important;
  border-radius: 10px !important;
  box-shadow: none !important;
}
.action-btn:hover { border-color: var(--yellow) !important; color: var(--yellow) !important; transform: translateY(-1px); }
.consult-btn {
  background: var(--yellow) !important;
  color: var(--ink) !important;
  border-color: var(--yellow) !important;
  font-weight: 800;
}
.consult-btn:hover { background: #ffcf2e !important; color: var(--ink) !important; }

/* 입력창 */
.chat-input-container {
  background: var(--navy2) !important;
  border-top: 1px solid var(--line) !important;
  padding: 12px 14px;
}
.chat-input {
  background: var(--navy) !important;
  border: 1px solid var(--line) !important;
  color: var(--white) !important;
  border-radius: 22px !important;
}
.chat-input::placeholder { color: var(--mut); }
.chat-input:focus { border-color: var(--yellow) !important; }
.chat-send-btn {
  background: var(--yellow) !important;
  color: var(--ink) !important;
  border-radius: 50% !important;
}
.chat-send-btn:hover {
  background: #ffcf2e !important;
  box-shadow: 0 4px 12px rgba(255, 196, 0, 0.35) !important;
}

/* 크기 - 모바일 확대 (답답함 해소) */
@media (max-width: 768px) {
  .chatbot-container {
    width: calc(100% - 20px) !important;
    left: 10px !important;
    right: 10px !important;
    height: 64vh !important;
    max-height: 480px !important;
    bottom: 80px !important;
  }
}
@media (max-width: 480px) {
  .chatbot-container { height: 64vh !important; max-height: 470px !important; }
  .bot-message, .user-message { font-size: 13px !important; }
}

/* 챗봇 요금 플로우 선택 버튼 (btv-guide) */
.pf-btns{display:flex;flex-wrap:wrap;gap:6px;margin-top:9px}
.pf-btns button{background:var(--navy,#0e1f4d);border:1px solid var(--line,#22376f);color:var(--soft,#dbe6ff);font-weight:700;font-size:13px;padding:9px 13px;border-radius:10px;cursor:pointer;font-family:inherit;transition:all .15s}
.pf-btns button:hover{border-color:var(--yellow,#F2A81E);color:var(--yellow,#F2A81E)}
