/* === components.css: Buttons, Cards, Forms, Inputs, Modals, Chatbot, Badges, Price Cards, Event Banners, etc. === */

/* ===== BUTTONS ===== */
.button {
  display: inline-block;
  background: #3617ce;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
}

/* ===== FEATURE CARDS ===== */
.feature-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.feature-img {
  height: 200px;
  background: #ddd;
}

.feature-card:nth-child(1) .feature-img {
  background-image: url("/img/event02.png");
  background-size: cover;
  background-position: center;
}

.feature-card:nth-child(3) .feature-img {
  background-image: url("/img/event01.png");
  background-size: cover;
  background-position: center;
}

.feature-card:nth-child(2) .feature-img {
  background-image: url("/img/event1234.png");
  background-size: cover;
  background-position: center;
}

/* 1번째 카드로 변경된 비디오 스타일 */
.feature-card:nth-child(1) .feature-img {
  position: relative;
  overflow: hidden;
}

.feature-card:nth-child(1) .feature-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.feature-content {
  padding: 1.5rem;
}

.feature-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-content p {
  margin-bottom: 1.5rem;
}

/* ===== MAIN CTA ===== */
.main-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
  margin: 50px 0;
  border-radius: 20px;
}

.main-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.main-cta .phone {
  font-size: 3rem;
  font-weight: bold;
  margin: 20px 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.main-cta p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* ===== INFO CARDS ===== */
.info-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #3617ce;
}

.info-card i {
  font-size: 2.5rem;
  color: #3617ce;
  margin-bottom: 20px;
}

.info-card h3 {
  margin-bottom: 15px;
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
}

.info-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #666;
  margin-bottom: 1.5rem;
}

/* ===== CONTENT LINK ===== */
.content-link {
  color: #3617ce;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px dotted #3617ce;
  transition: all 0.3s;
  font-size: clamp(0.7rem, 2.5vw, 0.95rem);
}

.content-link:hover {
  color: #2b10b0;
  border-bottom-style: solid;
}

/* ===== REGION TOGGLE ===== */
.region-master-toggle {
  width: 100%;
  background: linear-gradient(135deg, #3617ce 0%, #4d28d4 100%);
  color: white;
  border: none;
  padding: 25px 30px;
  border-radius: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(54, 23, 206, 0.2);
  margin-bottom: 20px;
}

.region-master-toggle:hover {
  background: linear-gradient(135deg, #2b10b0 0%, #3d1fb8 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(54, 23, 206, 0.3);
}

.region-master-toggle h2 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
}

.region-master-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: white;
}

.region-master-toggle.active .region-master-icon {
  transform: rotate(180deg);
}

.region-all-content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.5s ease-out,
    padding 0.4s ease;
  background: white;
  border-radius: 15px;
  padding: 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.region-all-content.active {
  max-height: 3000px;
  padding: 30px;
}

.region-category {
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.category-toggle {
  width: 100%;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: none;
  padding: 20px 25px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.category-toggle:hover {
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
  transform: translateY(-1px);
}

.category-toggle.active {
  background: linear-gradient(135deg, #3617ce 0%, #4d28d4 100%);
  color: white;
}

.category-toggle h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: inherit;
}

.toggle-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: #3617ce;
}

.category-toggle.active .toggle-icon {
  transform: rotate(180deg);
  color: white;
}

.region-content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease-out,
    padding 0.3s ease;
  background: #f8f9fa;
  padding: 0 25px;
}

.region-content.active {
  max-height: 2000px;
  padding: 25px;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 0;
}

.region-card {
  background: white;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.region-card:hover {
  transform: translateY(-3px);
  border-color: #3617ce;
  box-shadow: 0 6px 18px rgba(54, 23, 206, 0.12);
}

.region-card h3 {
  color: #3617ce;
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.region-card p {
  color: #666;
  margin: 0 0 12px 0;
  font-size: 0.8rem;
  line-height: 1.4;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.region-card .button {
  background: linear-gradient(135deg, #3617ce 0%, #4d28d4 100%);
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 0.8rem;
}

.region-card .button:hover {
  background: linear-gradient(135deg, #2b10b0 0%, #3d1fb8 100%);
  transform: scale(1.03);
  box-shadow: 0 3px 10px rgba(54, 23, 206, 0.25);
}

/* ===== PRICE CARDS ===== */
.price-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 500px;
  margin: 0 auto;
  justify-content: center;
}

.price-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #f0f0f0;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(54, 23, 206, 0.15);
}

.price-header {
  background: linear-gradient(135deg, #f9f9f9, #fff);
  color: #333;
  padding: 1.5rem 1rem;
  border-bottom: 1px solid #eee;
  position: relative;
}

.price-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #3617ce;
  border-radius: 3px;
}

.price-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #3617ce;
}

.price-amount {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #3617ce;
}

.price-period {
  font-size: 0.8rem;
  opacity: 0.7;
  font-weight: 500;
}

.price-features {
  padding: 1.5rem 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: white;
}

.price-features ul {
  list-style: none;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.price-features li {
  padding: 0.6rem 0;
  border-bottom: 1px solid #f5f5f5;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
}

.price-features li i {
  color: #3617ce;
  margin-right: 0.5rem;
  font-size: 0.9rem;
}

.price-features .button {
  margin-top: auto;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
  border: none;
  padding: 0.7rem 1.8rem;
  font-size: 0.95rem;
  background: #3617ce;
  color: white;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
}

.price-features .button:hover {
  background-color: #2b10b0;
  transform: scale(1.05);
}

.pricing-title-box {
  border: 1px solid #3617ce;
  border-radius: 25px;
  padding: 20px;
  text-align: center;
  margin-bottom: 30px;
  background-color: #f9f9f9;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.phone-input-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.phone-input {
  width: 100px;
  padding: 15px;
  text-align: center;
  border: 2px solid #3617ce;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 500;
}

.phone-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(54, 23, 206, 0.2);
}

.phone-separator {
  font-size: 1.5rem;
  font-weight: bold;
  color: #3617ce;
}

.phone-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.privacy-box {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 5px;
  margin-bottom: 1.5rem;
  border: 1px solid #e0e0e0;
}

.privacy-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 10px;
}

.privacy-header label {
  font-weight: 500;
  color: #333;
  font-size: 1rem;
  flex: 1;
  min-width: 200px;
}

.detail-toggle {
  background: none;
  border: none;
  color: #3617ce;
  cursor: pointer;
  font-size: 0.9rem;
  text-decoration: underline;
  transition: color 0.3s ease;
  white-space: nowrap;
  padding: 5px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}

.detail-toggle:hover {
  color: #2b10b0;
  background: rgba(54, 23, 206, 0.1);
}

.privacy-content {
  display: none;
  padding: 1rem;
  background: white;
  border-radius: 5px;
  font-size: 0.9rem;
  color: #666;
  margin-top: 1rem;
  border: 1px solid #eee;
}

.privacy-content.active {
  display: block;
}

.privacy-content p {
  margin: 8px 0;
  line-height: 1.4;
}

.privacy-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.privacy-check input[type="checkbox"] {
  margin-right: 8px;
  transform: scale(1.2);
}

.privacy-check label {
  font-size: 0.9rem;
  color: #333;
  cursor: pointer;
  line-height: 1.4;
}

/* ===== TESTIMONIAL CARD ===== */
.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 2rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
}

/* ===== MOBILE FIXED BUTTONS ===== */
.mobile-fixed-buttons {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

@media (max-width: 768px) {
  .mobile-fixed-buttons {
    display: flex;
  }
}

@media (min-width: 769px) {
  .mobile-fixed-buttons {
    max-width: 600px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
  }
}

.mobile-call-btn,
.mobile-inquiry-btn,
.mobile-as-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 33.33%;
  float: left;
  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: #3617ce;
}

.mobile-inquiry-btn {
  background-color: #ff6b35;
  color: white;
}

.mobile-as-btn {
  background-color: #dc3545;
  color: white;
}

.mobile-fixed-buttons i {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.mobile-call-btn:hover {
  background-color: #2b10b0;
}

.mobile-inquiry-btn:hover {
  background-color: #e85a2b;
}

.mobile-as-btn:hover {
  background-color: #c82333;
}

/* ===== CHATBOT ===== */
.chatbot-toggle {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  border: 3px solid #3617ce;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(54, 23, 206, 0.15);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse 3s infinite;
}

@media (min-width: 769px) {
  .chatbot-toggle {
    bottom: 20px;
  }
}

.chatbot-toggle:hover {
  background: #f9f9f9;
  border-color: #2b10b0;
  box-shadow: 0 6px 25px rgba(54, 23, 206, 0.18);
}

.chatbot-toggle img {
  width: 35px;
  height: 35px;
  animation: chatbot-alive 4s infinite;
}

@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);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(54, 23, 206, 0.15);
  }
  50% {
    box-shadow: 0 4px 30px rgba(54, 23, 206, 0.35);
  }
  100% {
    box-shadow: 0 4px 20px rgba(54, 23, 206, 0.15);
  }
}

.chatbot-speech-bubble {
  position: fixed;
  bottom: 100px;
  right: 40px;
  background: white;
  color: #333;
  padding: 12px 16px;
  border-radius: 20px 20px 5px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  font-size: 0.9rem;
  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 #f0f0f0;
}

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

.chatbot-speech-bubble::after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.chatbot-speech-bubble.hidden {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (min-width: 769px) {
  .chatbot-speech-bubble {
    bottom: 100px;
    right: 40px;
  }
}

@media (max-width: 768px) {
  .chatbot-speech-bubble {
    position: fixed;
    right: 20px !important;
    bottom: 170px !important;
    left: auto !important;
    top: auto !important;
    font-size: 0.8rem !important;
    padding: 10px 14px !important;
    border-radius: 18px 18px 5px 18px !important;
    max-width: 160px !important;
    white-space: normal !important;
    line-height: 1.3 !important;
    z-index: 1002 !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
  }

  .chatbot-speech-bubble::after {
    content: "";
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  }
}

@media (max-width: 320px) {
  .chatbot-speech-bubble {
    bottom: 150px;
    right: 15px;
    font-size: 0.7rem;
    padding: 8px 12px;
    border-radius: 16px 16px 4px 16px;
    max-width: 120px;
    line-height: 1.2;
  }

  .chatbot-speech-bubble::after {
    bottom: -5px;
    right: 12px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid white;
  }
}

.chatbot-container {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 350px;
  height: 500px;
  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, #3617ce 0%, #4d28d4 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;
}

.close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.chat-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  background: #f8f9fa;
  max-height: 400px;
}

.message {
  margin-bottom: 15px;
}

.bot-message {
  background: white;
  padding: 12px 15px;
  border-radius: 15px 15px 15px 5px;
  margin-bottom: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-size: 0.9rem;
  line-height: 1.4;
  color: #333;
}

.user-message {
  background: #3617ce;
  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%;
}

.option-btn {
  background: #f8f9fa;
  border: 2px solid #3617ce;
  color: #3617ce;
  padding: 10px 15px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
}

.option-btn:hover {
  background: #3617ce;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(54, 23, 206, 0.3);
}

.benefit-highlight {
  background: linear-gradient(135deg, #ffeb3b 0%, #ffc107 100%);
  color: #333;
  padding: 8px 12px;
  border-radius: 15px;
  font-weight: 700;
  text-align: center;
  margin: 10px 0;
  box-shadow: 0 2px 5px rgba(255, 193, 7, 0.3);
  font-size: 0.9rem;
}

.price-highlight {
  color: #e91e63;
  font-weight: 700;
  font-size: 1.05em;
}

@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;
  }

  .close-btn {
    width: 25px;
    height: 25px;
    font-size: 1.2rem;
  }

  .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;
  }

  .option-btn {
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  .benefit-highlight {
    padding: 6px 10px;
    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;
  }

  .option-btn {
    padding: 6px 10px;
    font-size: 0.75rem;
  }
}

@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;
  }

  .option-btn {
    font-size: 0.7rem;
    padding: 5px 8px;
  }

  .benefit-highlight {
    font-size: 0.75rem;
    padding: 5px 8px;
  }
}

/* ===== RELATED SERVICES ===== */
.related-services {
  text-align: center;
  padding: 20px 0;
  background: #f8f9fa;
}

.related-services h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: #333;
}

.service-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.service-link {
  padding: 10px 20px;
  background: white;
  color: #3617ce;
  text-decoration: none;
  border: 2px solid #3617ce;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-link:hover {
  background: #3617ce;
  color: white;
}

.service-link.current {
  background: #3617ce;
  color: white;
}

@media (max-width: 768px) {
  .service-links {
    gap: 10px;
  }

  .service-link {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

/* ===== SECTION/SERVICES SPECIFIC ===== */
#services .section-title {
  margin-top: 3rem;
  margin-bottom: 5rem;
}

#services .feature-content h3 {
  font-size: 1.1rem !important;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: white;
  padding: 40px 0;
}

.faq-section .section-title {
  text-align: center;
  margin-bottom: 50px;
  color: #333;
  font-size: 2.5rem;
  font-weight: 700;
}

.faq-item {
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  background: #f8f9fa;
  padding: 20px;
  font-weight: 600;
  color: #3617ce;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question span {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
}

.faq-question i {
  color: #3617ce;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 20px;
  background: white;
}

.faq-answer.active {
  display: block;
}

.faq-answer-content {
  padding: 20px 25px;
}

.faq-answer p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #555;
}

.faq-answer ul {
  margin: 15px 0;
  padding-left: 20px;
}

.faq-answer li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: #555;
}

.faq-answer h4 {
  margin: 20px 0 10px 0;
  color: #333;
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-answer table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-answer th,
.faq-answer td {
  padding: 12px;
  text-align: center;
  border: 1px solid #e9ecef;
}

.faq-answer th {
  background: #3617ce;
  color: white;
  font-weight: 600;
}

.faq-answer td {
  background: white;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-section .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .faq-question {
    padding: 15px 18px;
  }

  .faq-question span {
    font-size: 1rem;
  }

  .faq-answer-content {
    padding: 18px 20px;
  }

  .faq-answer table {
    font-size: 0.9rem;
  }

  .faq-answer th,
  .faq-answer td {
    padding: 8px 6px;
  }
}

@media (max-width: 480px) {
  .faq-section .section-title {
    font-size: 1.8rem;
  }

  .faq-question {
    padding: 15px 18px;
  }

  .faq-question span {
    font-size: 0.95rem;
  }

  .faq-answer-content {
    padding: 15px 18px;
  }

  .faq-answer table {
    font-size: 0.8rem;
  }

  .faq-answer th,
  .faq-answer td {
    padding: 6px 4px;
  }
}

/* 지역별 설치 가능 구역 토글 스타일 */
.area-detail-content {
  transition: all 0.3s ease;
}

.area-detail-content[style*="display: none"] {
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.area-detail-content[style*="display: block"] {
  opacity: 1;
  height: auto;
}

/* 토글 버튼 스타일 개선 */
button[onclick*="toggleAreaInFaq"] {
  background: #3617ce;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

button[onclick*="toggleAreaInFaq"]:hover {
  background: #2910b5;
  transform: translateY(-1px);
}

/* ===== MOBILE SLIDER / PRICING STEPS ===== */
.mobile-slider-container {
  display: none;
  position: relative;
  margin: 20px 0;
}

.mobile-slider {
  overflow: hidden;
  border-radius: 8px;
}

.mobile-track {
  display: flex;
  transition: transform 0.3s ease;
  gap: 15px;
}

.mobile-product-card {
  min-width: calc(100vw - 60px);
  max-width: 320px;
  flex: 1;
  min-width: 150px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  background: white;
  flex-shrink: 0;
}

.mobile-product-card:hover {
  border-color: #3498db;
}

.mobile-product-card.selected {
  border-color: #3498db;
  background-color: #ebf5fb;
}

.slider-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding: 0 10px;
}

.nav-btn {
  background: rgba(54, 23, 206, 0.9);
  color: white;
  border: 2px solid #3617ce;
  width: 45px;
  height: 45px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 700;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(54, 23, 206, 0.3);
  touch-action: manipulation;
}

.nav-btn:active {
  background: #2b10b0;
  transform: scale(0.95);
}

.nav-btn:disabled {
  background: rgba(204, 204, 204, 0.5);
  border-color: #ccc;
  color: #999;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.nav-btn.prev::before {
  content: "◀";
  font-family: Arial, sans-serif;
  font-size: 1rem;
}

.nav-btn.next::before {
  content: "▶";
  font-family: Arial, sans-serif;
  font-size: 1rem;
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #3617ce;
  transform: scale(1.3);
}

.pricing-title-main {
  font-size: 1.5rem;
  color: #3617ce;
  margin-bottom: 5px;
  margin-top: 0;
}

.pricing-title-sub {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0;
}

@media (min-width: 769px) {
  .pricing-layout {
    display: flex !important;
    gap: 40px;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
    flex-direction: row;
  }

  .pricing-steps {
    flex: 2;
    width: auto;
    min-width: auto;
  }

  .price-details-new {
    flex: 1 !important;
    min-width: 300px !important;
    width: auto !important;
    box-sizing: border-box !important;
    position: sticky !important;
    top: 20px !important;
    margin-top: 0 !important;
  }

  .select1 {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  }

  .select1:last-child {
    margin-bottom: 0;
  }

  .step-title {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 1.5rem !important;
    color: #333;
    text-align: left;
  }

  .step-number {
    display: inline-block;
    background: #3617ce !important;
    color: white !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    padding: 8px 15px !important;
    border-radius: 20px !important;
    margin-right: 10px !important;
    vertical-align: middle !important;
    min-width: 80px !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  .selitem {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
  }

  .selitem > div {
    width: 160px;
    height: 160px;
    flex: 0 0 auto;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .selitem > div.on,
  .selitem > div:hover {
    border-color: #3617ce;
    background-color: #ebf5fb;
  }

  .selitem img {
    max-width: 60px;
    height: auto;
    margin-bottom: 8px;
  }

  .selitem p {
    margin: 0;
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
    color: #333;
    font-weight: 500;
    line-height: 1.3;
  }

  .selitem p.subtxt {
    font-size: clamp(0.7rem, 1vw, 0.75rem);
    color: #666;
    margin-top: 4px;
    line-height: 1.2;
  }

  .mobile-slider-container {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .mobile-slider-container {
    display: block !important;
  }

  .selitem {
    display: none !important;
  }

  .pricing-layout {
    flex-direction: column !important;
  }

  .price-details-new {
    margin-top: 20px !important;
    width: 100% !important;
    min-width: auto !important;
    position: static !important;
  }

  .select1 {
    padding: 15px !important;
    margin-bottom: 15px !important;
    background: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05) !important;
  }

  .step-title {
    font-size: 1.1rem !important;
    margin-bottom: 15px !important;
    text-align: left !important;
    padding-left: 0 !important;
    color: #333 !important;
    margin-top: 0 !important;
  }

  .step-number {
    display: inline-block !important;
    font-size: 0.8rem !important;
    padding: 4px 8px !important;
    background: #3617ce !important;
    color: white !important;
    border-radius: 12px !important;
    margin-right: 8px !important;
    font-weight: 600 !important;
    min-width: 60px !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  .mobile-product-card {
    padding: 10px !important;
  }

  .mobile-product-card h3 {
    font-size: 13px !important;
    color: #2c3e50 !important;
    margin-bottom: 4px !important;
    font-weight: 600 !important;
    margin: 0;
  }

  .mobile-product-card p {
    font-size: 11px !important;
    color: #7f8c8d !important;
    margin: 2px 0 !important;
    line-height: 1.3 !important;
  }
}

/* ===== PRICE DETAILS NEW / ESTIMATED PRICE ===== */
.price-details-new {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.price-details-new h3 {
  font-size: 1.2rem;
  color: #333;
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.estimated-price,
.gift-info,
.card-discount {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.card-discount {
  border-bottom: none;
}

.price-label,
.gift-label {
  font-weight: 500;
  color: #555;
  flex-basis: 100px;
  flex-shrink: 0;
  font-size: 1rem;
}

.price-value,
.gift-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #3617ce;
  flex-grow: 1;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.estimated-price .price-value {
  color: #e74c3c;
  font-size: 1.5rem;
}

.estimated-price .amount {
  font-size: 1.5rem;
  font-weight: 700;
}

.estimated-price .vat {
  font-size: 0.9rem;
  color: #666;
  font-weight: 400;
  margin-left: 5px;
}

.online-badge {
  background-color: #3617ce;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
}

.discount-info {
  width: 100%;
  text-align: right;
  font-size: 0.9rem;
  color: #666;
  margin-top: 5px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}

.discount-amount {
  color: #e74c3c;
  font-weight: 400;
  font-size: 0.9rem;
  display: inline-block;
}

.note {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.note ul {
  list-style: disc inside;
  padding-left: 10px;
}

.note li {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 5px;
}

.next-step-button {
  display: block;
  width: 100%;
  padding: 15px;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  color: white;
  background-color: #3617ce;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 30px;
  transition: background-color 0.3s ease;
}

.next-step-button:hover {
  background-color: #2b10b0;
}

.consultation-phone-box {
  margin-top: 30px;
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #f9f9f9;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.consultation-phone-box p {
  margin: 0 0 10px 0;
  font-size: 1rem;
  color: #555;
}

.consultation-phone-box .phone-number-link {
  font-size: 1.8rem;
  color: #3617ce;
  font-weight: bold;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.consultation-phone-box .phone-number-link:hover {
  color: #2b10b0;
}

.consultation-phone-box .hours {
  font-size: 0.9rem;
  color: #999;
  margin: 0;
}

.phone-compatibility-box {
  background: #f0f8ff;
  border: 1px solid #3617ce;
  border-radius: 8px;
  padding: 15px;
  margin: 15px 0;
}

.phone-compatibility-box h4 {
  margin: 0 0 8px 0;
  color: #3617ce;
  font-size: 1rem;
  font-weight: 600;
}

.phone-compatibility-box p {
  margin: 0;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.4;
}

.pricing {
  margin-top: 50px;
  padding-top: 100px;
}

@media (max-width: 768px) {
  .pricing {
    margin-top: 0 !important;
    padding-top: 90px !important;
  }

  .pricing-title-box {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    padding: 15px !important;
  }
}

.phone-compatibility-box {
  padding: 12px;
  margin: 10px 0;
}

.phone-compatibility-box h4 {
  font-size: 0.9rem;
}

.phone-compatibility-box p {
  font-size: 0.75rem;
}

@media (min-width: 769px) {
  #contact .container {
    padding: 0 15px;
    max-width: 600px;
  }
}

.privacy-content {
  display: none;
  margin-top: 10px;
  padding: 10px;
  background: white;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
}

.privacy-content.active {
  display: block;
}

.privacy-content p {
  margin: 5px 0;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.4;
}

.pricing {
  margin-top: 0 !important;
  padding-top: 20px !important;
}

/* ===== CHANNEL LINK TRIANGLE ===== */
.channel-link-triangle {
  display: inline-block;
  background: linear-gradient(135deg, #cfc817, #e6d42a);
  color: #333;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 600;
  text-decoration: none;
  margin-left: 20px;
  transition: all 0.3s ease;
  vertical-align: middle;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
  box-shadow: 0 2px 6px rgba(207, 200, 23, 0.3);
  z-index: 1;
}

.channel-link-triangle:hover {
  background: linear-gradient(135deg, #b8b015, #d4c725);
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(207, 200, 23, 0.4);
}

/* ===== CARD DISCOUNT SECTION ===== */
.card-discount-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.card-discount-section .section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
  font-weight: 400;
}

.card-discount-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.discount-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.discount-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(54, 23, 206, 0.15);
  border-color: #3617ce;
}

.discount-card.featured {
  border-color: #3617ce;
  position: relative;
}

.best-label {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #000000;
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 3;
  animation: bounce 2s infinite;
}

.card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  position: relative;
}

.card-image img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  text-align: center;
}

.discount-benefits {
  margin-bottom: 1rem;
  flex-grow: 1;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.8rem;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.benefit-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.discount-rate {
  font-size: 1.1rem;
  font-weight: 700;
  color: #3617ce;
  margin-bottom: 3px;
}

.condition {
  font-size: 0.85rem;
  color: #666;
  font-weight: 400;
}

.annual-fee {
  background: #f8f9fa;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 1.5rem;
}

.annual-fee p {
  margin: 0;
  font-size: 0.85rem;
  color: #555;
  text-align: center;
}

.card-detail-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #3617ce, #4d28d4);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
  text-decoration: none;
  display: block;
  text-align: center;
  box-sizing: border-box;
}

.card-detail-btn:hover {
  background: linear-gradient(135deg, #2b10b0, #3d1fb8);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(54, 23, 206, 0.3);
}

.card-notice {
  text-align: center;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e9ecef;
  margin-top: 1rem;
}

.card-notice p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.card-notice i {
  color: #3617ce;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .card-discount-section {
    padding: 3rem 0;
  }

  .card-discount-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .card-image {
    height: 150px;
  }

  .card-content {
    padding: 1.2rem;
  }

  .card-content h3 {
    font-size: 1.2rem;
  }

  .discount-rate {
    font-size: 1rem;
  }

  .condition {
    font-size: 0.8rem;
  }

  .annual-fee p {
    font-size: 0.8rem;
  }

  .card-detail-btn {
    padding: 10px;
    font-size: 0.9rem;
  }

  .card-notice p {
    font-size: 0.85rem;
    flex-direction: column;
    gap: 5px;
  }
}

.faq-item .table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 15px 0;
  max-width: 100%;
  position: relative;
}

.faq-item .table-wrapper table {
  min-width: 500px;
  width: max-content;
  margin: 0 !important;
}

.faq-item .scroll-hint {
  display: none;
  font-size: 12px;
  color: #888;
  margin-bottom: 6px;
}

@media (max-width: 768px) {
  .faq-item .table-wrapper {
    margin: 10px -20px;
    padding: 0 20px;
  }

  .faq-item .table-wrapper table {
    font-size: 12px;
    min-width: 450px;
  }

  .faq-item .table-wrapper th,
  .faq-item .table-wrapper td {
    padding: 6px 4px !important;
    white-space: nowrap;
  }

  .faq-item .scroll-hint {
    display: block;
  }
}

/* ===== SERVICE AREAS / AREA CARDS ===== */
.service-areas {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  margin: 30px 0;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.area-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #3617ce;
}

.area-card h4 {
  color: #3617ce;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.area-card ul {
  list-style: none;
  padding: 0;
}

.area-card li {
  padding: 3px 0;
  font-size: 0.9rem;
  color: #666;
}

.area-card li:before {
  content: "✓ ";
  color: #3617ce;
  font-weight: bold;
}

.related-regions {
  background: #fff3cd;
  padding: 20px;
  border-radius: 8px;
  margin: 30px 0;
  text-align: center;
}

.related-regions h3 {
  color: #856404;
  margin-bottom: 15px;
}

.related-regions a {
  display: inline-block;
  margin: 5px 10px;
  padding: 8px 15px;
  background: white;
  color: #3617ce;
  text-decoration: none;
  border-radius: 20px;
  border: 1px solid #3617ce;
  transition: all 0.3s;
}

.related-regions a:hover {
  background: #3617ce;
  color: white;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

.feature-card {
  position: relative;
}

.event-label {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #2d3436;
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 3;
  animation: bounce 2s infinite;
}

/* ===== SINGLE PHONE INPUT ===== */
.single-phone-input {
  width: 100% !important;
  padding: 15px 20px !important;
  text-align: center !important;
  border: 2px solid #3617ce !important;
  border-radius: 8px !important;
  font-size: 1.1rem !important;
  font-weight: 500 !important;
  margin-top: 10px !important;
  transition: all 0.3s ease !important;
  background: #fff !important;
  box-sizing: border-box !important;
  display: block !important;
  height: auto !important;
  min-height: 50px !important;
}

.single-phone-input:focus {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(54, 23, 206, 0.2) !important;
  border-color: #2b10b0 !important;
}

.single-phone-input::placeholder {
  color: #999 !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
}

@media (max-width: 768px) {
  .single-phone-input {
    font-size: 1rem !important;
    padding: 12px 16px !important;
    min-height: 45px !important;
  }

  .single-phone-input::placeholder {
    font-size: 0.9rem !important;
  }
}

/* ===== SERVICE AREA BOX ===== */
.service-area-box {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 5px;
  margin-bottom: 2rem;
  border: 1px solid #e0e0e0;
}

.service-area-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-weight: 500;
  color: #333;
}

.service-area-content {
  display: none;
  padding: 1rem;
  background: white;
  border-radius: 5px;
  font-size: 0.9rem;
  color: #666;
  margin-top: 1rem;
}

.service-area-content.active {
  display: block;
}

.area-detail-toggle {
  background: none;
  border: none;
  color: #3617ce;
  cursor: pointer;
  font-size: 0.9rem;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.area-detail-toggle:hover {
  color: #2b10b0;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.area-card {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid #3617ce;
}

.area-card h4 {
  color: #3617ce;
  margin-bottom: 10px;
  font-size: 1.1rem;
  margin-top: 0;
}

.area-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.area-card li {
  padding: 3px 0;
  font-size: 0.85rem;
  color: #555;
}

.area-card li:before {
  content: "✓ ";
  color: #3617ce;
  font-weight: bold;
}

@media (max-width: 768px) {
  .area-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .area-card {
    padding: 12px;
  }

  .area-card h4 {
    font-size: 1rem;
  }

  .area-card li {
    font-size: 0.8rem;
  }
}

/* ===== PRICE REDIRECT ===== */
.price-redirect {
  background: #3617ce;
  color: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  margin: 40px auto;
  max-width: 600px;
  box-shadow: 0 8px 25px rgba(54, 23, 206, 0.2);
}

.price-redirect h3 {
  margin: 0 0 15px 0;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}

.price-redirect p {
  margin: 0 0 20px 0;
  opacity: 0.95;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  word-break: keep-all;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.price-redirect .button {
  background: white;
  color: #3617ce;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-align: center;
  margin: 0 auto;
  border: 2px solid transparent;
}

.price-redirect .button:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid white;
}

@media (max-width: 768px) {
  .price-redirect {
    padding: 30px 20px;
    margin: 30px 15px;
    max-width: none;
  }

  .price-redirect h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    line-height: 1.4;
  }

  .price-redirect p {
    font-size: 0.9rem;
    margin-bottom: 18px;
    line-height: 1.4;
    max-width: none;
  }

  .price-redirect .button {
    padding: 10px 25px;
    font-size: 0.9rem;
    width: auto;
    display: inline-block;
  }
}

@media (max-width: 480px) {
  .price-redirect {
    padding: 25px 15px;
    margin: 25px 10px;
    border-radius: 12px;
  }

  .price-redirect h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .price-redirect p {
    font-size: 0.85rem;
    margin-bottom: 15px;
  }

  .price-redirect .button {
    padding: 8px 20px;
    font-size: 0.85rem;
  }
}

.service-area-content,
.area-grid {
  overflow: visible !important;
  max-height: none !important;
  height: auto !important;
}

/* ===== INSTALL AREA BOX ===== */
.install-area-box {
  max-width: 600px;
  margin: 20px auto;
  padding: 16px 20px;
  background: #f9f9f9;
  border: 1px solid #e1e1e1;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  font-family: "Noto Sans KR", sans-serif;
}

.install-area-box h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #333;
  text-align: center;
}

.install-area-box p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 12px;
  text-align: center;
}

.install-area-btn {
  display: block;
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
  background: #0000ff;
  color: #fff;
  padding: 10px 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.install-area-btn:hover {
  background: #0056b3;
}

.region-details {
  display: none;
  margin-top: 14px;
  line-height: 1.6;
  font-size: 0.9rem;
}

.region-details.show {
  display: block;
}

.region-details ul {
  padding-left: 16px;
}

.region-details li {
  margin-bottom: 6px;
}

@media (max-width: 600px) {
  .install-area-box {
    max-width: 92%;
    margin: 14px auto;
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .install-area-box h3 {
    font-size: 1rem;
  }

  .install-area-box p {
    font-size: 0.82rem;
  }

  .region-details {
    font-size: 0.82rem;
    line-height: 1.4;
  }
}

/* ===== EVENT BANNER ===== */
.event-banner {
  position: relative;
  background: linear-gradient(90deg, #2d2d2d, #505b5f);
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 20px;
  border-radius: 12px;
}

.event-banner .info-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #28a745;
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition:
    background 0.3s,
    transform 0.2s;
}

.event-banner .info-btn:hover {
  background: #444;
  transform: scale(1.15);
}

.event-banner-modal {
  display: none;
  position: fixed;
  z-index: 999;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.event-banner-modal .modal-content {
  background: #fff;
  margin: 12% auto;
  padding: 25px;
  border-radius: 12px;
  width: 350px;
  max-width: 90vw;
  animation: eventFadeIn 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.event-banner-modal .modal-content h3 {
  text-align: center;
  color: #333;
  margin-bottom: 20px;
  font-size: 1.3rem;
  font-weight: 700;
}

.event-banner-modal .modal-content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
  text-align: left;
}

.event-banner-modal .modal-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 25px;
}

.event-banner-modal .button {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-banner-modal .button:first-of-type {
  background: linear-gradient(135deg, #3617ce, #4d28d4);
  color: white;
}

.event-banner-modal .button:first-of-type:hover {
  background: linear-gradient(135deg, #2b10b0, #3d1fb8);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(54, 23, 206, 0.3);
}

.event-banner-modal .button:last-of-type {
  background: linear-gradient(135deg, #28a745, #34ce57);
  color: white;
}

.event-banner-modal .button:last-of-type:hover {
  background: linear-gradient(135deg, #218838, #28a745);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.event-banner-modal .close {
  color: #aaa;
  float: right;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f8f9fa;
}

.event-banner-modal .close:hover {
  color: #333;
  background: #e9ecef;
}

@media (max-width: 768px) {
  .event-banner-modal .modal-content {
    width: 320px;
    padding: 20px;
    margin: 15% auto;
  }

  .event-banner-modal .modal-content h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }

  .event-banner-modal .modal-content p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .event-banner-modal .modal-buttons {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  .event-banner-modal .button {
    padding: 10px 16px;
    font-size: 0.9rem;
    min-height: 40px;
  }
}

@media (max-width: 480px) {
  .event-banner-modal .modal-content {
    width: 95vw;
    padding: 18px;
    margin: 20% auto;
  }

  .event-banner-modal .modal-content h3 {
    font-size: 1rem;
  }

  .event-banner-modal .modal-content p {
    font-size: 0.85rem;
  }

  .event-banner-modal .button {
    padding: 8px 14px;
    font-size: 0.85rem;
    min-height: 38px;
  }
}

.benefit-box {
  background: #fff;
  color: #000;
  text-align: left;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  margin: 20px auto;
}

@keyframes eventFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== MOBILE PRODUCT CARD (REFINED) ===== */
.mobile-product-card {
  position: relative;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  background: #fff;
  transition: 0.3s;
}

.mobile-product-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.corner-recommend::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-top: 40px solid #28a745;
  border-right: 30px solid transparent;
}

.corner-recommend::after {
  content: "추천";
  position: absolute;
  top: 3px;
  left: 3px;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  transform: rotate(-45deg);
}

.card-content {
  text-align: center;
}

.card-image {
  height: 140px;
}

.card-content {
  padding: 1.2rem;
}

.card-content h3 {
  margin-bottom: 0.8rem;
}

.discount-benefits {
  margin-bottom: 1rem;
}

.benefit-item {
  margin-bottom: 0.6rem;
  padding: 6px 0;
}

.annual-fee {
  padding: 10px;
  margin-bottom: 1.2rem;
}

@media (max-width: 768px) {
  .card-image {
    height: 120px;
  }

  .card-content {
    padding: 1rem;
  }

  .card-content h3 {
    margin-bottom: 0.6rem;
  }

  .discount-benefits {
    margin-bottom: 0.8rem;
  }

  .benefit-item {
    margin-bottom: 0.5rem;
    padding: 5px 0;
  }

  .annual-fee {
    padding: 8px;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .card-image {
    height: 100px;
  }

  .card-content {
    padding: 0.8rem;
  }

  .benefit-item {
    margin-bottom: 0.4rem;
    padding: 4px 0;
  }

  .annual-fee {
    padding: 6px;
    margin-bottom: 0.8rem;
  }
}

@media (min-width: 769px) {
  .faq-section .container {
    max-width: 700px !important;
    margin: 0 auto;
  }

  .faq-item {
    max-width: 100%;
    margin: 0 auto 15px auto;
  }
}

/* ===== BTV UPGRADE / TV2 NOTICES ===== */
.btv-upgrade-notice {
  background: linear-gradient(135deg, #fff9e6 0%, #fff4d6 100%);
  border: 2px solid #ffc107;
  border-radius: 12px;
  padding: 15px 20px;
  margin: 15px 0;
  display: none;
  animation: upgradeSlideIn 0.5s ease-out;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.2);
}

@keyframes upgradeSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btv-upgrade-notice {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.btv-upgrade-notice .upgrade-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.btv-upgrade-notice .upgrade-content {
  flex: 1;
}

.btv-upgrade-notice h4 {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #f57c00;
}

.btv-upgrade-notice p {
  margin: 4px 0;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.4;
}

.btv-upgrade-notice strong {
  color: #e65100;
  font-weight: 700;
}

.btv-upgrade-notice .upgrade-detail {
  font-size: 0.9rem;
  color: #666;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px dashed #ffc107;
}

@media (max-width: 768px) {
  .btv-upgrade-notice {
    padding: 12px 15px;
    flex-direction: row;
    gap: 12px;
  }

  .btv-upgrade-notice .upgrade-icon {
    font-size: 1.5rem;
  }

  .btv-upgrade-notice h4 {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .btv-upgrade-notice p {
    font-size: 0.85rem;
  }

  .btv-upgrade-notice .upgrade-detail {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .btv-upgrade-notice {
    padding: 10px 12px;
  }

  .btv-upgrade-notice .upgrade-icon {
    font-size: 1.3rem;
  }

  .btv-upgrade-notice h4 {
    font-size: 0.9rem;
  }

  .btv-upgrade-notice p {
    font-size: 0.8rem;
  }
}

.btv-tv2-notice {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border: 2px solid #2196f3;
  border-radius: 12px;
  padding: 15px 20px;
  margin: 15px 0;
  display: none;
  animation: upgradeSlideIn 0.5s ease-out;
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.2);
  align-items: flex-start;
  gap: 15px;
}

.btv-tv2-notice .upgrade-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.btv-tv2-notice .upgrade-content {
  flex: 1;
}

.btv-tv2-notice h4 {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1976d2;
}

.btv-tv2-notice p {
  margin: 4px 0;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.4;
}

.btv-tv2-notice strong {
  color: #1565c0;
  font-weight: 700;
}

.btv-tv2-notice .upgrade-detail {
  font-size: 0.9rem;
  color: #666;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px dashed #2196f3;
}

@media (max-width: 768px) {
  .btv-tv2-notice {
    padding: 12px 15px;
    flex-direction: row;
    gap: 12px;
  }

  .btv-tv2-notice .upgrade-icon {
    font-size: 1.5rem;
  }

  .btv-tv2-notice h4 {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .btv-tv2-notice p {
    font-size: 0.85rem;
  }

  .btv-tv2-notice .upgrade-detail {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .btv-tv2-notice {
    padding: 10px 12px;
  }

  .btv-tv2-notice .upgrade-icon {
    font-size: 1.3rem;
  }

  .btv-tv2-notice h4 {
    font-size: 0.9rem;
  }

  .btv-tv2-notice p {
    font-size: 0.8rem;
  }
}

/* ===== REALTIME CONSULTATION CARD ===== */
.consultation-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

.consultation-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #3617ce;
}

.consultation-card .consultation-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e9ecef;
}

.consultation-card .consultation-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #3617ce;
}

.consultation-card .consultation-icon {
  font-size: 1.6rem;
  animation: realtimePulse 2s infinite;
}

@keyframes realtimePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.consultation-card .live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #dc3545;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.consultation-card .live-dot {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: realtimeBlink 1s infinite;
}

@keyframes realtimeBlink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0.3;
  }
}

.consultation-card .consultation-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: start;
}

.consultation-card .consultation-list {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #e9ecef;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.consultation-card .consultation-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e9ecef;
  opacity: 0;
  transform: translateY(-20px);
  animation: realtimeSlideIn 0.5s ease-out forwards;
}

.consultation-card .consultation-item:last-child {
  border-bottom: none;
}

.consultation-card .consultation-item.new {
  background: linear-gradient(
    90deg,
    rgba(54, 23, 206, 0.05) 0%,
    transparent 100%
  );
  border-radius: 5px;
  padding-left: 10px;
  padding-right: 10px;
}

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

.consultation-card .client-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.consultation-card .client-avatar {
  width: 32px;
  height: 32px;
  background: #3617ce;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
}

.consultation-card .client-details h4 {
  margin: 0;
  font-size: 0.95rem;
  color: #2c3e50;
  font-weight: 600;
}

.consultation-card .client-details p {
  margin: 2px 0 0 0;
  font-size: 0.8rem;
  color: #6c757d;
}

.consultation-card .consultation-time {
  font-size: 0.8rem;
  color: #28a745;
  font-weight: 600;
  background: rgba(40, 167, 69, 0.1);
  padding: 4px 8px;
  border-radius: 12px;
}

.consultation-card .consultation-stats {
  background: white;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #e9ecef;
  text-align: center;
  min-width: 200px;
}

.consultation-card .stats-title {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 15px;
  font-weight: 500;
}

.consultation-card .stats-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #3617ce;
  margin-bottom: 5px;
  display: block;
}

.consultation-card .stats-label {
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 15px;
}

.consultation-card .stats-trend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 0.8rem;
  color: #28a745;
  font-weight: 600;
}

.consultation-card .trend-arrow {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .consultation-card .consultation-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .consultation-card .consultation-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .consultation-card .consultation-title {
    font-size: 1.2rem;
  }

  .consultation-card .consultation-list {
    height: 200px;
  }

  .consultation-card {
    padding: 20px;
  }

  .consultation-card .client-details h4 {
    font-size: 0.85rem;
  }

  .consultation-card .client-details p {
    font-size: 0.75rem;
  }

  .consultation-card .consultation-time {
    font-size: 0.75rem;
  }

  .consultation-card .stats-number {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .consultation-card {
    padding: 15px;
  }

  .consultation-card .consultation-title {
    font-size: 1.1rem;
  }

  .consultation-card .consultation-list {
    height: 180px;
    padding: 15px;
  }

  .consultation-card .stats-number {
    font-size: 1.6rem;
  }
}

@media (min-width: 769px) {
  .realtime-consultation-section .container {
    max-width: 800px !important;
    margin: 0 auto !important;
  }

  .consultation-card {
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  .consultation-item {
    padding: 12px 20px !important;
  }

  .client-info {
    gap: 15px !important;
  }

  .client-details h4 {
    font-size: 1rem !important;
  }

  .client-details p {
    font-size: 0.85rem !important;
  }

  .consultation-time {
    font-size: 0.85rem !important;
    padding: 6px 10px !important;
  }
}

@media (min-width: 769px) {
  #areas .container {
    max-width: 800px !important;
    margin: 0 auto !important;
  }

  .service-area-box {
    max-width: 100% !important;
    margin: 20px auto !important;
    padding: 20px 25px !important;
  }

  .service-area-content.active .area-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    gap: 25px !important;
    max-width: 750px !important;
    margin: 0 auto !important;
  }

  .area-card {
    padding: 20px !important;
    min-height: auto !important;
  }

  .area-card h4 {
    font-size: 1.15rem !important;
    margin-bottom: 12px !important;
  }

  .area-card li {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    padding: 4px 0 !important;
  }

  .service-area-header {
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
  }

  .service-area-header span {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
  }

  .area-detail-toggle {
    font-size: 0.9rem !important;
    padding: 8px 12px !important;
    white-space: nowrap !important;
  }
}

/* ===== SK PHONE / INSTALL COST CARDS ===== */
.sk-phone-card,
.install-cost-card {
  max-width: 1000px;
  margin: 20px auto;
  padding: 25px 30px;
}

@media (min-width: 769px) {
  .sk-phone-card,
  .install-cost-card {
    max-width: 1200px !important;
    width: 95% !important;
    padding: 30px 40px !important;
  }

  .phone-rates-table table,
  .install-cost-table table {
    font-size: 1.1rem !important;
  }

  .phone-rates-table th,
  .phone-rates-table td,
  .install-cost-table th,
  .install-cost-table td {
    padding: 18px 15px !important;
    font-size: 1rem !important;
  }
}

@media (max-width: 768px) {
  .sk-phone-card,
  .install-cost-card {
    max-width: 100%;
    margin: 15px 0;
    padding: 20px 15px;
  }

  .sk-phone-card h3,
  .install-cost-card h3 {
    font-size: 1.3rem !important;
    margin-bottom: 15px !important;
    line-height: 1.3 !important;
  }

  .sk-phone-card p,
  .install-cost-card p {
    font-size: 1.05rem !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
  }

  .phone-rates-table,
  .install-cost-table {
    font-size: 0.95rem !important;
    margin: 25px 0 !important;
  }

  .phone-rates-table th,
  .phone-rates-table td,
  .install-cost-table th,
  .install-cost-table td {
    padding: 12px 8px !important;
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
  }

  .phone-notice p,
  .install-benefits li {
    font-size: 1rem !important;
    line-height: 1.6 !important;
  }

  .install-benefits h4 {
    font-size: 1.15rem !important;
    margin-bottom: 15px !important;
  }
}

@media (max-width: 480px) {
  .sk-phone-card h3,
  .install-cost-card h3 {
    font-size: 1.2rem !important;
    line-height: 1.4 !important;
  }

  .sk-phone-card p,
  .install-cost-card p {
    font-size: 1rem !important;
    line-height: 1.5 !important;
  }

  .phone-rates-table th,
  .phone-rates-table td,
  .install-cost-table th,
  .install-cost-table td {
    padding: 10px 6px !important;
    font-size: 0.85rem !important;
  }

  .phone-notice p,
  .install-benefits li {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
  }
}

@media (max-width: 360px) {
  .sk-phone-card h3,
  .install-cost-card h3 {
    font-size: 0.9rem !important;
    gap: 5px !important;
  }
}

@media (max-width: 320px) {
  .sk-phone-card h3,
  .install-cost-card h3 {
    font-size: 0.85rem !important;
    gap: 4px !important;
  }
}

.phone-notice {
  margin-top: 20px !important;
  padding: 15px 20px !important;
  background: rgba(0, 0, 0, 0.2) !important;
  border-radius: 10px !important;
  border-left: 4px solid rgba(255, 255, 255, 0.6) !important;
}

.phone-notice p {
  margin: 0 !important;
  color: white !important;
  font-weight: 500 !important;
}

.phone-notice i {
  color: white !important;
  margin-right: 10px !important;
  font-size: 1.1rem !important;
}

.install-benefits {
  margin-top: 20px !important;
  padding: 20px !important;
  background: rgba(0, 0, 0, 0.2) !important;
  border-radius: 10px !important;
  border-left: 4px solid rgba(255, 255, 255, 0.6) !important;
}

.install-benefits h4 {
  margin: 0 0 15px 0 !important;
  color: white !important;
  font-weight: 600 !important;
}

.install-benefits ul {
  margin: 0 !important;
  padding-left: 25px !important;
  list-style: disc !important;
}

.install-benefits li {
  margin-bottom: 10px !important;
  color: white !important;
  font-weight: 400 !important;
}

.install-benefits li strong {
  color: white !important;
  font-weight: 700 !important;
}

@media (min-width: 769px) {
  .info-card.mobile-feature-box.sk-phone-card,
  .info-card.mobile-feature-box.install-cost-card {
    max-width: none !important;
    width: 90vw !important;
    margin: 30px auto !important;
    padding: 40px 50px !important;
    box-sizing: border-box !important;
  }

  .feature-grid-section .container {
    max-width: none !important;
    width: 95% !important;
    padding: 0 20px !important;
  }

  .feature-grid-section .info-card {
    max-width: none !important;
    width: 85vw !important;
    margin: 30px auto !important;
    padding: 40px 50px !important;
  }
}

@media (min-width: 769px) {
  body .sk-phone-card,
  body .install-cost-card {
    max-width: 1400px !important;
    width: 85% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 40px 60px !important;
  }

  .sk-phone-card .phone-rates-table,
  .install-cost-card .install-cost-table {
    width: 100% !important;
    margin: 30px 0 !important;
  }

  .phone-rates-table table,
  .install-cost-table table {
    width: 100% !important;
    font-size: 1.1rem !important;
  }
}

.phone-rates-table table,
.install-cost-table table {
  width: 100% !important;
  border-collapse: collapse !important;
  background: rgba(255, 255, 255, 0.95) !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  color: #333 !important;
  font-size: 1rem !important;
  margin: 25px 0 !important;
}

.phone-rates-table th,
.phone-rates-table td,
.install-cost-table th,
.install-cost-table td {
  padding: 15px 12px !important;
  text-align: left !important;
  border: 1px solid #e0e0e0 !important;
  font-size: 0.95rem !important;
  line-height: 1.5 !important;
  vertical-align: top !important;
}

.phone-rates-table th,
.install-cost-table th {
  background: #f8f9fa !important;
  font-weight: 600 !important;
  color: #495057 !important;
  font-size: 1rem !important;
  border-bottom: 2px solid #dee2e6 !important;
}

.phone-rates-table tbody tr:hover,
.install-cost-table tbody tr:hover {
  background: rgba(54, 23, 206, 0.05) !important;
}

.install-cost-table .highlight {
  background: #fff3cd !important;
  font-weight: 600 !important;
  color: #856404 !important;
  border: 1px solid #ffeaa7 !important;
}

@media (min-width: 769px) {
  .phone-rates-table table,
  .install-cost-table table {
    font-size: 1.1rem !important;
    margin: 30px 0 !important;
  }

  .phone-rates-table th,
  .phone-rates-table td,
  .install-cost-table th,
  .install-cost-table td {
    padding: 18px 15px !important;
    font-size: 1rem !important;
    border: 1px solid #d0d0d0 !important;
  }

  .phone-rates-table th,
  .install-cost-table th {
    font-size: 1.1rem !important;
    border-bottom: 3px solid #dee2e6 !important;
  }
}

@media (max-width: 768px) {
  .phone-rates-table,
  .install-cost-table {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .phone-rates-table table,
  .install-cost-table table {
    min-width: 500px !important;
    font-size: 0.9rem !important;
  }

  .phone-rates-table th,
  .phone-rates-table td,
  .install-cost-table th,
  .install-cost-table td {
    padding: 12px 8px !important;
    font-size: 0.85rem !important;
    border: 1px solid #e0e0e0 !important;
    white-space: nowrap !important;
  }
}

.sk-phone-card h3,
.install-cost-card h3 {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-bottom: 15px !important;
  line-height: 1.2 !important;
  word-break: keep-all !important;
  white-space: nowrap !important;
}

.sk-phone-card h3 i,
.install-cost-card h3 i {
  flex-shrink: 0 !important;
  margin-right: 0 !important;
}

@media (min-width: 769px) {
  .sk-phone-card h3,
  .install-cost-card h3 {
    font-size: 1.4rem !important;
    gap: 12px !important;
  }
}

@media (max-width: 768px) and (min-width: 481px) {
  .sk-phone-card h3,
  .install-cost-card h3 {
    font-size: 1.2rem !important;
    gap: 8px !important;
  }
}

@media (max-width: 480px) {
  .sk-phone-card h3,
  .install-cost-card h3 {
    font-size: 1rem !important;
    gap: 6px !important;
  }
}

.sk-phone-card,
.install-cost-card {
  text-align: center !important;
}

.mobile-feature-box.sk-phone-card,
.mobile-feature-box.install-cost-card {
  text-align: center !important;
}

.sk-phone-card h3,
.install-cost-card h3 {
  justify-content: center !important;
}

.sk-phone-card,
.install-cost-card {
  background: white !important;
  border: 2px solid #f0f0f0 !important;
  border-top: 4px solid #3617ce !important;
  border-radius: 15px !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08) !important;
}

.mobile-feature-box.sk-phone-card > p,
.mobile-feature-box.install-cost-card > p {
  font-size: 0.9rem !important;
}

/* ===== MOBILE INQUIRY MODAL ===== */
.mobile-inquiry-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 33.33%;
  float: left;
  padding: 12px 0;
  color: #fff;
  background-color: #eab308;
  border: none;
  font-weight: 600;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.mobile-inquiry-btn:hover {
  background-color: #218838;
}

.mobile-inquiry-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.mobile-modal-content {
  background: white;
  margin: 10% auto;
  padding: 0;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  animation: slideInUp 0.3s ease;
}

@media (min-width: 769px) {
  .mobile-modal-content {
    margin: 1% auto;
    max-width: 500px;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.mobile-modal-header {
  background: #3617ce;
  color: white;
  padding: 15px 20px;
  border-radius: 10px 10px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-inquiry-form {
  padding: 20px;
}

.mobile-form-group {
  margin-bottom: 15px;
}

.mobile-form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #333;
}

.mobile-form-group input {
  width: 100%;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  box-sizing: border-box;
}

.mobile-privacy-check {
  margin: 15px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-submit-btn {
  width: 100%;
  background: #3617ce;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
}

/* ===== INQUIRY SELECT SMALL ===== */
.inquiry-select-small {
  width: 100% !important;
  padding: 16px 20px !important;
  font-size: 1.05rem !important;
  font-weight: 500 !important;
  color: #333 !important;
  background-color: #fff !important;
  border: 2px solid #3617ce !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233617ce' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  background-size: 18px !important;
  padding-right: 45px !important;
}

.inquiry-select-small:hover {
  border-color: #2b10b0 !important;
  box-shadow: 0 2px 8px rgba(54, 23, 206, 0.15) !important;
}

.inquiry-select-small:focus {
  outline: none !important;
  border-color: #3617ce !important;
  box-shadow: 0 0 0 3px rgba(54, 23, 206, 0.2) !important;
}

.inquiry-select-small option:first-child {
  color: #999 !important;
}

.inquiry-select-small option {
  padding: 12px !important;
  font-size: 1rem !important;
  color: #333 !important;
  background: #fff !important;
}

@media (max-width: 768px) {
  .inquiry-select-small {
    width: 50% !important;
    max-width: 50% !important;
    padding: 12px 14px !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    color: #333 !important;
    background-color: #fff !important;
    border: 2px solid #3617ce !important;
    border-radius: 8px !important;
    box-sizing: border-box !important;
    transition: all 0.3s ease !important;
    margin: 0 !important;
    display: block !important;
  }

  .inquiry-select-small:focus {
    outline: none !important;
    border-color: #2b10b0 !important;
    box-shadow: 0 0 0 3px rgba(54, 23, 206, 0.2) !important;
  }

  .inquiry-select-small option {
    padding: 10px 8px !important;
    font-size: 0.9rem !important;
  }
}

@media (max-width: 480px) {
  .inquiry-select-small {
    width: 55% !important;
    max-width: 55% !important;
    padding: 11px 12px !important;
    font-size: 0.9rem !important;
  }
}

@media (max-width: 320px) {
  .inquiry-select-small {
    width: 60% !important;
    max-width: 60% !important;
    padding: 10px 10px !important;
    font-size: 0.85rem !important;
  }
}

/* ===== INQUIRY ALERT MODAL ===== */
.inquiry-alert-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  animation: inquiryFadeIn 0.3s ease;
}

@keyframes inquiryFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.inquiry-modal-content {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  margin: 15% auto;
  padding: 0;
  border-radius: 20px;
  width: 90%;
  max-width: 420px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  animation: inquirySlideIn 0.4s ease;
  overflow: hidden;
}

@keyframes inquirySlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.inquiry-modal-header {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: white;
  padding: 25px;
  text-align: center;
  border-radius: 20px 20px 0 0;
}

.inquiry-modal-header i {
  font-size: 3rem;
  margin-bottom: 10px;
  display: block;
  animation: inquiryPulse 2s infinite;
}

@keyframes inquiryPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.inquiry-modal-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.inquiry-modal-body {
  padding: 30px 25px;
  text-align: center;
}

.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;
}

.contact-box {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border: 2px solid #2196f3;
  border-radius: 15px;
  padding: 20px;
  margin: 15px 0;
}

.sub-message {
  font-size: 0.95rem;
  color: #555;
  margin: 0 0 15px 0;
  line-height: 1.4;
}

.phone-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 15px 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
}

.phone-link:hover {
  background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.5);
}

.phone-link i {
  font-size: 1.2rem;
  animation: inquiryRing 1.5s infinite;
}

@keyframes inquiryRing {
  0%,
  100% {
    transform: rotate(0deg);
  }
  10%,
  30% {
    transform: rotate(-10deg);
  }
  20%,
  40% {
    transform: rotate(10deg);
  }
}

.hours-info {
  font-size: 0.85rem;
  color: #666;
  margin: 10px 0 0 0;
  font-weight: 500;
}

.inquiry-modal-close {
  width: 100%;
  background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
  color: white;
  border: none;
  padding: 18px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.inquiry-modal-close:hover {
  background: linear-gradient(135deg, #5a6268 0%, #495057 100%);
}

.inquiry-modal-close i {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .inquiry-modal-content {
    margin: 25% auto;
    width: 92%;
    max-width: 380px;
  }

  .inquiry-modal-header {
    padding: 20px;
  }

  .inquiry-modal-header i {
    font-size: 2.5rem;
  }

  .inquiry-modal-header h3 {
    font-size: 1.3rem;
  }

  .inquiry-modal-body {
    padding: 25px 20px;
  }

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

  .main-message strong {
    font-size: 1.05rem;
  }

  .contact-box {
    padding: 18px;
  }

  .phone-link {
    padding: 12px 25px;
    font-size: 1.3rem;
  }

  .inquiry-modal-close {
    padding: 15px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .inquiry-modal-content {
    margin: 30% auto;
    width: 95%;
  }

  .inquiry-modal-header {
    padding: 18px;
  }

  .inquiry-modal-header i {
    font-size: 2.2rem;
  }

  .inquiry-modal-header h3 {
    font-size: 1.2rem;
  }

  .inquiry-modal-body {
    padding: 20px 15px;
  }

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

  .contact-box {
    padding: 15px;
  }

  .phone-link {
    padding: 10px 20px;
    font-size: 1.2rem;
  }

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

  .hours-info {
    font-size: 0.8rem;
  }
}

/* ===== SETTOP POPUP ===== */
.settop-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.settop-popup-overlay.hidden {
  display: none;
}

.settop-popup-container {
  background: white;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 420px;
  overflow: hidden;
  animation: settopSlideDown 0.3s ease-out;
}

@keyframes settopSlideDown {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.settop-popup-header {
  background: #4a5568;
  color: white;
  padding: 12px 15px;
  text-align: center;
}

.settop-popup-header h2 {
  font-size: 17px;
  margin-bottom: 2px;
  font-weight: 600;
}

.settop-popup-header p {
  font-size: 12px;
  opacity: 0.9;
}

.settop-popup-content {
  padding: 18px;
}

.settop-notice-box {
  background: #f7fafc;
  border-left: 3px solid #4a5568;
  padding: 10px;
  margin-bottom: 12px;
  border-radius: 3px;
}

.settop-notice-box p {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 5px;
}

.settop-notice-box p:last-child {
  margin-bottom: 0;
}

.settop-price-table {
  margin: 12px 0;
}

.settop-price-item {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 6px;
  padding: 12px;
  margin-bottom: 10px;
  transition: all 0.3s;
}

.settop-price-item:hover {
  border-color: #4a5568;
  box-shadow: 0 2px 8px rgba(74, 85, 104, 0.1);
}

.settop-price-item h3 {
  color: #333;
  font-size: 15px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.settop-price-item h3::before {
  content: "📺";
  margin-right: 6px;
}

.settop-price-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
}

.settop-price-original {
  color: #999;
  text-decoration: line-through;
  font-size: 12px;
}

.settop-price-current {
  color: #4a5568;
  font-size: 20px;
  font-weight: bold;
}

.settop-price-free {
  color: #e53e3e;
  font-size: 20px;
  font-weight: bold;
}

.settop-badge {
  display: inline-block;
  background: #e53e3e;
  color: white;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  margin-left: 6px;
  font-weight: 500;
}

.settop-badge.discount {
  background: #38a169;
}

.settop-note {
  font-size: 11px;
  color: #e53e3e;
  margin-top: 6px;
  font-weight: 600;
  background: #fff5f5;
  padding: 6px 8px;
  border-radius: 4px;
  border-left: 3px solid #e53e3e;
}

.settop-note::before {
  content: "⚠️ ";
  margin-right: 3px;
}

.settop-popup-options {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #e2e8f0;
}

.settop-option-group {
  margin-bottom: 0;
}

.settop-option-group label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 13px;
  color: #555;
  padding: 4px 6px;
  border-radius: 3px;
  transition: background 0.2s;
  user-select: none;
}

.settop-option-group label:hover {
  background: #f7fafc;
}

.settop-option-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  cursor: pointer;
  accent-color: #4a5568;
}

.settop-option-group span {
  white-space: nowrap;
  letter-spacing: -0.2px;
}

.settop-popup-footer {
  padding: 0 18px 18px;
}

.settop-close-btn {
  width: 100%;
  background: #4a5568;
  color: white;
  border: none;
  padding: 11px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.settop-close-btn:hover {
  background: #2d3748;
}

.settop-close-btn:active {
  transform: scale(0.98);
}

@media (max-width: 600px) {
  .settop-popup-container {
    width: 92%;
    max-width: 360px;
  }

  .settop-popup-content {
    padding: 14px;
  }

  .settop-popup-header {
    padding: 10px 12px;
  }

  .settop-popup-header h2 {
    font-size: 15px;
  }

  .settop-popup-header p {
    font-size: 11px;
  }

  .settop-notice-box {
    padding: 8px;
    margin-bottom: 10px;
  }

  .settop-notice-box p {
    font-size: 12px;
  }

  .settop-price-item {
    padding: 10px;
    margin-bottom: 8px;
  }

  .settop-price-item h3 {
    font-size: 13px;
  }

  .settop-price-current,
  .settop-price-free {
    font-size: 18px;
  }

  .settop-badge {
    font-size: 10px;
    padding: 2px 8px;
  }

  .settop-popup-options {
    gap: 6px;
    padding: 6px 0 4px;
    margin-top: 8px;
  }

  .settop-option-group label {
    font-size: 10.5px;
    padding: 2px 4px;
  }

  .settop-option-group input[type="checkbox"] {
    width: 13px;
    height: 13px;
    margin-right: 3px;
  }

  .settop-option-group span {
    letter-spacing: -0.4px;
  }

  .settop-popup-footer {
    padding: 0 14px 14px;
  }

  .settop-close-btn {
    padding: 10px;
    font-size: 13px;
  }
}

.info-card:has(#show-install-area-btn) h3 {
  justify-content: center !important;
  text-align: center !important;
  align-items: center !important;
}

.info-card:has(#show-install-area-btn) h3 i {
  font-size: 1.3rem !important;
}

.info-card:has(#show-install-area-btn) > p {
  text-align: center !important;
}

/* ===== REGION HUB SECTION ===== */
.region-hub-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.region-hub-header {
  text-align: center;
  margin-bottom: 3rem;
}

.region-hub-header h2 {
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.region-hub-header p {
  font-size: 1.1rem;
  color: #6c757d;
}

.region-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.region-hub-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.region-hub-card:hover {
  border-color: #3617ce;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(54, 23, 206, 0.15);
}

.region-hub-card.featured {
  background: linear-gradient(135deg, #fff9e6 0%, #fffbf0 100%);
  border: 2px solid #ffc107;
}

.featured-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #ffc107, #ff9800);
  color: #000;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(255, 193, 7, 0.3);
}

.region-hub-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e9ecef;
}

.region-hub-title h3 {
  font-size: 1.4rem;
  color: #3617ce;
  margin: 0;
  font-weight: 700;
}

.region-count {
  background: #e9ecef;
  color: #495057;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
}

.broadcaster-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.broadcaster-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.broadcaster-link:hover {
  background: #3617ce;
  border-color: #2b10b0;
  transform: translateX(5px);
  box-shadow: 0 3px 10px rgba(54, 23, 206, 0.2);
}

.broadcaster-link:hover .broadcast-name,
.broadcaster-link:hover .coverage {
  color: white;
}

.broadcast-name {
  font-weight: 700;
  font-size: 1rem;
  color: #2c3e50;
  transition: color 0.3s ease;
}

.coverage {
  font-size: 0.85rem;
  color: #6c757d;
  transition: color 0.3s ease;
}

.region-search-cta {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #3617ce;
}

.search-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.search-content h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.3rem;
  color: #2c3e50;
  font-weight: 700;
}

.search-content p {
  margin: 0 0 1rem 0;
  color: #6c757d;
  line-height: 1.6;
}

.search-btn {
  background: linear-gradient(135deg, #3617ce, #4d28d4);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(54, 23, 206, 0.3);
}

.search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(54, 23, 206, 0.4);
}

@media (max-width: 768px) {
  .region-hub-section {
    padding: 2rem 0;
  }

  .region-hub-header h2 {
    font-size: 1.6rem;
  }

  .region-hub-header p {
    font-size: 0.95rem;
  }

  .region-hub-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .region-hub-card {
    padding: 1.5rem;
  }

  .region-hub-title h3 {
    font-size: 1.2rem;
  }

  .broadcaster-link {
    padding: 0.7rem 0.8rem;
  }

  .broadcast-name {
    font-size: 0.9rem;
  }

  .coverage {
    font-size: 0.75rem;
  }

  .region-search-cta {
    flex-direction: column;
    padding: 1.5rem;
    text-align: center;
  }

  .search-icon {
    font-size: 2rem;
  }

  .search-content h4 {
    font-size: 1.1rem;
  }
}

.local-service-area {
  padding: 2rem 0;
  background: #f8f9fa;
}

.local-area-box {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #3617ce;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  max-width: 600px;
  margin: 0 auto;
}

.local-area-box h3 {
  color: #3617ce;
  margin: 0 0 1rem 0;
  font-size: 1.3rem;
}

.local-coverage {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.area-tag {
  background: #3617ce;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
}

.local-area-box p {
  margin: 0;
  color: #6c757d;
}

.local-area-box a {
  color: #3617ce;
  font-weight: 600;
  text-decoration: none;
}

.local-area-box a:hover {
  text-decoration: underline;
}

/* ===== PLAN TYPE SELECTOR ===== */
.plan-type-selector {
  display: flex;
  gap: 15px;
  margin: 12px 0;
  padding: 8px 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  justify-content: center;
  font-size: 14px;
}

.plan-option {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  user-select: none;
}

.plan-option input[type="radio"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.plan-option span {
  color: #333;
  font-weight: 500;
}

.plan-option input[type="radio"]:checked + span {
  color: #e50914;
  font-weight: 600;
}

@media (max-width: 768px) {
  .plan-type-selector {
    font-size: 13px;
    gap: 12px;
  }

  .plan-option input[type="radio"] {
    width: 14px;
    height: 14px;
  }
}

/* ===== BTV PRICE COMPARISON ===== */
.btv-price-comparison-wrapper {
  width: 100%;
  max-width: 800px;
  margin: 40px auto 60px;
  padding: 0 20px;
  text-align: center;
  box-sizing: border-box;
}

.btv-price-comparison-title {
  font-size: clamp(1.3rem, 4vw, 2rem);
  font-weight: 800;
  color: #1e40af;
  margin-bottom: 15px;
  line-height: 1.4;
  text-align: center;
}

.btv-price-comparison-title .highlight {
  color: #3617ce;
  position: relative;
}

.btv-price-comparison-subtitle {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  color: #6b7280;
  margin-bottom: 40px;
  font-weight: 500;
  text-align: center;
}

.btv-price-comparison-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
}

.btv-price-comparison-svg {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}

.btv-bar-a,
.btv-bar-b {
  fill: #e0e0e0;
}

.btv-bar-pop {
  fill: #3617ce;
}

.btv-bar-pop,
.btv-bar-a,
.btv-bar-b {
  transform-origin: bottom center;
  transform-box: fill-box;
  transform: scaleY(0);
}

.btv-chart-animate .btv-bar-pop {
  animation: barStep3Once 3s ease-in-out 0s 1 forwards;
}

.btv-chart-animate .btv-bar-a {
  animation: barStep3Once 3s ease-in-out 0.2s 1 forwards;
}

.btv-chart-animate .btv-bar-b {
  animation: barStep3Once 3s ease-in-out 0.4s 1 forwards;
}

@keyframes barStep3Once {
  0% {
    transform: scaleY(0);
  }
  25% {
    transform: scaleY(0.33);
  }
  35% {
    transform: scaleY(0.33);
  }
  60% {
    transform: scaleY(0.66);
  }
  70% {
    transform: scaleY(0.66);
  }
  100% {
    transform: scaleY(1);
  }
}

.btv-price-text {
  font-size: 16px;
  font-weight: 600;
  fill: #666;
}

.btv-price-pop {
  font-size: 20px;
  font-weight: 700;
  fill: #3617ce;
}

.btv-label-text {
  font-size: 22px;
  font-weight: 700;
  fill: #333;
}

.btv-label-pop {
  font-size: 24px;
  font-weight: 700;
  fill: #3617ce;
}

.btv-detail-text {
  font-size: 12px;
  fill: #666;
}

.btv-detail-text-pop {
  font-size: 12px;
  fill: #3617ce;
  font-weight: 600;
}

.btv-character-image {
  animation: characterBounceSoft 3s ease-in-out infinite;
  filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.15));
}

@keyframes characterBounceSoft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 768px) {
  .btv-price-comparison-wrapper {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .btv-price-comparison-wrapper {
    padding: 0;
    margin: 40px 0 50px;
  }
}

/* ===== PRODUCT INTRO ===== */
.product-intro {
  background: linear-gradient(to bottom, #f8f9ff 0%, #ffffff 100%);
  padding: 50px 20px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.product-intro .intro-container {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.product-intro .intro-title {
  text-align: center;
  font-size: clamp(1.3rem, 4vw, 2rem);
  font-weight: 800;
  color: #1e40af;
  margin-bottom: 10px;
  line-height: 1.4;
}

.product-intro .intro-title .highlight {
  color: #3617ce;
  position: relative;
}

.product-intro .intro-subtitle {
  text-align: center;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  color: #6b7280;
  margin-bottom: 40px;
  font-weight: 500;
}

.product-intro .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
  width: 100%;
  box-sizing: border-box;
}

.product-intro .feature-card {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.product-intro .feature-card:hover {
  border-color: #3617ce;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(54, 23, 206, 0.15);
}

.product-intro .feature-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.product-intro .feature-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 10px;
}

.product-intro .feature-card p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
}

.product-intro .graph-cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
  padding: 0 20px;
  box-sizing: border-box;
}

.product-intro .graph-cta-buttons .button {
  padding: clamp(12px, 3vw, 15px) clamp(25px, 6vw, 35px);
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  font-weight: 700;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
}

.product-intro .graph-cta-buttons .button:first-child {
  background: linear-gradient(135deg, #3617ce 0%, #5a3de8 100%);
  color: #fff;
  border: 2px solid #3617ce;
}

.product-intro .graph-cta-buttons .button:first-child:hover {
  background: linear-gradient(135deg, #2b10b0 0%, #4931d1 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(54, 23, 206, 0.3);
}

.product-intro .graph-cta-buttons .button:last-child {
  background: #fff;
  color: #3617ce;
  border: 2px solid #3617ce;
}

.product-intro .graph-cta-buttons .button:last-child:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(54, 23, 206, 0.2);
}

@media (max-width: 768px) {
  .product-intro {
    padding: 40px 15px;
  }

  .product-intro .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .product-intro .feature-card {
    padding: 25px 15px;
  }

  .product-intro .feature-icon {
    font-size: 2.5rem;
  }

  .product-intro .feature-card h4 {
    font-size: 1.1rem;
  }

  .product-intro .feature-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .product-intro .intro-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .product-intro .features-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 20px;
    width: 100%;
    align-items: center;
  }

  .product-intro .feature-card {
    background: transparent;
    border: none;
    border-bottom: 1px solid #e5e7eb;
    border-radius: 0;
    padding: 15px 10px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
    box-shadow: none;
    transition: none;
    max-width: 400px;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition:
      opacity 0.6s ease,
      transform 0.6s ease;
  }

  .product-intro .feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
  }

  .product-intro .feature-card:nth-child(1) { transition-delay: 0.1s; }
  .product-intro .feature-card:nth-child(2) { transition-delay: 0.2s; }
  .product-intro .feature-card:nth-child(3) { transition-delay: 0.3s; }
  .product-intro .feature-card:nth-child(4) { transition-delay: 0.4s; }
  .product-intro .feature-card:nth-child(5) { transition-delay: 0.5s; }
  .product-intro .feature-card:nth-child(6) { transition-delay: 0.6s; }

  .product-intro .feature-card:last-child {
    border-bottom: none;
  }

  .product-intro .feature-card:hover {
    transform: none;
    border-color: #e5e7eb;
    box-shadow: none;
  }

  .product-intro .feature-icon {
    font-size: 2rem;
    margin-bottom: 0;
    flex-shrink: 0;
    width: 50px;
    text-align: center;
    padding-top: 3px;
  }

  .product-intro .feature-card > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .product-intro .feature-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 5px;
  }

  .product-intro .feature-card p {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
  }

  .product-intro .graph-cta-buttons {
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition:
      opacity 0.6s ease 0.7s,
      transform 0.6s ease 0.7s;
  }

  .product-intro .graph-cta-buttons.animate-in {
    opacity: 1;
    transform: translateY(0);
  }

  .product-intro .graph-cta-buttons .button {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .product-intro {
    padding: 30px 0;
  }

  .product-intro .feature-card {
    padding: 12px 5px;
    gap: 12px;
  }

  .product-intro .feature-icon {
    font-size: 1.8rem;
    width: 45px;
  }

  .product-intro .feature-card h4 {
    font-size: 0.95rem;
  }

  .product-intro .feature-card p {
    font-size: 0.8rem;
  }
}

/* ===== EVENT INFO SECTION ===== */
.event-info-section {
  padding: 30px 0;
  width: 100%;
  box-sizing: border-box;
}

.event-info-section .container {
  max-width: 750px;
  padding: 0 15px;
  margin: 0 auto;
  box-sizing: border-box;
}

.event-info-box {
  background: #fff;
  border: 2px solid #3617ce;
  border-radius: 12px;
  padding: 20px 18px;
  box-shadow: 0 4px 12px rgba(54, 23, 206, 0.1);
  box-sizing: border-box;
}

.event-info-header {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e5e7eb;
}

.event-info-header h3 {
  font-size: clamp(1.05rem, 3.5vw, 1.4rem);
  font-weight: 800;
  color: #1e40af;
  margin: 0;
}

.event-info-list {
  margin-bottom: 20px;
}

.event-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #f3f4f6;
  box-sizing: border-box;
}

.event-info-item:last-child {
  border-bottom: none;
}

.event-info-item.highlight {
  background: #fef3e6;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ffa500;
  margin: 8px 0;
  box-sizing: border-box;
}

.event-check {
  color: #3617ce;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.event-text {
  font-size: clamp(0.8rem, 2.2vw, 0.92rem);
  color: #374151;
  line-height: 1.6;
  flex: 1;
  word-break: keep-all;
}

.event-text strong {
  color: #1e40af;
  font-weight: 700;
}

.event-info-item.highlight .event-text strong {
  color: #dc2626;
}

.event-info-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 2px solid #e5e7eb;
  flex-wrap: wrap;
}

.event-btn {
  padding: 10px 18px;
  border-radius: 8px;
  font-size: clamp(0.85rem, 2.2vw, 0.92rem);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  box-sizing: border-box;
}

.event-btn.primary {
  background: #3617ce;
  color: #fff;
  border: 2px solid #3617ce;
}

.event-btn.primary:hover {
  background: #2b10b0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(54, 23, 206, 0.3);
}

.event-btn.secondary {
  background: #fff;
  color: #3617ce;
  border: 2px solid #3617ce;
}

.event-btn.secondary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .event-info-section {
    padding: 25px 0;
  }

  .event-info-box {
    padding: 16px 14px;
  }

  .event-info-item {
    padding: 9px 0;
  }

  .event-info-item.highlight {
    padding: 9px;
  }

  .event-info-buttons {
    flex-direction: column;
    gap: 8px;
  }

  .event-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .event-info-section {
    padding: 20px 0;
  }

  .event-info-box {
    padding: 14px 12px;
    border-radius: 8px;
  }

  .event-info-header {
    margin-bottom: 15px;
    padding-bottom: 12px;
  }

  .event-info-item {
    gap: 8px;
    padding: 8px 0;
  }

  .event-info-item.highlight {
    padding: 8px;
  }

  .event-info-buttons {
    margin-top: 15px;
    padding-top: 12px;
  }
}

/* ===== BTV FLOW SVG ===== */
.btv-flow-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 50px auto;
  padding: 0 16px;
  box-sizing: border-box;
  text-align: center;
  overflow-x: hidden;
}

.btv-flow-title {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 800;
  color: #111827;
  margin-bottom: 10px;
}

.btv-flow-title .highlight {
  color: #3617ce;
}

.btv-flow-subtitle {
  font-size: clamp(0.9rem, 2.4vw, 1.05rem);
  color: #6b7280;
  margin-bottom: 28px;
}

.btv-flow-container {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  box-sizing: border-box;
}

.btv-flow-svg {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.btv-flow-svg text {
  font-family:
    "Noto Sans KR",
    -apple-system,
    BlinkMacSystemFont,
    system-ui,
    sans-serif;
  letter-spacing: -0.03em;
}

#btv-flow-line-top,
#btv-flow-line-bottom {
  animation: btv-flow-line 2.5s ease-in-out infinite;
}

#btv-flow-line-bottom {
  animation-delay: 0.3s;
}

#btv-flow-arrow-top,
#btv-flow-arrow-bottom {
  animation: btv-flow-arrow 2.5s ease-in-out infinite;
}

#btv-flow-arrow-bottom {
  animation-delay: 0.3s;
}

@keyframes btv-flow-line {
  0% {
    stroke-dashoffset: 180;
  }
  55% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes btv-flow-arrow {
  0% {
    opacity: 0;
    transform: translateX(-180px);
  }
  10% {
    opacity: 1;
  }
  55% {
    opacity: 1;
    transform: translateX(0px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}

@media (max-width: 768px) {
  .btv-flow-wrapper {
    margin: 40px auto;
    padding: 0 14px;
  }
}

@media (max-width: 480px) {
  .btv-flow-wrapper {
    margin: 30px auto;
    padding: 0 10px;
  }

  .btv-flow-subtitle {
    margin-bottom: 22px;
  }
}

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

.quick-benefit-inner {
  max-width: 1200px;
  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: 140px;
  border-radius: 18px;
  padding: 26px 28px;
  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(1.08rem, 2vw, 1.3rem);
  font-weight: 800;
  color: #111827;
  margin: 0 0 8px;
}

.quick-benefit-desc {
  margin: 0;
  font-size: clamp(0.85rem, 1.7vw, 0.98rem);
  color: #4b5563;
  line-height: 1.5;
}

.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;
  }
}

.card-modal-wrapper {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.card-modal-wrapper.is-open {
  display: flex;
}

.card-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.card-modal-box {
  position: relative;
  max-width: 640px;
  width: calc(100% - 40px);
  max-height: 80vh;
  background: #ffffff;
  border-radius: 18px;
  padding: 22px 22px 24px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.25);
  overflow-y: auto;
  box-sizing: border-box;
}

.card-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: transparent;
  font-size: 1.6rem;
  cursor: pointer;
  color: #9ca3af;
  line-height: 1;
}

#modal-region .card-modal-box {
  max-width: 720px;
}

#modal-region .card-modal-title {
  margin-bottom: 8px;
}

#modal-region .card-modal-body {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.7;
}

@media (min-width: 768px) {
  #modal-region .card-modal-body {
    column-count: 2;
    column-gap: 32px;
  }
}

#modal-region .card-modal-body strong {
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef2ff;
  color: #1d4ed8;
  font-size: 0.85rem;
}

#modal-region .card-modal-body p {
  margin: 0;
  word-break: keep-all;
}

@media (max-width: 480px) {
  #modal-region .card-modal-body {
    column-count: 1;
    font-size: 0.85rem;
  }

  #modal-region .card-modal-body strong {
    margin-top: 8px;
    font-size: 0.83rem;
  }
}

/* ===== BTVPOP FAQ ===== */
.btvpop-faq-section {
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.btvpop-faq-title {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 800;
  color: #111827;
  text-align: center !important;
  margin-bottom: 6px;
}

.btvpop-faq-subtitle {
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  color: #6b7280;
  margin-bottom: 18px;
  text-align: center !important;
}

.btvpop-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btvpop-faq-item {
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  background: #ffffff;
}

.btvpop-faq-item-header {
  width: 100%;
  padding: 14px 16px;
  background: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  box-sizing: border-box;
}

.btvpop-faq-question {
  font-size: clamp(0.95rem, 2.4vw, 1.05rem);
  font-weight: 700;
  color: #111827;
  text-align: left;
}

.btvpop-faq-toggle-icon {
  font-size: 1.1rem;
  color: #9ca3af;
  margin-left: 12px;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
}

.btvpop-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  background: #f5f5f5;
}

.btvpop-faq-answer-inner {
  padding: 12px 16px 14px;
  text-align: left;
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.7;
}

.btvpop-faq-answer-inner p {
  margin: 0 0 8px;
}

.btvpop-faq-answer-inner ul {
  margin: 0 0 8px 18px;
  padding: 0;
}

.btvpop-faq-answer-inner li {
  margin-bottom: 4px;
}

.btvpop-faq-cta {
  margin-top: 8px;
  font-size: 0.88rem;
  color: #4b5563;
}

.btvpop-faq-item.open .btvpop-faq-answer {
  max-height: 600px;
}

.btvpop-faq-item.open .btvpop-faq-toggle-icon {
  transform: rotate(45deg);
  color: #4f46e5;
}

@media (max-width: 600px) {
  .btvpop-faq-section {
    margin: 30px auto;
    padding: 0 12px;
  }

  .btvpop-faq-answer-inner {
    font-size: 0.86rem;
  }
}

/* ===== BTVPOP HIGHLIGHT SECTION ===== */
.btvpop-highlight-section {
  width: 100%;
  padding: 40px 0 20px;
  box-sizing: border-box;
}

.btvpop-highlight-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 20px;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  background: #f5f7ff;
  border-radius: 24px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.btvpop-highlight-text {
  flex: 1 1 0;
  text-align: left;
  margin-top: -5px;
}

.btvpop-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e0e7ff;
  color: #3730a3;
  font-size: clamp(0.7rem, 1.5vw, 0.8rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.btvpop-highlight-title {
  font-size: clamp(0.95rem, 2.8vw, 1.9rem);
  line-height: 1.3;
  font-weight: 800;
  color: #111827;
  margin: 0;
  word-break: keep-all;
}

.btvpop-highlight-title span {
  color: #3617ce;
}

.btvpop-highlight-visual {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.btvpop-character-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #ffffff, #dbe3ff);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.btvpop-character-img {
  max-width: 130%;
  height: auto;
  transform: translateY(8px);
}

.btvpop-tag {
  padding: 4px 10px;
  border-radius: 999px;
  background: #111827;
  color: #f9fafb;
  font-size: 0.75rem;
  font-weight: 700;
}

@media (max-width: 900px) {
  .btvpop-highlight-inner {
    gap: 20px;
    padding: 24px 18px;
  }

  .btvpop-character-circle {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 768px) {
  .btvpop-highlight-inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 16px;
    text-align: left;
  }

  .btvpop-highlight-text {
    text-align: left;
    margin-top: -3px;
  }

  .btvpop-character-circle {
    width: 130px;
    height: 130px;
  }

  .btvpop-character-img {
    max-width: 120%;
    transform: translateY(6px);
  }
}

@media (max-width: 480px) {
  .btvpop-highlight-inner {
    padding: 16px 12px;
    border-radius: 18px;
    gap: 12px;
  }

  .btvpop-highlight-text {
    margin-top: -2px;
  }

  .btvpop-character-circle {
    width: 110px;
    height: 110px;
  }

  .btvpop-tag {
    font-size: 0.7rem;
    padding: 3px 8px;
  }
}

/* ===== BTVPOP EXTRA SECTION ===== */
.btvpop-extra-section {
  width: 100%;
  padding: 60px 0 10px;
  box-sizing: border-box;
}

.btvpop-extra-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.btvpop-extra-section-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #111827;
  text-align: center;
  margin: 0 0 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid #e5e7eb;
}

.btvpop-extra-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.btvpop-extra-card {
  border: none;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.06);
  cursor: pointer;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
}

.btvpop-extra-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.15);
  border-color: #4f46e5;
}

.btvpop-extra-card:focus-visible {
  outline: 2px solid #4f46e5;
  outline-offset: 3px;
}

.btvpop-extra-card--link {
  background: linear-gradient(135deg, #eef2ff 0%, #ffffff 100%);
  border: 1px solid #c7d2fe;
}

.btvpop-extra-card--link:hover {
  border-color: #4f46e5;
}

.btvpop-extra-text {
  flex: 1;
  order: 1;
  margin-right: 14px;
  text-align: left !important;
}

.btvpop-extra-text h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: #111827;
  text-align: left !important;
}

.btvpop-extra-text p {
  font-size: 0.86rem;
  color: #4b5563;
  line-height: 1.5;
  margin: 0;
  text-align: left !important;
}

.btvpop-extra-icon {
  flex-shrink: 0;
  order: 2;
}

.btvpop-extra-icon img {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.btvpop-extra-text h3 br,
.btvpop-extra-text p br {
  display: none;
}

@media (max-width: 1024px) {
  .btvpop-extra-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .btvpop-extra-section {
    padding: 40px 0 5px;
  }

  .btvpop-extra-section-title {
    font-size: 1.25rem;
    margin-bottom: 24px;
    padding-bottom: 12px;
  }

  .btvpop-extra-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .btvpop-extra-card {
    padding: 16px 14px;
    align-items: center;
  }

  .btvpop-extra-text {
    margin-right: 12px;
  }

  .btvpop-extra-text h3 {
    font-size: 0.95rem;
  }

  .btvpop-extra-text p {
    font-size: 0.82rem;
  }

  .btvpop-extra-icon img {
    width: 44px;
    height: 44px;
  }

  .btvpop-extra-text h3 br,
  .btvpop-extra-text p br {
    display: inline;
  }
}

.btvpop-extra-modal {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  font-family: "Noto Sans KR", sans-serif;
}

.btvpop-extra-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
}

.btvpop-extra-modal-box {
  position: relative;
  max-width: 720px;
  width: calc(100% - 40px);
  max-height: 80vh;
  background: #ffffff;
  border-radius: 18px;
  padding: 22px 22px 18px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.35);
  overflow-y: auto;
  box-sizing: border-box;
  z-index: 1;
}

.btvpop-extra-modal-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 14px;
}

.btvpop-extra-modal-body {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.6;
}

.btvpop-extra-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: transparent;
  font-size: 1.6rem;
  cursor: pointer;
  color: #9ca3af;
  line-height: 1;
}

.btvpop-extra-modal-close:hover {
  color: #4b5563;
}

.btvpop-extra-modal-footer {
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;
}

.btvpop-extra-modal-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.35);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btvpop-extra-modal-call:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(22, 163, 74, 0.45);
}

@media (max-width: 480px) {
  .btvpop-extra-modal-box {
    width: calc(100% - 24px);
    padding: 18px 14px 14px;
    border-radius: 14px;
  }

  .btvpop-extra-modal-title {
    font-size: 1.02rem;
  }

  .btvpop-extra-modal-body {
    font-size: 0.85rem;
  }

  .btvpop-extra-modal-footer {
    justify-content: center;
  }

  .btvpop-extra-modal-call {
    width: 100%;
    max-width: 260px;
  }
}

/* ===== DISCOUNT BENEFIT SECTION ===== */
.discount-benefit-section {
  width: 100%;
  padding: 60px 0 40px;
  box-sizing: border-box;
  background: #f9fafb;
}

.discount-benefit-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.discount-benefit-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #111827;
  text-align: center;
  margin: 0 0 12px;
}

.discount-benefit-title .highlight {
  color: #3617ce;
}

.discount-benefit-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #6b7280;
  text-align: center;
  margin: 0 0 40px;
}

.discount-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(54, 23, 206, 0.15);
  border-color: #3617ce;
}

.benefit-text {
  flex: 1;
  text-align: left;
}

.benefit-text h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 6px;
}

.benefit-text p {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0 0 12px;
  line-height: 1.4;
}

.benefit-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  color: #3617ce;
  font-weight: 600;
}

.benefit-icon {
  flex-shrink: 0;
  margin-left: 16px;
}

.benefit-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .discount-benefit-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .discount-benefit-section {
    padding: 40px 0 30px;
  }

  .discount-benefit-subtitle {
    margin-bottom: 28px;
  }

  .benefit-card {
    padding: 18px 16px;
  }

  .benefit-text h3 {
    font-size: 1rem;
  }

  .benefit-text p {
    font-size: 0.85rem;
  }

  .benefit-icon img {
    width: 50px;
    height: 50px;
  }
}

/* ===== MOBILE SERVICE SECTION ===== */
.mobile-service-section {
  display: none;
}

@media (max-width: 768px) {
  .features {
    display: none !important;
  }

  .mobile-service-section {
    display: block !important;
  }

  .mobile-image-carousel {
    width: 100%;
    height: 220px;
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .service-image-swiper {
    width: 100%;
    height: 100%;
  }

  .service-image-swiper .swiper-wrapper {
    height: 100%;
  }

  .service-image-swiper .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .slide-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }

  .slide-content {
    width: 100%;
    height: 100%;
    position: relative;
  }

  .slide-content video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .slide-bg-1,
  .slide-bg-2,
  .slide-bg-3 {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .slide-bg-1 {
    background-image: url("../img/event02_mobile.png");
  }

  .slide-bg-2 {
    background-image: url("../img/event1234_mobile.png");
  }

  .slide-bg-3 {
    background-image: url("../img/event01_mobile.png");
  }

  .service-image-swiper .swiper-pagination {
    bottom: 15px !important;
    position: absolute;
    z-index: 10;
  }

  .service-image-swiper .swiper-pagination-bullet {
    background: white;
    opacity: 0.6;
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }

  .service-image-swiper .swiper-pagination-bullet-active {
    background: white;
    opacity: 1;
    width: 24px;
    border-radius: 4px;
  }

  .mobile-text-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .mobile-text-card {
    background: white;
    padding: 18px 16px;
    border-radius: 15px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    opacity: 0;
    animation: dropDownCard 0.8s ease-out forwards;
  }

  .text-card-1 { animation-delay: 0.2s; }
  .text-card-2 { animation-delay: 0.4s; }
  .text-card-3 { animation-delay: 0.6s; }

  @keyframes dropDownCard {
    0% {
      opacity: 0;
      transform: translateY(-50px);
    }
    60% {
      transform: translateY(8px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .mobile-text-card h3 {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
  }

  .card-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    object-fit: contain;
  }

  .mobile-text-card p {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #666;
    margin-bottom: 14px;
  }

  .mobile-button {
    display: inline-block;
    padding: 10px 20px;
    background: #3617ce;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
  }

  .mobile-button:hover {
    background: #2910a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(54, 23, 206, 0.3);
  }

  .slide-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    cursor: pointer;
  }

  .slide-link .slide-content {
    width: 100%;
    height: 100%;
    transition:
      transform 0.3s,
      opacity 0.3s;
  }

  .slide-link:active .slide-content {
    transform: scale(0.98);
    opacity: 0.9;
  }
}

/* ===== CONTACT WRAPPER (REFINED) ===== */
.contact-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 50px 40px;
  background: #fafbff;
  border: 1px solid #e0e4f5;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.contact-wrapper:hover {
  border-color: #3617ce;
  box-shadow: 0 4px 20px rgba(54, 23, 206, 0.1);
}

.contact-left {
  flex: 1;
  text-align: left;
}

.contact-description {
  font-size: 22px;
  font-weight: 500;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
}

.contact-link {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: #3617ce;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: #5a3edb;
  transform: translateX(5px);
}

.contact-right {
  flex-shrink: 0;
}

.contact-icon {
  width: 180px;
  height: auto;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.contact-icon:hover {
  opacity: 1;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: row !important;
    align-items: center;
    justify-content: space-between;
    padding: 22px 18px;
    gap: 14px;
  }

  .contact-left {
    flex: 1 1 auto;
  }

  .contact-right {
    flex: 0 0 auto;
  }

  .contact-right img {
    width: 90px;
    height: auto;
  }

  .contact-left p {
    font-size: 1.1rem;
    line-height: 1.35;
    margin-bottom: 10px;
  }

  .contact-link {
    font-size: 0.95rem;
  }

  .contact-description {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .contact-icon {
    width: 100px;
  }
}

@media (max-width: 480px) {
  .contact-wrapper {
    padding: 25px 15px;
    gap: 15px;
  }

  .contact-description {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .contact-link {
    font-size: 15px;
  }

  .contact-icon {
    width: 80px;
  }
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.user-message {
  background: linear-gradient(135deg, #4527a0 0%, #5e35b1 100%);
  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: #f8f9fa;
  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: linear-gradient(135deg, #4527a0 0%, #5e35b1 100%);
  color: white;
  border: none;
  font-weight: 500;
}

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

.chat-input-container {
  display: flex;
  gap: 8px;
  padding: 15px;
  background: #f8f9fa;
  border-top: 1px solid #dee2e6;
}

.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: #f8f9fa;
  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);
}

.kakao-btn {
  background: #fee500;
  color: #000000;
}

.kakao-btn:hover {
  background: #fada0a;
}

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

.consult-btn:hover {
  background: #0056b3;
}

.phone-btn {
  background: #28a745;
  color: #ffffff;
}

.phone-btn:hover {
  background: #218838;
}

@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;
  }
}
