/* 서비스 페이지 공통 스타일 */

.service-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding-top: 80px; /* 네비게이션 바 높이만큼 상단 여백 추가 */
}

/* 챗봇 페이지 전용 스타일 */
.chatbot-page .hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0B0F14 0%, #1a1a1a 100%);
    padding: 120px 0 80px;
    position: relative;
}

/* 브레드크럼 */
.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #10B981;
}

.breadcrumb .separator {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.4);
}

/* 섹션 점프 탭 */
.section-jump-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    position: sticky;
    top: 80px;
    z-index: 100;
    background: rgba(11, 15, 20, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-radius: 10px;
}

.tab-item {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.tab-item:hover {
    color: #10B981;
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

/* 히어로 레이아웃 */
.hero-content {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

/* 섹션 번호 스타일 */
.section-number {
    display: none !important;
}

.hero-text {
    max-width: 600px;
}

.chatbot-page .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, #fff, #10B981);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.6s ease;
}

.chatbot-page .hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease 0.2s both;
}

/* 신뢰 스냅샷 */
.trust-snapshot {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.trust-chip {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.trust-chip:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateX(10px);
}

.chip-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.chip-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.3rem;
}

.chip-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.hero-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-style: italic;
    animation: fadeInUp 0.6s ease 0.6s both;
}

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

.chatbot-page .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, #fff, #00d4ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.chatbot-page .hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.chatbot-page .hero-cta {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.chatbot-page .hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

/* 데모 챗 카드 */
.demo-chat-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 400px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.6s ease 0.8s both;
}

.chatbot-page .chat-window {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.chatbot-page .chat-header {
    background: #10B981;
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chatbot-page .chat-avatar {
    font-size: 2rem;
}

.chatbot-page .chat-info h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.chatbot-page .chat-info span {
    font-size: 0.8rem;
    opacity: 0.8;
}

.chatbot-page .chat-messages {
    padding: 1rem;
    background: #f8f9fa;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chatbot-page .message {
    max-width: 80%;
    padding: 0.8rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.chatbot-page .message.bot {
    background: #e3f2fd;
    color: #333;
    align-self: flex-start;
}

.chatbot-page .message.user {
    background: #10B981;
    color: white;
    align-self: flex-end;
}

/* 퀵 리플라이 버튼 */
.reply-btn {
    background: white;
    border: 1px solid #ddd;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0.2rem;
}

.reply-btn:hover {
    background: #10B981;
    color: white;
    border-color: #10B981;
}

/* 상품 추천 */
.product-recommendation {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-item {
    background: white;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-name {
    font-weight: 600;
    color: #333;
}

.product-price {
    color: #10B981;
    font-weight: 600;
}

.buy-btn {
    background: #10B981;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.buy-btn:hover {
    background: #059669;
    transform: translateY(-2px);
}

/* 결제 방법 */
.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    opacity: 0.6;
}

.payment-methods span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.demo-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin-top: 1rem;
}

/* 퀵 태그 버튼 */
.quick-tags {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tag-btn {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tag-btn:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: #10B981;
    color: #10B981;
}

.tag-btn.active {
    background: #10B981;
    color: white;
    border-color: #10B981;
}

/* 스크롤 인디케이터 */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    animation: fadeInUp 0.6s ease 1s both;
}

.scroll-arrow {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

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

.chatbot-page .chatbot-mockup {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 400px;
    width: 100%;
}

.chatbot-page .chat-window {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.chatbot-page .chat-header {
    background: #00d4ff;
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chatbot-page .chat-avatar {
    font-size: 2rem;
}

.chatbot-page .chat-info h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.chatbot-page .chat-info span {
    font-size: 0.8rem;
    opacity: 0.8;
}

.chatbot-page .chat-messages {
    padding: 1rem;
    background: #f8f9fa;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chatbot-page .message {
    max-width: 80%;
    padding: 0.8rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.chatbot-page .message.bot {
    background: #e3f2fd;
    color: #333;
    align-self: flex-start;
}

.chatbot-page .message.user {
    background: #00d4ff;
    color: white;
    align-self: flex-end;
}

.chatbot-page .quick-reply {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.chatbot-page .quick-reply button {
    background: white;
    border: 1px solid #ddd;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chatbot-page .quick-reply button:hover {
    background: #00d4ff;
    color: white;
    border-color: #00d4ff;
}

/* 타이핑 애니메이션 */
.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 8px 12px;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    animation: typing 1.4s infinite ease-in-out;
}

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

@keyframes typing {
    0%, 80%, 100% { transform: scale(0.8); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

/* 2. 문제 제기 섹션 */
.pain-point-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.pain-point-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.pain-visual {
    display: flex;
    justify-content: center;
}

.customer-complaint {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 400px;
    width: 100%;
}

.complaint-header {
    background: #ff6b6b;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.complaint-messages {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.complaint-message {
    background: white;
    color: #333;
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.pain-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pain-point {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.pain-point:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 107, 0.3);
    transform: translateX(10px);
}

.pain-icon {
    font-size: 2.5rem;
    color: #ff6b6b;
}

.pain-point h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.pain-point p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* 3. 솔루션 제시 섹션 */
.solution-section {
    padding: 100px 0;
}

.solution-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solution-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.solution-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
}

.solution-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.solution-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.solution-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* 4. 경쟁사 비교 섹션 */
.comparison-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: rgba(0, 212, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-item {
    padding: 1.5rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.header-item.zenith {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.table-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.table-row:last-child {
    border-bottom: none;
}

.row-item {
    padding: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    display: flex;
    align-items: center;
}

.row-item:first-child {
    font-weight: 600;
    color: #fff;
}

.row-item.zenith {
    color: #00d4ff;
    font-weight: 500;
}

/* 5. 서비스 종류 섹션 */
.services-section {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
}

.service-header {
    background: rgba(0, 212, 255, 0.1);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.service-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.service-content {
    padding: 2rem;
}

.service-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.service-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-features span {
    background: rgba(0, 212, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.use-cases {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    padding: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* 6. 기술력 & 시스템 구조 섹션 */
.tech-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-diagram {
    display: flex;
    justify-content: center;
}

.system-architecture {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 500px;
    width: 100%;
}

.layer {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid #00d4ff;
}

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

.layer h4 {
    color: #00d4ff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.components {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.components span {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tech-feature {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.tech-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
}

.tech-feature h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.tech-feature p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* 7. 제작 과정 섹션 */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #00d4ff, transparent);
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    flex-shrink: 0;
    z-index: 1;
}

.step-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    flex: 1;
    transition: all 0.3s ease;
}

.step-content:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(10px);
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.step-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-duration {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* 8. 성공 사례 섹션 업데이트 */
.case-study .stat-number {
    font-size: 2rem;
}

/* 9. CTA 섹션 업데이트 */
.cta-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* 차별화 포인트 섹션 */
.differentiation-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.differentiation-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 4rem;
    color: #fff;
}

.differentiation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.diff-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.diff-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
}

.diff-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.diff-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.diff-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* 세부 서비스 섹션 */
.services-detail-section {
    padding: 100px 0;
}

.services-detail-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 4rem;
    color: #fff;
}

.services-accordion {
    max-width: 1000px;
    margin: 0 auto;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: rgba(0, 212, 255, 0.3);
}

.accordion-header {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.accordion-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00d4ff;
    transition: all 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
}

.service-detail {
    padding: 0 2rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.service-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-info li {
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
}

.use-cases {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    padding: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* 서비스 비주얼 모킹 */
.service-visual {
    display: flex;
    justify-content: center;
}

.kakao-mockup, .telegram-mockup, .web-mockup, .instagram-mockup, .custom-mockup {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 250px;
}

.kakao-header, .telegram-header, .instagram-header, .custom-header {
    background: #fee500;
    color: #333;
    padding: 0.8rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 1rem;
}

.telegram-header {
    background: #0088cc;
    color: white;
}

.instagram-header {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.custom-header {
    background: #333;
    color: white;
}

.kakao-chat, .telegram-chat, .instagram-dm, .custom-chat {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    min-height: 80px;
    display: flex;
    align-items: center;
}

.kakao-message, .telegram-message, .dm-message, .custom-message {
    color: #333;
    font-size: 0.9rem;
    line-height: 1.4;
}

.web-chat-widget {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.widget-header {
    color: #00d4ff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.widget-message {
    color: #333;
    font-size: 0.9rem;
}

/* 제작 과정 섹션 */
.process-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.process-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 4rem;
    color: #fff;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.process-step p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* 성공 사례 섹션 */
.case-study-section {
    padding: 100px 0;
}

.case-study-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 4rem;
    color: #fff;
}

.case-studies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.case-study {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.case-study:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.case-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.case-stats {
    display: flex;
    gap: 1rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #00d4ff;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.before, .after {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
}

.before h4, .after h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.before h4 {
    color: #ff6b6b;
}

.after h4 {
    color: #51cf66;
}

.before p, .after p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.case-review {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
}

.case-review p {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.reviewer {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* 최종 CTA 섹션 */
.final-cta-section {
    padding: 100px 0;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 20px;
    margin: 2rem 0;
}

.final-cta-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #fff;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.primary-cta, .secondary-cta {
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
}

.primary-cta {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: white;
}

.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.secondary-cta {
    background: transparent;
    color: #00d4ff;
    border: 2px solid #00d4ff;
}

.secondary-cta:hover {
    background: #00d4ff;
    color: white;
    transform: translateY(-3px);
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .chatbot-page .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .pain-point-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tech-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .table-header, .table-row {
        grid-template-columns: 1fr;
    }
    
    .header-item, .row-item {
        padding: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .process-step {
        gap: 1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .chatbot-page .hero-title {
        font-size: 2.5rem;
    }
    
    .chatbot-page .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .differentiation-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .case-studies {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .case-before-after {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .accordion-header {
        padding: 1.5rem;
    }
    
    .accordion-header h3 {
        font-size: 1.2rem;
    }
    
    .service-detail {
        padding: 0 1.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .chatbot-page .hero-title {
        font-size: 2rem;
    }
    
    .chatbot-page .hero-subtitle {
        font-size: 1rem;
    }
    
    .chatbot-page .hero-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .diff-card {
        padding: 2rem 1.5rem;
    }
    
    .diff-icon {
        font-size: 2.5rem;
    }
    
    .process-step {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .case-study {
        padding: 1.5rem;
    }
    
    .case-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .final-cta-section h2 {
        font-size: 2rem;
    }
    
    .primary-cta, .secondary-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* 서비스 페이지 네비게이션 바 고정 스타일 */
.service-page .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 10%;
    background: rgba(26, 26, 26, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.service-page .navbar.scrolled {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(15px);
    padding: 1.5rem 10%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* 서비스 히어로 섹션 */
.service-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 120px 0 80px;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

.service-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, #fff, #00d4ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 2;
}

.service-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* 서비스 콘텐츠 섹션 */
.service-content {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.content-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #fff;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

/* 기능 리스트 */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.feature-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* 비주얼 콘텐츠 */
.content-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 챗봇 데모 */
.chatbot-demo {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    padding: 1rem;
    border-radius: 12px;
    max-width: 80%;
    font-size: 0.9rem;
    line-height: 1.4;
}

.message.bot {
    background: rgba(0, 212, 255, 0.2);
    color: #fff;
    align-self: flex-start;
}

.message.user {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    align-self: flex-end;
}

/* 랜딩페이지 미리보기 */
.landing-preview {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.preview-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.preview-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
}

.preview-section h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.preview-section p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* 마케팅 대시보드 */
.marketing-dashboard {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.dashboard-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.metric-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
}

.metric-item h5 {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00d4ff;
    margin: 0;
}

/* 프로그램 쇼케이스 */
.program-showcase {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.tech-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tech-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
}

.tech-category h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    text-align: center;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tech-items span {
    background: rgba(0, 212, 255, 0.2);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

/* 쇼핑몰 미리보기 */
.shop-preview {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.shop-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.shop-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}

.shop-section h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.shop-section p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* CTA 섹션 */
.cta-section {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    margin: 2rem 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    background: linear-gradient(135deg, #00e6ff 0%, #00aadd 100%);
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-title {
        font-size: 3rem;
    }
    
    .service-subtitle {
        font-size: 1.2rem;
    }
    
    .content-text h2 {
        font-size: 2rem;
    }
    
    .dashboard-content {
        grid-template-columns: 1fr;
    }
    
    .shop-layout {
        grid-template-columns: 1fr;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .service-hero {
        padding: 100px 0 60px;
    }
    
    .service-title {
        font-size: 2.5rem;
    }
    
    .service-subtitle {
        font-size: 1rem;
    }
    
    .content-text h2 {
        font-size: 1.8rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    .cta-section {
        padding: 3rem 1.5rem;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
} 