/* 솔루션 페이지 전환 방식 전용 스타일 */

/* 공통 헤더 스타일 리셋 - style.css 오버라이드 */
body #header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 60px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    z-index: 1000 !important;
    transition: none !important;
    transform: none !important;
    padding: 0 !important;
}

/* 헤더 scrolled 클래스 무효화 */
body #header.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    padding: 0 !important;
    transform: none !important;
}

body #header .inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 60px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    transition: none !important;
}

body #header.scrolled .inner {
    height: 60px !important;
}

/* 서브페이지 로고 스타일 완전 재정의 */
body #header h1.logo {
    margin: 0 !important;
    height: 35px !important;
    position: relative !important;
}

body #header .logo {
    height: 35px !important;
    margin: 0 !important;
    transform: none !important;
    margin-top: 0 !important;
    position: relative !important;
}

body #header.scrolled .logo {
    transform: none !important;
    margin-top: 0 !important;
}

body #header .logo a {
    display: block !important;
    height: 100% !important;
    position: relative !important;
}

body #header .logo img {
    height: 100% !important;
    width: auto !important;
    display: block !important;
    opacity: 1 !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
}

body #header .logo img.logo-white {
    display: none !important;
    filter: none !important;
}

body #header .logo img.logo-color {
    display: block !important;
    opacity: 1 !important;
    position: relative !important;
}

/* gnb 메뉴 스타일 */
#header .gnb {
    margin-left: auto;
}

#header .gnb ul {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 0;
    padding: 0;
    list-style: none;
}

#header .gnb > ul > li {
    position: relative;
}

#header .gnb > ul > li > a {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    padding: 10px 0;
    transition: color 0.3s ease;
    position: relative;
}

#header .gnb > ul > li:hover > a {
    color: var(--primary-color);
}

/* 드롭다운 메뉴 - 위치 및 스타일 수정 */
#header .dropdown {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 180px;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 100;
    margin-top: 0;
}

/* 마지막 두 메뉴(CONTACT, CHANNEL)의 드롭다운은 오른쪽 정렬 */
#header .gnb > ul > li:nth-last-child(1) .dropdown,
#header .gnb > ul > li:nth-last-child(2) .dropdown {
    left: auto;
    right: 0;
    transform: translateX(0);
}

/* CONTACT 메뉴도 약간 조정 */
#header .gnb > ul > li:nth-child(4) .dropdown {
    left: auto;
    right: -20px;
    transform: translateX(0);
}

/* CHANNEL 메뉴는 완전 오른쪽 */
#header .gnb > ul > li:nth-child(5) .dropdown {
    left: auto;
    right: 0;
    transform: translateX(0);
}

#header .gnb > ul > li:hover .dropdown {
    opacity: 1;
    visibility: visible;
}

#header .dropdown li {
    list-style: none;
}

#header .dropdown a {
    display: block;
    padding: 10px 25px;
    font-size: 14px;
    color: #666;
    transition: all 0.2s ease;
}

#header .dropdown a:hover {
    color: var(--primary-color);
    background: rgba(233, 75, 53, 0.05);
}

/* 헤더 오른쪽 부분 */
#header .header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

#header .header-download {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

#header .header-download:hover {
    background: #d84030;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 75, 53, 0.3);
}

#header .header-download i {
    font-size: 16px;
}

/* 모바일 메뉴 버튼 */
#header .mobile-menu-btn {
    display: none;
    width: 30px;
    height: 30px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
}

#header .mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #333;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

#header .mobile-menu-btn span:nth-child(1) {
    top: 6px;
}

#header .mobile-menu-btn span:nth-child(2) {
    top: 14px;
}

#header .mobile-menu-btn span:nth-child(3) {
    top: 22px;
}

/* 서브 비주얼 */
.sub-visual {
    background: #000;
    padding: 60px 0 50px;
    text-align: center;
    margin-top: 60px;
}

.sub-visual .sub-title {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.sub-visual .sub-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

/* 페이지 전환 기본 스타일 */
.solution-page {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.solution-page.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* 서비스 네비게이션 위치 재조정 */
.service-nav {
    position: sticky;
    top: 60px; /* 헤더 높이만큼 아래로 */
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 60px;
    margin-top: -1px; /* 미세 조정 */
}

/* 콘텐츠 래퍼 여백 조정 */
.solution-content-wrapper {
    padding-top: 40px; /* 서비스 네비게이션이 sticky이므로 여백 감소 */
    min-height: 100vh;
    background: #f8f8f8;
}

.service-nav .inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
}

.service-nav ul {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    height: 100%;
}

.service-nav li {
    flex: 1;
    max-width: 200px;
}

.service-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 20px;
    text-align: center;
    color: #666;
    font-weight: 500;
    font-size: 15px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-nav a:hover,
.service-nav a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: rgba(233, 75, 53, 0.05);
}

/* 솔루션 섹션 공통 */
.solution-section {
    padding: 60px 0;
    background: white;
    margin: 20px;
    margin-top: 20px; /* 상단 여백 명시 */
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

/* 데스크탑/반응형 줄바꿈 제어 */
.solution-section .desktop-br {
    display: inline;
}

.solution-section .mobile-br {
    display: none;
}

.solution-section.special {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe0e0 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* 서비스 컨텐츠 레이아웃 */
.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.content-left h4,
.content-right h4 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.content-left p,
.content-right p {
    font-size: 13px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 40px;
    word-break: keep-all;
}

/* 이커머스 운영대행 */
.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-item i {
    font-size: 32px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.feature-item h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.feature-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.service-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-item .number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-item .label {
    font-size: 16px;
    color: #666;
}

/* 퍼포먼스 마케팅 */
.service-list {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
}

.service-list h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

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

.service-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list i {
    color: var(--primary-color);
    font-size: 16px;
}

.process {
    margin-top: 50px;
}

.process h5 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.process-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.process-item .number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.process-item h6 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.process-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* 바이럴 마케팅 */
.viral-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.service-card {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 75, 53, 0.15);
}

.service-card .icon {
    width: 60px;
    height: 60px;
    background: rgba(233, 75, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-card i {
    font-size: 28px;
    color: var(--primary-color);
}

.service-card h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.service-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.viral-stats {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 12px;
    position: relative;
    overflow: visible;
}

.viral-stats h5 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 50px;
    color: #333;
    text-align: center;
}

.chart-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 250px;
    gap: 20px;
    margin-top: 30px;
}

.chart-item {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.chart-number {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.chart-bar {
    width: 60px;
    background: linear-gradient(to top, var(--primary-color), var(--accent-color));
    margin: 0 auto;
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: all 0.3s ease;
    display: block;
}

.chart-bar:hover {
    transform: scaleY(1.05);
    box-shadow: 0 -5px 15px rgba(233, 75, 53, 0.3);
}

.chart-item p {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.success-note {
    background: rgba(233, 75, 53, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.success-note i {
    font-size: 24px;
    color: var(--primary-color);
}

.success-note p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

/* 디자인 및 콘텐츠 */
.design-portfolio {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 12px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.portfolio-item {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: white;
}

.portfolio-item:hover {
    background: rgba(233, 75, 53, 0.05);
}

.portfolio-item i {
    display: block;
    margin-bottom: 10px;
}

.portfolio-item span {
    font-size: 14px;
    color: #666;
}

.content-types {
    margin-top: 30px;
}

.content-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.content-stats .stat {
    text-align: center;
}

.content-stats i {
    font-size: 36px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.content-stats span {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.design-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.df-item i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.df-item h6 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.df-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* 영상제작 */
.special-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.special-badge i {
    margin-right: 5px;
}

.content-full {
    grid-column: 1 / -1;
    margin-bottom: 60px;
}

.video-intro {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.video-stats .stat {
    text-align: center;
}

.video-stats h4 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.video-stats p {
    font-size: 14px;
    color: #666;
}

.video-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.video-service {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.video-service .icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.video-service i {
    font-size: 24px;
    color: white;
}

.video-service h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.video-service p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.video-process {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.process-timeline {
    margin-top: 30px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: var(--primary-color);
    opacity: 0.3;
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.timeline-dot {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-content h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.timeline-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.video-benefits {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b6b 100%);
    padding: 40px;
    border-radius: 12px;
    color: white;
    margin-top: 40px;
}

.video-benefits h5 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-item i {
    font-size: 20px;
}

.benefit-item span {
    font-size: 16px;
}

/* CTA 섹션 */
.cta-section {
    text-align: center;
    margin-top: 60px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #d84030;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233, 75, 53, 0.3);
}

/* 공통 프로세스 섹션 */
.common-process {
    background: #f8f8f8;
    padding: 80px 0;
    margin-top: 80px;
    width: 100%;
}

.common-process .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.common-process .process-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: #333;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.common-process .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.common-process .step-item {
    text-align: center;
    position: relative;
}

/* 화살표 추가 */
.common-process .step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 60px;
    right: -20px;
    width: 0;
    height: 0;
    border-left: 10px solid #e94b35;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.common-process .step-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: white;
    border-radius: 50%;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

/* 이미지 로드 실패 시 대체 텍스트 */
.common-process .step-icon::before {
    content: attr(data-step);
    position: absolute;
    font-size: 48px;
    font-weight: 700;
    color: #e94b35;
    opacity: 0;
    transition: opacity 0.3s;
}

.common-process .step-icon.no-image::before {
    opacity: 1;
}

.common-process .step-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.common-process .step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 폰트 아이콘 스타일 */
.common-process .step-icon i {
    font-size: 50px;
    color: #e94b35;
    transition: all 0.3s ease;
}

.common-process .step-icon:hover i {
    transform: scale(1.1);
    color: #d63526;
}

/* 아이콘 배경 그라데이션 효과 */
.common-process .step-icon {
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
}

.common-process .step-icon:hover {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe0e0 100%);
}

.common-process .step-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.common-process .step-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    word-break: keep-all;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    /* 반응형에서 데스크탑 줄바꿈 숨기고 모바일 줄바꿈 표시 */
    .solution-section .desktop-br {
        display: none;
    }

    .solution-section .mobile-br {
        display: inline;
    }

    /* 헤더 조정 */
    #header {
        height: 60px;
    }
    
    #header .gnb {
        display: none;
    }
    
    #header .header-download {
        display: none;
    }
    
    #header .mobile-menu-btn {
        display: block;
    }
    
    /* 서브 비주얼 */
    .sub-visual {
        padding: 50px 0 40px;
    }
    
    .sub-visual .sub-title {
        font-size: 28px;
    }
    
    .sub-visual .sub-desc {
        font-size: 14px;
    }
    
    /* 서비스 네비게이션 조정 */
    .service-nav {
        top: 60px;
        height: auto;
    }
    
    .service-nav ul {
        flex-wrap: wrap;
        height: auto;
    }
    
    .service-nav li {
        flex: 1 1 50%;
        max-width: none;
    }
    
    .service-nav a {
        padding: 15px 10px;
        font-size: 13px;
        height: 50px;
    }
    
    /* 콘텐츠 래퍼 여백 조정 */
    .solution-content-wrapper {
        padding-top: 20px;
    }
    
    .solution-section {
        padding: 40px 0;
        margin: 10px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-desc {
        font-size: 16px;
    }

    /* CTA 섹션 반응형 */
    .solution-cta {
        padding: 60px 20px;
        margin: 20px 10px;
    }

    .solution-cta h2 {
        font-size: 32px;
    }

    .solution-cta p {
        font-size: 16px;
    }

    .solution-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .solution-cta .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .service-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-left h4,
    .content-right h4 {
        font-size: 24px;
    }
    
    .features,
    .viral-services,
    .design-features,
    .video-services {
        grid-template-columns: 1fr;
    }
    
    .stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .stat-item {
        flex: 1 1 45%;
    }
    
    .video-stats {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    /* 차트 모바일 최적화 */
    .chart-container {
        height: 220px;
        gap: 10px;
    }
    
    .chart-number {
        font-size: 20px;
        top: -30px;
    }
    
    .chart-bar {
        width: 50px;
    }
    
    .chart-item p {
        font-size: 12px;
    }

    /* 공통 프로세스 모바일 */
    .common-process {
        padding: 60px 0;
        margin-top: 60px;
    }

    .common-process .process-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .common-process .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 0 10px;
    }

    .common-process .step-item:not(:last-child)::after {
        display: none;
    }

    .common-process .step-icon {
        width: 90px;
        height: 90px;
        padding: 20px;
    }

    .common-process .step-item h3 {
        font-size: 18px;
    }

    .common-process .step-item p {
        font-size: 14px;
    }
}

/* 태블릿 반응형 */
@media (max-width: 1024px) {
    .common-process .process-steps {
        gap: 30px;
    }
    
    .common-process .step-item:not(:last-child)::after {
        right: -15px;
    }
    
    .common-process .step-icon {
        width: 100px;
        height: 100px;
        padding: 20px;
    }
    
    .common-process .step-item h3 {
        font-size: 20px;
    }

    .common-process .step-item p {
        font-size: 14px;
    }
}

/* CTA 섹션 스타일 */
.solution-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    margin: 40px 0;
    border-radius: 20px;
}

.solution-cta .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.solution-cta h2 {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.solution-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.solution-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.solution-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.solution-cta .cta-button.primary {
    background: white;
    color: var(--primary-color);
}

.solution-cta .cta-button.primary:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.solution-cta .cta-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.solution-cta .cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.solution-cta .cta-button i {
    font-size: 18px;
}
