/* 기본 설정 */
/* Reset & Base Styles */
@font-face {
  font-family: "Pretendard";
  src: url("./font/Pretendard-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("./font/Pretendard-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("./font/Pretendard-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("./font/Pretendard-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
} 

@font-face {
  font-family: "Pretendard";
  src: url("./font/Pretendard-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
} 

@font-face {
  font-family: "Pretendard";
  src: url("./font/Pretendard-Black.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
} 

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Pretendard', sans-serif;
}

body {
    color: #333;
    line-height: 1.5;
    background-color: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
 
}

/* 헤더 */
/* 헤더 전체 틀 */
header {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: center;
    transition: all 0.3s ease; /* 위치, 배경색이 부드럽게 변하도록 추가 */
    background: transparent;
}

/* 내부 콘텐츠 영역 (간격 유지용) */
.header-inner {
    background: #ffffffab;
    backdrop-filter: blur(10px);
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    width: 90%;
    max-width: 1200px; /* ★ 이 최대 넓이가 내용을 잡아줍니다 */
    box-shadow: 7px 6px 12px 0px rgb(247 212 247);
    transition: all 0.3s ease;
}

/* ================= 스크롤 시 변경될 디자인 ================= */

/* 1. 바깥쪽 전체 헤더 배경이 생기며 상단에 딱 붙음 */
header.scrolled {
    top: 0;
    background: rgba(255, 255, 255, 60%);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* 2. 내부 요소는 넓이를 그대로 유지한 채 자신의 배경과 그림자만 투명하게 숨김 */
header.scrolled .header-inner {
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    /* width와 max-width는 원래 값을 그대로 유지하므로 로고와 버튼 위치가 움직이지 않습니다 */
}




.logo {
    font-weight: 800;
    font-size: 1.2rem;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo img {
    width: 128px;
    padding-top: 8px;
}

.logo-icon {
    color: #2b6cb0;
}

nav {
    display: flex;
    gap: 80px;
}

nav a {
    font-size: 16px;
    font-weight: 600;
    color: #555;
    transition: color 0.2s;
}

nav a:hover {
    color: #7b61ff;
}

.inqu{
  display: inline-block;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    background: #8b5cf6;
    position: relative;
    overflow: hidden;  
}

.inqu::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s ease-in-out infinite;
}







/* --------------------------------------
1. 메인 히어로 섹션 (요청하신 코드 반영)
-------------------------------------- */
.hero {
    /* background: linear-gradient(135deg, #fceeff 0%, #e8f0ff 100%); (기존 코드 주석처리) */
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;

    background-image: url(./images/main_bg.png); /* 사용자가 추가한 백그라운드 적용 */
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    width: 100%;
    height: 100dvh;
    display: flex;
    align-items: center;
    background-color: #f7eaff; /* 백그라운드 이미지가 없을 경우를 대비한 핑크빛 컬러 */
    padding-top: 5rem;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
   
}

.hero-text {
    flex: 1;
    z-index: 10;
}

.highlight-text { color: #6000E0;; font-weight: 600; font-size: 1.3rem; margin-bottom: 30px; }
.hero h1 { font-size: 3.5rem; font-weight: 600; line-height: 1.2; margin-bottom: 35px; color: #2a0882; }
.bold-title { font-weight: 700; color: #954FFA;; }
.desc { font-size: 1.3rem; color: #222; margin-bottom: 40px; line-height: 1.5; font-weight: 500; }

.btn-group { display: flex; gap: 15px; }
.btn-group i { padding-right: 10px; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 15px 30px; border-radius: 50px; font-weight: 700; font-size: 18px; transition: all 0.3s ease; cursor: pointer; }
.btn-primary { background-color: #8b5cf6; color: #fff; box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4); }
.btn-primary:hover { background-color: #7c3aed; transform: translateY(-2px); }
.btn-secondary { background-color: #fff; color: #5b21b6; }
.btn-secondary:hover { background-color: #c4b5fd; transform: translateY(-2px); }

/* --------------------------------------
   오른쪽 이미지 그룹 애니메이션 및 배치
-------------------------------------- */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 650px; /* 전체 이미지 그룹의 최대 너비 */
    height: 100%;
}

/* 1. 배경 CRM 이미지 */
.img-crm {
    width: auto;
    display: block;
    position: relative;
    z-index: 1;
}

/* 2. 전경 트럭 이미지 */
.img-car {
    position: absolute;
    left: -5%;
    bottom: -10%;
    width: auto; /* 부모(CRM) 대비 크기 비율 */
    z-index: 10;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15)); /* 트럭 그림자 강조 */
}

/* 3. 아이콘 공통 위치 잡아주는 래퍼 (AOS 등장 애니메이션용) */
.icon-wrapper {
    position: absolute;
    z-index: 15;
}

/* 아이콘 개별 위치 (시안 기준 비율로 맞춤) */
.ic01-wrapper { left: -5%; top: 40%; width: 14%; } /* 바구니 */
.ic02-wrapper { left: 25%; top: 25%; width: 13%; } /* 확성기 */
.ic03-wrapper { left: 45%; top: 48%; width: 13%; } /* 파란가방 */
.ic04-wrapper { left: 25%; top: 58%; width: 15%; } /* 선물 */

/* 실제 아이콘 이미지에 무한 둥둥 애니메이션 적용 */
.img-icon {
    width: 100%;
    display: block;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

.ic01-wrapper .img-icon { animation: floating 3s ease-in-out infinite; }
.ic02-wrapper .img-icon { animation: floating 3.5s ease-in-out infinite 0.5s; }
.ic03-wrapper .img-icon { animation: floating 4s ease-in-out infinite 1s; }
.ic04-wrapper .img-icon { animation: floating 3.2s ease-in-out infinite 1.5s; }

/* 4. 반짝이는 빛 공통 래퍼 (AOS 등장 애니메이션용) */
.light-wrapper {
    position: absolute;
    z-index: 20;
}

.light01-wrapper { left: -15%; top: 55%; width: 25%; }
.light02-wrapper { right: 5%; top: 0%; width: 8%; }

/* 빛 무한 반짝임 애니메이션 */
.img-light {
    width: 100%;
    display: block;
}

.light01-wrapper .img-light { animation: shining 2.5s ease-in-out infinite alternate; }
.light02-wrapper .img-light { animation: shining 2s ease-in-out infinite alternate 1s; }


/* --------------------------------------
   애니메이션 Keyframes
-------------------------------------- */
/* 둥둥 뜨는 효과 (Y축 이동) */
@keyframes floating {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

/* 반짝이는 효과 (투명도와 크기 조절) */
@keyframes shining {
    0% { opacity: 0.3; transform: scale(0.8) rotate(0deg); }
    100% { opacity: 1; transform: scale(1.2) rotate(10deg); }
}











/* ------------2번 카드 섹션 -------------------------*/
.cards-section {
    padding-top: 120px;
    background-color: #fff;
    text-align: center;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 60px;
    line-height: 1.4;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.card:hover {
    transform: translateY(-10px);
}

.card-top {
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 30px;
}

.bg-blue { background-color: #e0e7ff; }
.bg-yellow { background-color: #fef3c7; }
.bg-pink { background-color: #fce7f3; }

.card-badge {
    /* background: rgba(255,255,255,0.8); */
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.2rem;
    color: #333;
}

.card-img-placeholder {
    height: 336px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: #aaa;
    border-bottom: 1px solid #eee;
}

.card-body {
    padding: 6px 10px;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}










/* --------------------------------------
   3. 모바일 연동 안내 섹션
-------------------------------------- */
.mobile-section {
    padding-top: 120px;
    background-color: #111; /* 상위 컨텍스트에 따라 변경 가능, 현재는 다크/블랙 톤으로 텍스트가 잘 보이도록 배경을 흰색으로 지정하거나 시안에 맞게 조정 */
    background-color: #fff;
}

/* 상단 헤더 텍스트 */
.mobile-header {
    text-align: center;
    margin-bottom: 60px;
}

.mobile-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.mobile-header p {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.6;
}

/* 카드 그리드 레이아웃 */
.mobile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* 공통 카드 스타일 */
.m-card {
    border-radius: 40px;
    padding: 50px 40px 0; /* 카드가 이미지를 품고 하단에 닿도록 bottom padding 0 */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
    position: relative;
}

/* 시안 컬러 팔레트 */
.card-cyan { background-color: #f0fbfa; }
.card-purple { background-color: #f7f3ff; }
.card-mint { background-color: #e8f8f2; }

/* 텍스트 스타일 */
.m-card-text {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.6;
    color: #222;
    margin-bottom: 80px;
    word-break: keep-all;
}

.m-card-text strong {
    font-weight: 800;
}

/* 하이라이트 컬러 */
.text-green { color: #059669; }
.text-red { color: #dc2626; }
.text-blue { color: #2563eb; }

/* 이미지 영역 공통 래퍼 */
.m-card-img-wrap {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-grow: 1; /* 남은 공간 채우기 */
}

/* 하단 와이드 카드 전용 스타일 */
.full-width {
    grid-column: 1 / -1; /* 두 칸 모두 차지 */
    flex-direction: row;
    padding: 70px 50px;
    text-align: left;
    align-items: center;
    justify-content: space-between;
}

.m-card-left {
    /* flex: 1; */
    display: flex;
    flex-direction: column;
    gap: 40px;
    background: #cef0e3;
    padding: 30px;
    border-radius: 20px;
}

.m-card-title h3 {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.5;
    color: #111;
}

.m-card-mid {
    flex: 1.2;
    padding: 0 30px;
    text-align: right;
}

.m-card-mid p {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.6;
    color: #222;
}

.m-card-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    /* align-items: flex-end; */
    height: 100%;
    margin-bottom: -50px; /* 이미지가 하단에 딱 붙도록 마진 조정 */
}

/* --------------------------------------
   이미지 플레이스홀더 및 애니메이션
   (실제 이미지 삽입 시 .img-placeholder 클래스 제거 후 img 태그 사용)
-------------------------------------- */
.img-placeholder {
    /* background: #fff; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-weight: bold;
    font-size: 0.9rem;
    /*  border: 2px dashed #ccc;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);*/
}

/* 핸드폰 목업 형태 임시 스타일 */
.mock-phone {
    /*width: 260px;*/
    height: 340px;
    border-radius: 30px 30px 0 0;
    /*border: 8px solid #333;*/
    /*border-bottom: none;*/
}

/* 클립보드 아이콘 형태 임시 스타일 */
.mock-icon {
    width: 100px;
    height: 100px;
    border-radius: 20px;
}

.m-pop{
   position: absolute;
    right: -60px;
    top: 80px; 
}

.m-pop2{
   position: absolute;
    right: -30px;
    top: 130px; 
}

.m-pop3{
   position: absolute;
    right: 70px;
    top: 30px; 
}




/* 둥둥 떠다니는 애니메이션 (요청사항 반영) */
.anim-float {
    animation: floating 3.5s ease-in-out infinite;
}

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


.anim-float-phone{
    animation: floatPhone 4s ease-in-out infinite;
}

.anim-delayed-pop{
    animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.8s, floatPop 3.3s ease-in-out infinite 1.3s;
}






/* =========================================
   4. 회사 대표번호 직원들과 공유하기 Section
========================================= */
.share-section {
  padding: 120px 0;
  background-color: #ffffff;
  text-align: center;
}

.share-header {
  margin-bottom: 40px;
}


.share-header .section-title .sub-weight {
  font-weight: 600;
  color: #444;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.6;
}

.type-badge-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: -20px; /* 카드가 뱃지 위로 살짝 올라가거나 간격을 좁히기 위함 */
  position: relative;
  z-index: 2;
}

.type-badge {
  background-color: #2b2b2b;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 8px;
  letter-spacing: -0.5px;
}

.share-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.share-card {
  background-color: #f7f7f9;
  border-radius: 20px;
  padding: 40px 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.share-card:hover {
  transform: translateY(-5px);
}



.card-image-box {
  background-color: #ffffff;
  width: 100%;
  border-radius: 16px;
  padding: 30px 10px;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 220px; /* 일러스트 높이에 맞춰 조절하세요 */
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.card-image-box img {
  max-width: 100%;
  height: auto;
}

.card-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  word-break: keep-all;
}

.card-desc strong {
  font-weight: 800;
  color: #111;
}

/* 딜레이 클래스 (기존 소스에 없다면 추가) */
.delay-0 { animation-delay: 0s; }
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }






/* =========================================
   5. 통합채팅상담 Section
========================================= */
.chat-section {
    padding: 120px 0;
    text-align: center;
    overflow: hidden; /* 팝업 이미지가 영역 밖으로 나가는 것 방지 */
    background: #F2F5FF;
}

.chat-header {
    margin-bottom: 30px;
}

.chat-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #333; /* 시안처럼 어두운 텍스트 톤 */
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.chat-subtitle {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.6;
    font-weight: 500;
}

/* 비주얼 래퍼: 하위 absolute 요소들의 기준점 */
.chat-visual-wrap {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 모니터 컨테이너 (빛 번짐 효과 포함) */
.monitor-wrap {
    position: relative;
    width: 100%;
    z-index: 1;
}

/* 모니터 뒤쪽 부드러운 푸른빛 글로우 효과 */
.monitor-wrap::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 105%;
    height: 105%;
    background: radial-gradient(circle, rgba(138, 169, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    border-radius: 30px;
    filter: blur(20px);
}

.img-monitor {
    width: 100%;
    display: block;
    border-radius: 20px; /* 이미지 모서리 둥글게 */
}

/* 우측 팝업 이미지 */
.img-popup {
    position: absolute;
    right: -12%; /* 우측으로 삐져나오게 배치 */
    bottom: -10%;
    width: 32%; /* 전체 비주얼 대비 크기 비율 */
    z-index: 10;
    
}

/* 중앙 아이콘 그룹 */
.center-icons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 0px; /* 아이콘 사이 간격 */
    z-index: 15;
}

/* 개별 아이콘 스타일 (이미지 자체에 여백이 없다면 원형 틀 생성) */
.c-icon {
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.c-icon img {
    width: 100%;
    height: auto;
    display: block;
}




/* =========================================
   6. 쇼핑몰 맞춤 고객관리프로그램 Section
========================================= */
.crm-section {
    padding-top: 120px;
   /* background-color: #050505;*/ /* 상단 섹션과 이어지는 어두운 배경 */
    overflow: hidden;
}

/* 헤더 영역 스타일 */
.crm-header {
    text-align: center;
    margin-bottom: 60px;
}

.crm-title-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: #444444; /* 시안 특유의 어두운 그레이 톤 */
    letter-spacing: -0.03em;
    margin-bottom: 5px;
}

.crm-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3b5afc; /* 강조용 비비드 블루/퍼플 */
    letter-spacing: -0.02em;
    margin-bottom: 25px;
}

.crm-subtitle {
    font-size: 1.15rem;
    color: #666666;
    line-height: 1.6;
    font-weight: 500;
}

/* 메인 비주얼 박스 (연보라빛 라운드 배경) */
.crm-visual-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px;
}

.crm-inner-box {
    position: relative;
    background: linear-gradient(123deg, #FCF4FF 0%, #E0DEFF 100%);
    border-radius: 40px;
    padding: 60px 60px 40px 60px; /* 하단은 이미지가 붙도록 0 */
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 50px;
}

.img-crm-main {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    border-radius: 12px 12px 0 0;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
}

/* Floating 팝업 공통 스타일 */
.crm-floating {
    position: absolute;
    z-index: 5;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
}

.crm-floating img {
    width: 100%;
    height: auto;
    display: block;
}

/* 개별 팝업 위치 설정 (시안의 좌표 비율 매칭) */
.pop-left-01 {
    left: 8%;
    top: 40%;
    width: 36%;
}

.pop-left-02 {
    left: 8%;
    top: 56%;
    width: 36%;
}

.pop-center-purple {
    left: 42%;
    top: 40%;
    width: 27%;
}

.pop-center-alert {
    left: 46%;
    top: 54%;
    width: 24%;
}


/* 하단 3단 카드 그리드 */
.crm-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px;
}

.crm-feature-card {
    background-color: #FCF9FF;
    border-radius: 32px; /* 시안처럼 둥글둥글한 라운드 */
    padding: 30px;
    text-align: left; /* 좌측 정렬 */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #DEDEDE;
}

.crm-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.1);
}

.crm-icon-wrap {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crm-icon-wrap img {
    max-width: 100%;
    height: auto;
}

.crm-feature-card h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #111111;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.crm-feature-card p {
    font-size: 1rem;
    color: #555555;
    line-height: 1.6;
    word-break: keep-all; /* 한글 단어 단위 줄바꿈 예쁘게 */
}








/* =========================================
   7. CTI 고객센터 운영 Section
========================================= */
.cti-section {
    padding-top: 120px;
    background-color: #ffffff; /* 깨끗한 화이트 배경으로 전환 */
    overflow: hidden;
}

/* 헤더 스타일 */
.cti-header {
    text-align: center;
    margin-bottom: 60px;
}

.cti-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #111111;
    line-height: 1.4;
    letter-spacing: -0.03em;
    margin-bottom: 25px;
}

.cti-title .highlight-purple {
    color: #5c4eff; /* 시안의 '전문적인' 강조 퍼플 블루 컬러 */
}

.cti-subtitle {
    font-size: 1.25rem;
    color: #555555;
    line-height: 1.6;
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* 메인 비주얼 박스 (연블루 그라데이션 라운드 배경) */
.cti-visual-container {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0px;
}

.cti-inner-box {
    background: linear-gradient(180deg, #edf4ff 0%, #f4f7ff 100%);
    border-radius: 40px;
    padding: 60px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-cti-main {
    width: 100%;
    max-width: 1040px;
    height: auto;
    display: block;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.05));
}

/* 하단 3단 특징 카드 그리드 */
.cti-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px;
}

.cti-card {
    background-color: #F9FAFF;
    border: 1px solid #eef1f8;
    border-radius: 32px; /* 시안 고유의 라운드 값 균형 */
    padding: 40px 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.cti-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 70, 255, 0.06);
}

/* 카드 내 상단 그래픽 영역 백그라운드 */
.cti-card-illu {
    background-color: #ECF2FE;
    border-radius: 24px;
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    overflow: hidden;
}

.cti-card-illu img {
    max-width: 90%;
    max-height: 85%;
    object-fit: contain;
}

.cti-card-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: #0046ff; /* 시안 특유의 선명한 블루 타이틀 컬러 */
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cti-card-desc {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    font-weight: 500;
    word-break: keep-all;
}

/* =========================================
   7. CTI 고객센터 운영 Section 반응형
========================================= */
@media screen and (max-width: 1024px) {
    .cti-inner-box {
        padding: 40px 25px;
        border-radius: 28px;
    }
    .cti-card {
        padding: 30px 20px;
    }
    .cti-card-title {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 768px) {
    .cti-section {
        padding-top: 80px;
    }
    .cti-title {
        font-size: 1.9rem;
    }
    .cti-subtitle {
        font-size: 1rem;
    }
    .cti-inner-box {
        padding: 20px 15px;
        border-radius: 20px;
    }
    .cti-features-grid {
        grid-template-columns: 1fr; /* 모바일 1열 세로 레이아웃 */
        gap: 20px;
    }
    .cti-card {
        border-radius: 24px;
    }
    .cti-card-illu {
        height: 180px;
    }
}





/* =========================================
   8. 고객 응대 자동화 ARS 전화·메시지 Section (코딩 버전)
========================================= */
.ars-auto-section {
    padding: 120px 0;
    background-color: #F8F3FF; 
    overflow: hidden;
    margin-top: 120px;
}

.ars-auto-header {
    text-align: center;
    margin-bottom: 60px;
}


/* 메인 구조 레이아웃 */
.ars-auto-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 40px;
}

/* 좌/우 컨테이너 균형 맞춤 */
.ars-side-wrapper {
    display: flex;
    flex-direction: column;
    gap: 45px;
    flex: 1;
    max-width: 380px; 
}

/* 중앙 핸드폰 영역 */
.ars-phone-wrapper {
    flex: 0 0 340px;
    z-index: 2;
}

/* PC 레이아웃 순서 강제 정의 */
.left-side { order: 1; }
.ars-phone-wrapper { order: 2; }
.right-side { order: 3; }


/* =========================================
   새롭게 코딩된 개별 ARS 카드 컴포넌트 스펙
========================================= */
.ars-card {
    position: relative;
    width: 100%;
    background: #ffffff;
    border-radius: 24px;
    box-sizing: border-box;
    /* 시안 특유의 부드럽고 몽환적인 보라빛 네온 글로우 효과 반영 */
    box-shadow: 0 15px 35px rgba(123, 82, 255, 0.12), 0 5px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ars-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(123, 82, 255, 0.18), 0 5px 15px rgba(0, 0, 0, 0.04);
}

.card-inner {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* 좌/우 상단 플로팅 원형 배지 공통 */
.floating-badge {
    position: absolute;
    top: -16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 3;
}
/* 좌측: 보라색 전화 아이콘 배경 (아이콘폰트나 임시 색상 대체 가능) */
.left-side .floating-badge {
    left: -12px;
    background: #7B52FF; 
}


.left-side .floating-badge i{
    color: #fff;
}

/* 우측: 파란색 메일 아이콘 배경 */
.right-side .floating-badge {
    right: -12px;
    background: #528BFF;
}

.right-side .floating-badge i{
    color: #fff;
    font-size: 20px;
}

/* 상단 알약 모양 타이틀 태그 */
.card-title-tag {
    display: inline-block;
    align-self: flex-start;
    padding: 6px 16px;
    background-color: #F1ECFF;
    color: #7B52FF;
    font-size: 18px;
    font-weight: 700;
    border-radius: 30px;
    letter-spacing: -0.02em;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}
.right-side .card-title-tag {
    background-color: #EDF3FF;
    color: #4376F6;
}

/* 카드 바디 (텍스트 + 3D 아이콘 배치) */
.card-body {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 10px;
}

.card-color-text{
  justify-content: center;
  padding: 20px;
}

.card-body.block-column {
    flex-direction: column;
    align-items: stretch;
}

/* 텍스트 스타일 가이드 */
.card-text {
    font-size: 16px;
    line-height: 1.5;
    color: #4A4A6A;
    margin: 0;
    font-weight: 500;
    letter-spacing: -0.03em;
}
.card-text.quote-style {
    color: #6155A6; /* 시안 고유의 따옴표 대화체 컬러 */
}
.card-text .point-color {
    color: #7B52FF;
    font-weight: 700;
}

/* 내부 장식용 3D 아이콘 제어 */
.card-deco-icon {
    flex: 0 0 50px;
    max-width: 50px;
}
.card-deco-icon img {
    width: auto;
    height: auto;
}

/* [우측 상단 카드 내부] 폰 화면 메시지 박스 컴포넌트 */
.nested-msg-box {
    background-color: #FFFFFF;
    /* 1. 두께만큼 투명한 테두리를 먼저 생성 */
    border: 2px solid transparent; 
    /* 2. 테두리 곡률 지정 */
    border-radius: 12px; 
    padding: 6px;
    box-sizing: border-box;

    /* 3. 그라데이션 테두리 핵심 로직 */
    background-image: linear-gradient(#fff, #fff), 
                      linear-gradient(135deg, #4DB5FF 0%, #FF61D9 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}
.msg-tag {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #7B52FF;
    margin-bottom: 6px;
}
.msg-text {
    font-size: 15px;
    line-height: 1.45;
    color: #555575;
    margin: 0;
}
.msg-link {
    color: #3B5BFF;
    text-decoration: underline;
    word-break: break-all;
}


/* =========================================
   고객 응대 자동화 전용 미디어 쿼리 (반응형 공정)
========================================= */

/* 태블릿 반응형 (1024px 이하) */
@media screen and (max-width: 1024px) {
    .ars-auto-section {
        padding: 80px 0;
    }
    .ars-auto-content {
        flex-direction: column;
        gap: 50px;
    }
    
    /* 순서 재배치: 좌측 카드 그룹 -> 핸드폰 -> 우측 카드 그룹 */
    .left-side { order: 1; }
    .ars-phone-wrapper { order: 2; flex: 0 0 auto; width: 280px; margin: 0 auto;}
    .right-side { order: 3; }

    .ars-side-wrapper {
        max-width: 600px;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 태블릿에서는 가로 2열 배치로 변경 */
        gap: 30px;
    }
    
    .left-side .floating-badge { left: -8px; }
    .right-side .floating-badge { right: -8px; }
}

/* 모바일 반응형 (640px 이하) */
@media screen and (max-width: 640px) {
    .ars-side-wrapper {
        grid-template-columns: 1fr; /* 모바일에서는 직렬 1열 배치 */
        gap: 35px;
        display: flex;
       flex-direction: column !important;
    }
    .ars-card {
        border-radius: 20px;
    }
    .card-inner {
        padding: 24px 20px 20px 20px;
    }
    .card-text {
        font-size: 14px;
    }
    .nested-msg-box {
        padding: 12px;
    }
    }







/* =========================================
   9. ARS 구축 사례 Section
========================================= */
.ars-case-section {
    padding-top: 120px;
    background-color: #ffffff; /* 깔끔한 화이트 테마 배경 */
    overflow: hidden;
}

.ars-case-header {
    text-align: center;
    margin-bottom: 50px;
}

.ars-case-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #111111;
    letter-spacing: -0.03em;
}

/* 탭 메뉴 스타일 구조 */
.ars-case-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 70px;
}

.ars-case-tabs .tab-btn {
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 50px; /* 완벽한 알약 모양 라운드 디자인 */
    background-color: #eef2f8; /* 비활성화 탭 배경 */
    color: #444444; /* 비활성화 탭 글자색 */
    transition: all 0.3s ease;
    letter-spacing: -0.02em;
}

.ars-case-tabs .tab-btn:hover {
    background-color: #e1e7f0;
}

/* 활성화(클릭된) 탭 스타일 */
.ars-case-tabs .tab-btn.active {
    background-color: #000000; /* 시안 고유의 파란색 선명한 탭 컬러 */
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(131, 131, 131, 0.25);
}

/* 탭 콘텐츠 박스 제어 */
.ars-case-container {
    max-width: 1200px;
    margin: 0 auto;

}

.ars-case-container .tab-content {
    display: none; /* 기본적으로 모든 탭 컨텐츠 숨김 */
    width: 100%;
    justify-content: center;
}

/* 활성화된 탭 콘텐츠만 노출 */
.ars-case-container .tab-content.active {
    display: flex;
    animation: fadeInTab 0.5s ease forwards;
        padding: 20px;
    box-shadow: 0 20px 50px rgba(123, 82, 255, 0.08);
    box-sizing: border-box;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #e1d9ff;
}

/* 표/흐름도 통이미지 스타일 */
.img-case-flow {
    width: auto;
    max-width: 1200px;
    height: auto;
    display: block;
}

/* 탭 전환 시 부드러운 페이드인 애니메이션 효과 */
@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}










/* 하단 배너 */
.bottom-banner {
    padding: 0 20px 100px;
}

.banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #e0e7ff 0%, #e8dbff 100%);
    border-radius: 30px;
    padding: 80px 20px;
    text-align: center;
    position: relative;
}

.banner-inner h2 {
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 40px;
    color: #222;
}

.banner-inner strong {
    font-weight: 800;
}

.btn-dark {
    background-color: #333;
    color: #fff;
}

.btn-white {
    background-color: #fff;
    color: #5b21b6;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}







/* =========================================
   10. 쇼핑몰 추천패키지 Section (완전 코딩 버전)
========================================= */
.shop-package-section {
    padding-top: 120px;
    background-color: #FFFFFF;
    overflow: hidden;
}

.shop-package-header {
    text-align: center;
    margin-bottom: 50px;
}



/* 레이아웃 행 제어 컨테이너 */
.shop-package-content {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.package-row {
    display: flex;
    width: 100%;
    gap: 30px;
}

/* -----------------------------------------
   [상단 카드] Main Service 요약 영역
----------------------------------------- */
.pkg-main-card {
    width: 100%;
    background: #EDF3FF;
    border-radius: 30px;
    padding: 45px 30px;
    text-align: center;
    box-sizing: border-box;
}

.pkg-badge {
    display: inline-block;
    background: #6250FF;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 30px;
    margin-bottom: 24px;
}

.pkg-title-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.title-blue { color: #2B3A60; }
.title-plus { color: #4376F6; }
.title-purple { color: #4376F6; }

.pkg-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #3F5076;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.03em;
}

/* -----------------------------------------
   [중단 카드] 대표번호 그룹 & 패턴발신 공통/개별
----------------------------------------- */
.middle-row .pkg-flex-card {
    flex: 1;
    border-radius: 24px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    /* min-height: 380px; */
    position: relative;
}

/* 블록 배경색 구분 */
.light-blue-bg { background: #E4F5FF; }
.light-purple-bg { background: #F1EDFF; }

.card-main-title {
    font-size: 22px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 5px 0;
    letter-spacing: -0.02em;
}

/* 일러스트 그래픽 가이드 센터링 정렬 */
.card-graphic-area {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.graphic-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* 하단 알약 형태 버튼 디자인 */
.card-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 35px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    background: #FFFFFF;
    box-sizing: border-box;
    cursor: pointer;
    transition: transform 0.2s ease;
}


/* 대표번호 그룹 하단 버튼 (그림자) */
.btn-blue-shadow {
    border: 1.5px solid #000000;
    color: #000000;
    box-shadow: 0 4px 0px #000000;
}

/* 패턴발신 하단 버튼 (그라데이션 보더 완벽 이식) */

.btn-gradient-border-blue {
    border: 2px solid transparent;
    color: #000000;
    background-image: linear-gradient(#fff, #fff), 
                      linear-gradient(90deg, #438bf6 0%, #283eff 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.btn-gradient-border {
    border: 2px solid transparent;
    color: #000000;
    background-image: linear-gradient(#fff, #fff), 
                      linear-gradient(90deg, #4376F6 0%, #E328FF 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}


/* -----------------------------------------
   [하단 카드] 3개 기능 안내 영역 (080, 녹취, 콜백)
----------------------------------------- */
.bottom-row .pkg-third-card {
    flex: 1;
    border-radius: 24px;
    padding: 20px 20px 0px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    /* min-height: 400px; */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    position: relative;
}


/* 시안 고유의 각 카드 외곽 그라데이션 및 단색 경계 보더 */
.border-green { border: 2.5px solid #F3FCEB; background: #F0FAD3;}
.border-red { border: 2.5px solid #FFF1F1; background: #FCECEC;}
.border-cyan { border: 2.5px solid #EAFEFA; background: #E1FDF2; }

.third-card-title {
    font-size: 21px;
    font-weight: 600;
    color: #000000;
    margin: 0px;
    letter-spacing: -0.02em;
}

.third-graphic-area {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 0px;
    align-items: flex-start;
}
.graphic-img-bot {
    max-width: 90%;
    height: auto;
    object-fit: contain;
}
.graphic-img-bot.icon-size-fix {
   /* max-width: 70px; /* 녹취용 마이크 단독 크기 최적화 가이드 */
}

/* 말풍선 꼬리표 형태 링크형 액션 버튼 */
.third-action-btn {
    width: 100%;
    max-width: 290px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 15px;
    border-radius: 30px;
    font-size: 14.5px;
    font-weight: 700;
    background: #FFFFFF;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 0.25s ease;
    position: absolute;
    bottom: 20px;
}

/* 버튼별 개별 보더 컬러 분기 매칭 */
.btn-green-line { border: 2px solid #2CE381; color: #000000; }


.btn-red-line { border: 2px solid #FF6B6B; color: #000000; }


.btn-cyan-line { border: 2px solid #2CE3D2; color: #000000; }










/* =========================================
   11. 아톡비즈 솔루션 활용 예시 Section
========================================= */
.ars-solution-section {
    padding: 120px 0;
    /* 타이틀(#fff) 및 이미지 블랙 배경과 자연스럽게 매칭되도록 어두운 톤으로 변경 */
    background-color: #fff; 
    overflow: hidden;
}

.ars-solution-header {
    text-align: center;
    margin-bottom: 60px;
}

.ars-solution-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #ffffff; /* 어두운 배경에서 선명하게 노출 */
    letter-spacing: -0.03em;
}

/* 콘텐츠 정렬 및 너비 제한 */
.ars-solution-content {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

/* [중요] 이미지 박스 기준점 세팅 */
.solution-img-box {
    position: relative; /* 자식 요소인 링크 영역들의 절대 좌표 기준점 */
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    /* 검은 배경 이미지와 어우러지도록 백그라운드 속성 가볍게 조정 */
    border-radius: 30px;
    padding-top: 50px;
    background: linear-gradient(180deg, #E3EFFF 0%, #FFFFFF 80%);
}

/* 반응형 이미지 공통 */
.img-responsive {
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* -----------------------------------------
   [★핵심] 개별 링크 오버레이 영역 공통 스타일
----------------------------------------- */
.flow-link-item {
    position: absolute;
    display: block;
    z-index: 10;
    cursor: pointer;
    border-radius: 16px; /* 이미지 내부 카드의 라운딩 느낌 부여 */
    transition: background-color 0.25s ease;
    
    /* 
      [디자인 꿀팁] 
      아래 border 주석을 해제하면 화면에 붉은 상자가 나타납니다. 
      눈으로 보면서 위치 좌표(%값)를 정밀하게 맞추실 때 사용하세요!
    */
    /* border: 2px solid rgba(255, 0, 0, 0.6); */
}

/* 마우스 올렸을 때 클릭 가능한 영역임을 은은하게 보여주는 피드백 */
/*.flow-link-item:hover {
    background-color: rgba(29, 130, 245, 0.08);
} */

/* -----------------------------------------
   [★좌표 설정] 이미지 배율 변화에 완벽히 동기화되는 % 수치
----------------------------------------- */
/* 2단계: ARS 자동 안내 송출 */
.link-row2-ars {
    top: 32.6%;
    left: 43.1%;
    width: 13%;
    height: 4.8%;
}

/* 3단계 좌측: 자동 문자 발송 */
.link-row3-sms {
    top: 64%;
    left: 25.4%;
    width: 13%;
    height: 5%;
}

/* 3단계 우측: 담당자 연결 */
.link-row3-manager {
    top: 62.2%;
    left: 61%;
    width: 13%;
    height: 5%;
}

/* 4단계 하단 1: 통합 채팅 상담 */
.link-row4-chat {
    top: 91%;
    left: 13.7%;
    width: 13%;
    height: 5%;
}

/* 4단계 하단 2: 고객관리프로그램 */
.link-row4-crm {
    top: 91%;
    left: 43.3%;
    width: 13%;
    height: 5%;
}

/* 4단계 하단 3: 콜백 서비스 */
.link-row4-callback {
    top: 91%;
    left: 73%;
    width: 13%;
    height: 5%;
}


/* ==========================
   Youtube Popup
========================== */

.video-popup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.85);

    display:none;
    align-items:center;
    justify-content:center;

    z-index:99999;
}

.video-popup.active{
    display:flex;
}

.video-popup-inner{
    width:min(90%,1200px);
    position:relative;
}

.video-popup iframe{
    width:100%;
    aspect-ratio:16/9;
    border:none;
    border-radius:20px;
    background:#000;
}

.video-close{
    position:absolute;
    top:-50px;
    right:0;

    width:40px;
    height:40px;

    border:none;
    border-radius:50%;

    background:#fff;
    color:#000;

    font-size:26px;
    cursor:pointer;
}

@media(max-width:768px){

    .video-popup-inner{
        width:95%;
    }

    .video-close{
        top:-45px;
    }
}













/* =========================================
   12. 홈페이지 바로가기 / 하단 배너 Section
========================================= */
.ars-shortcut-section {
    position: relative;
    padding: 100px 0;
    /* [★] 제공해주신 통배경 이미지 에셋 적용 */
    background: url('./images/yt_bg.png') no-repeat center center / cover;
    background-color: #e3e6ff; /* 이미지 로딩 전 백업 배경색 */
    text-align: center;
    overflow: hidden;
}

.shortcut-box {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* -----------------------------------------
   [★핵심 인터랙션] 로고 통합 링크 & 마우스 호버 효과
----------------------------------------- */
.brand-youtube-link {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 35px;
    cursor: pointer;
    /* 링크 전체가 부드럽게 위로 들리는 트랜지션 */
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.logo-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px; /* 아톡로고와 유튜브로고 사이 간격 */
}

/* 개별 이미지 기본 크기 및 서브 트랜지션 설정 */
.img-atalk-logo {
    width: 60px;
    height: auto;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.img-youtube-logo {
    width: 120px;
    height: auto;
    transition: transform 0.4s ease, filter 0.4s ease;
}

/* [Hover Action] 마우스 올렸을 때 전체 및 개별 에셋 반응 */
.brand-youtube-link:hover {
    transform: translateY(-6px); /* 전체적으로 살짝 위로 이동 */
}

.brand-youtube-link:hover .img-atalk-logo {
    transform: scale(1.06); /* 아톡 심볼만 미세하게 확대 */
    filter: drop-shadow(0 8px 15px rgba(29, 130, 245, 0.35)); /* 푸른색 은은한 그림자 */
}

.brand-youtube-link:hover .img-youtube-logo {
    filter: brightness(1.05); /* 유튜브 로고 선명도 살짝 증가 */
}


/* -----------------------------------------
   텍스트 카피 스타일
----------------------------------------- */
.shortcut-title {
    font-size: 2.1rem;
    line-height: 1.55;
    color: #222222;
    font-weight: 700;
    letter-spacing: -0.03px;
    margin-bottom: 40px;
}
.shortcut-title .highlight-text {
    font-weight: 600;
    color: #111111;
}

/* -----------------------------------------
   버튼 그룹 스타일
----------------------------------------- */
.shortcut-btn-group {
    display: flex;
    justify-content: center;
    gap: 16px;
    width: 100%;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: -0.02em;
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 왼쪽: 블랙 홈페이지 바로가기 버튼 */
.btn-shortcut-dark {
    background-color: #222222;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.btn-shortcut-dark:hover {
    background-color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
}
.btn-shortcut-dark .search-icon {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* 오른쪽: 아웃라인 상품 안내 받기 버튼 */
.btn-shortcut-outline {
    background-color: #ffffff;
    color: #3b51ff;
    border: 2px solid #3b51ff;
    box-shadow: 0 6px 20px rgba(59, 81, 255, 0.03);
}
.btn-shortcut-outline:hover {
    background-color: #3b51ff;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(59, 81, 255, 0.23);
}
.btn-shortcut-outline .bell-icon {
    font-size: 1.1rem;
}









/* =========================
   Youtube Player
========================= */

.video-section{
    width:100%;
    padding: 0px 0px 40px 0px;
}

.video-wrap{
    max-width:450px;
    margin:0 auto;
    overflow:hidden;
    border-radius:10px;
    background:#000;
    position:relative;
    height: 280px;
}

#player{
    width:100%;
    aspect-ratio:16/9;
}

/* control */
#player-controls{
    display:flex;
    align-items:center;
    gap:16px;
    padding:20px 24px;
    background:#fff;
}

#play-toggle,
#mute-toggle{
    width:44px;
    height:44px;
    border:none;
    border-radius:50%;
    background:#5b4fff;
    color:#fff;
    cursor:pointer;
    font-size:16px;
    flex-shrink:0;
}

.progress-wrap{
    flex:1;
}

#progress-bar{
    width:100%;
    cursor:pointer;
}

#current-time,
#duration{
    font-size:14px;
    color:#444;
    min-width:42px;
    text-align:center;
}









/* 푸터 */
footer {
    border-top: 1px solid #eee;
    padding: 60px 0;
    background-color: #fff;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-left .footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}


.footer-left .footer-logo img{
    width: 160px;
}

.logo-icon.blue {
    color: #2b6cb0;
}

.cs-info p {
    font-size: 0.9rem;
    color: #666;
}

.cs-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #222;
    margin-top: 5px;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex: 1;
    justify-content: center;
}

.link-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.link-col a {
    display: block;
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.link-col a:hover {
    text-decoration: underline;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

.sns-btns {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


.sns-btns img{
    margin-right: 10px;
}

.sns-btn {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
    display: inline-block;
    text-align: center;
    width: 140px;
    display: flex;
    align-items: center;
}

.bg-green { background-color: #d1fae5; color: #065f46; }
.bg-red { background-color: #fee2e2; color: #991b1b; }
.bg-orange { background-color: #ffedd5; color: #9a3412; }

.family-site {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #555;
    outline: none;
    width: 140px;
}






/* 탑바로가기 버튼 */

/*.floating-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: #5b4fff;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(91, 79, 255, 0.4);
    transition: all 0.3s;
    z-index: 999;
    color: #fff;
    font-size: 14px;
}
    */

/* 탑바로가기 버튼 */

.new_quickmenu_m {display: none;}
#go_top {position: fixed; right:20px; z-index: 4; bottom: 50px; background-color: #fff; width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; border-radius: 20px; box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; display: none;}
#go_top img {width: 30px;}

.new_quickmenu {position: fixed; bottom:70px; right: -1px; z-index: 100; background-color: #fff; border: 1px solid #eee; padding: 20px 0 10px 0; display: block;
border-top-left-radius: 20px; border-bottom-left-radius: 20px; box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; width: auto;}
.new_quickmenu .inner {display: block; width: max-content; padding: 0;}
.new_quickmenu * {box-sizing: border-box;}
.new_quickmenu a {position: relative; display: flex; align-items: center; justify-content: center; padding:10px; width: 90px; height: 90px; flex-direction: column;}
.new_quickmenu a:hover {text-decoration: none;}
.new_quickmenu a:hover p {text-decoration: none; }
.new_quickmenu a img.icon {height: 47px;}
.new_quickmenu a img.icon.kakao {height: 47px;}
.new_quickmenu a img.icon.top {height: 20px;}
.new_quickmenu a:nth-of-type(1)::before {display: none;}
.new_quickmenu a::before {display:block; width: 60%; height: 1px; background-color: #b3b3b3; position: absolute; top: 0;}
.new_quickmenu a p {font-size: 13px; text-align: center; margin: 5px 0 0 0; font-family: 'pre_B'}
.new_quickmenu #consult-chat-floatting-plugin,
.new_quickmenu #chatButton,
.new_quickmenu .chat-fix {position: inherit !important; bottom: inherit; right: inherit}
.new_quickmenu #consult-chat-iframe-plugin {right: 100px !important;}
.new_quickmenu .chat-open,
.new_quickmenu .chat-close {border-radius: 8px; width: 64px; height: 64px;}



/* =========================================
   반응형 미디어 쿼리 (Media Queries)
   ※ PC 해상도부터 모바일 순으로 내림차순 정렬
========================================= */

/* -----------------------------------------
   1. 1200px 이하 (작은 PC / 큰 태블릿)
----------------------------------------- */
@media screen and (max-width: 1200px) {
    .hero-image-wrapper img,
    .img-case-flow {
        width: 100%;
    }
    .hero-inner {
        padding: 0px 20px 0px 30px;
    }
    /* 푸터 */
    .footer-inner {
        gap: 40px;
    }
    .footer-links {
        gap: 35px;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

/* -----------------------------------------
   2. 1100px 이하 
----------------------------------------- */
@media screen and (max-width: 1100px) {
    /* ARS 자동화 */
    .ars-auto-content {
        flex-direction: column;
        gap: 40px;
    }
    .ars-side-wrapper {
        max-width: 100%;
        width: 100%;
        gap: 24px;
        display: flex;
        flex-direction: row;
    }
    .ars-phone-wrapper {
        flex: 0 1 auto;
        max-width: 320px;
        width: 100%;
        order: 1;
    }
    .left-side { order: 2; }
    .right-side { order: 3; }
}

/* -----------------------------------------
   3. 1024px 이하 (태블릿 가로)
----------------------------------------- */
@media screen and (max-width: 1024px) {
    /* 공통 레이아웃 */
    .container, .inner, [class*="container"] {
        width: 100%;
        max-width: 100%;
        padding-left: 24px;
        padding-right: 24px;
        box-sizing: border-box;
    }
    section, [class*="-section"] {
        overflow: hidden;
    }

    /* 히어로 및 공유 섹션 */
    .share-header .section-title { font-size: 32px; }
    .share-header .section-subtitle { font-size: 18px; }
    .share-cards { gap: 16px; }
    .share-card { padding: 30px 15px 20px; }
    .hero-image-wrapper img.img-car { width: 80%; }

    /* 채팅 팝업 & CRM & ARS */
    .chat-visual-wrap { max-width: 90%; }
    .img-popup { right: -5%; bottom: -5%; width: 35%; }
    .crm-inner-box { padding: 50px 30px 0 30px; }
    .crm-feature-card { padding: 40px 30px; }
    .crm-feature-card h3 { font-size: 1.2rem; }
    .ars-case-tabs { gap: 10px; padding: 0 20px; }
    .ars-case-tabs .tab-btn { font-size: 1rem; padding: 14px 24px; }

    /* 쇼핑몰 패키지 */
    .shop-package-section { padding: 0px; }
    .middle-row, .bottom-row { flex-direction: column; gap: 25px; }
    .middle-row .pkg-flex-card { min-height: 320px; }
    .bottom-row .pkg-third-card { min-height: 280px; }
    .pkg-title-group { font-size: 20px; }

    /* 푸터 (태블릿) */
    footer { padding: 60px 0; }
    .footer-inner {
        flex-direction: column;
        gap: 40px;
    }
    .footer-left { width: 100%; }
    .footer-links {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px 20px;
        justify-content: unset;
    }
    .footer-right {
        width: 100%;
        align-items: flex-start;
        flex-direction: row;
        justify-content: space-between;
    }
    .sns-btns { flex-direction: row; flex-wrap: wrap; }
    .new_quickmenu { display: none; }
}

/* -----------------------------------------
   4. 992px 이하 (태블릿 세로)
----------------------------------------- */
@media screen and (max-width: 992px) {
    .hero { height: auto; padding-top: 120px; }
    .hero-inner { flex-direction: column; text-align: center; gap: 0px; }
    .btn-group { justify-content: center; }
    .hero-image { width: 100%; margin-top: 0px; }
    .cards-grid { grid-template-columns: repeat(1, 1fr); }
}

/* -----------------------------------------
   5. 991px 이하 (쇼핑몰 패키지 전용)
----------------------------------------- */
@media screen and (max-width: 991px) {
    .package-row { flex-direction: column; gap: 20px; }
    .middle-row .half-width,
    .bottom-row .third-width { width: 100%; }
    .shop-package-content { gap: 20px; }
}

/* -----------------------------------------
   6. 860px 이하 (모바일 확장)
----------------------------------------- */
@media screen and (max-width: 860px) {
    .mobile-grid { grid-template-columns: 1fr; }
    .full-width { flex-direction: column; text-align: center; padding: 40px 30px 0; }
    .m-card-left { gap: 20px; align-items: center; }
    .m-card-mid { padding: 30px 0; }
    .m-card-right { justify-content: center; margin-bottom: 0; width: 100%; }
}

/* -----------------------------------------
   7. 768px 이하 (모바일 기본 표준)
----------------------------------------- */
@media screen and (max-width: 768px) {
    /* 공통 레이아웃 */
    html, body { overflow-x: hidden; }
    section, [class*="-section"] { padding-top: 80px !important; }
    h1, .hero-title, [class*="-title"] { line-height: 1.25; }
    .hero-title { font-size: clamp(2rem, 6vw, 2.8rem) !important; }
    .container, .inner, [class*="container"] { padding-left: 20px !important; padding-right: 20px !important; }
    img { max-width: 100%; height: auto; }
    .grid, [class*="grid"], [class*="row"] { gap: 20px; }
    [style*="width:"], [class*="card"], [class*="box"] { max-width: 100%; }
    .img-responsive { width: 100%; height: auto; display: block; }

    /* 헤더 */
    .header-inner nav { display: none; }
    .header-inner { box-shadow: none; padding: 15px 20px; width: 100%; backdrop-filter: none; background: none; }
    .mobile-header h2 { font-size: 26px; }
    .highlight-text { margin-top: 30px; font-size: 20px; }

    /* 각 섹션 최적화 */
    .cards-grid, .share-cards, .crm-features-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.5rem; }
    .banner-inner h2 { font-size: 1.8rem; }
    .btn-group, .shortcut-btn-group { flex-direction: column; }
    
    .share-section, .chat-section, .crm-section, .ars-case-section, 
    .ars-auto-section, .shop-package-section, .ars-solution-section { padding: 80px 0; }
    
    .share-cards { gap: 30px; }
    .type-badge-wrap { margin-bottom: 20px; }
    .card-image-box { min-height: auto; padding: 40px 20px; }

    .chat-title, .ars-case-title, .ars-auto-title, .shop-package-title, .ars-solution-title { font-size: 1.8rem; }
    .chat-subtitle, .crm-subtitle { font-size: 1rem; }
    .chat-header { margin-bottom: 40px; }
    .img-popup { right: 0; bottom: -10%; width: 45%; }
    .center-icons { gap: 0px; }
    .c-icon { width: 80px; height: 80px; }

    .crm-title { font-size: 2rem; }
    .crm-inner-box, .crm-feature-card { border-radius: 24px; }
    .crm-inner-box { padding: 30px 15px 0 15px; }
    .crm-features-grid { gap: 20px; }
    .pop-left-01 { left: 4%; width: 32%; }
    .pop-left-02 { left: 6%; width: 35%; }
    .pop-center-purple { left: 40%; width: 28%; }
    .pop-center-alert { left: 44%; width: 26%; }

    .ars-case-tabs { margin-bottom: 40px; flex-wrap: wrap; gap: 8px; }
    .ars-case-tabs .tab-btn { width: 100%; max-width: 280px; text-align: center; font-size: 0.95rem; padding: 12px 20px; }

    .solution-img-box { border-radius: 16px; }
    .flow-link-item { border-radius: 8px; }

    /* 하단 배너 */
    .ars-shortcut-section { padding: 70px 0 !important; }
    .brand-youtube-link { margin-bottom: 25px; }
    .img-atalk-logo { width: 50px; }
    .img-youtube-logo { width: 100px; }
    .shortcut-title { font-size: 1.45rem; line-height: 1.5; margin-bottom: 30px; }
    .shortcut-btn-group { align-items: center; gap: 12px; padding: 0 20px; }
    .btn-action { width: 100%; max-width: 290px; padding: 14px 0; font-size: 1rem; }

    /* 푸터 */
    footer { padding: 50px 0 40px; }
    .footer-inner { gap: 35px; }
    .footer-left .footer-logo img { width: 140px; }
    .cs-info h3 { font-size: 28px; }
    .footer-links { display: grid; grid-template-columns: repeat(2, minmax(120px, 1fr)); gap: 28px 18px; }
    .link-col h4 { margin-bottom: 12px; }
    .link-col a { font-size: 13px; margin-bottom: 8px; }
    .footer-right { flex-direction: column; align-items: flex-start; gap: 16px; }
    .sns-btns { width: 100%; flex-direction: column; }
    .sns-btn, .family-site { width: 180px; }

    /* 유튜브 플레이어 */
    #player-controls { gap: 10px; padding: 16px; }
    #play-toggle, #mute-toggle { width: 38px; height: 38px; }
    #current-time, #duration { font-size: 12px; min-width: 34px; }
}

/* -----------------------------------------
   8. 640px 이하 
----------------------------------------- */
@media screen and (max-width: 640px) {
    /* 쇼핑몰 추천패키지 디테일 */
    .shop-package-header h2 { font-size: 2rem; }
    .pkg-main-card { padding: 30px 20px; border-radius: 20px; }
    .pkg-title-group { font-size: 16px; gap: 6px; }
    .pkg-desc { font-size: 13.5px; }
    .middle-row .pkg-flex-card, .bottom-row .pkg-third-card { padding: 30px 20px; border-radius: 20px; }
    .card-main-title, .third-card-title { font-size: 18px; margin-bottom: 15px; }
    .card-action-btn, .third-action-btn { font-size: 13.5px; padding: 10px 20px; }
}

/* -----------------------------------------
   9. 480px 이하 (작은 모바일)
----------------------------------------- */
@media screen and (max-width: 480px) {
    section, [class*="-section"] { padding-top: 64px !important; padding-bottom: 64px !important; }
    .hero-title, h1 { font-size: clamp(1.8rem, 7vw, 2.2rem) !important; }
    [class*="-title"] { font-size: clamp(1.5rem, 5vw, 1.8rem) !important; }
    .container, .inner, [class*="container"] { padding-left: 16px !important; padding-right: 16px !important; }

    /* 푸터 상세조정 */
    .footer-links { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
    .link-col h4 a { font-size: 15px; }
    .link-col a { font-size: 12px; }
    .sns-btn, .family-site { width: 100%; max-width: 220px; }

    /* 유튜브 플레이어 */
    #player-controls { padding: 14px; gap: 8px; }
    #play-toggle, #mute-toggle { width: 34px; height: 34px; font-size: 13px; }
}
