/* 마케팅 페이지 전환 방식 전용 스타일 */

/* 공통 헤더 스타일 리셋 - 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;
}

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

.marketing-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; /* 미세 조정 */
}

/* 콘텐츠 래퍼 여백 조정 */
.marketing-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%;
    max-width: 600px;
    margin: 0 auto;
}

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

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

/* 마케팅 섹션 공통 */
.marketing-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);
}

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

/* 카카오 마케팅 */
.kakao-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;
}

.kakao-stats {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 12px;
}

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

.chart-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 200px;
}

.chart-item {
    text-align: center;
    flex: 1;
}

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

.chart-bar span {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

/* 구글 마케팅 */
.google-ecosystem {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 12px;
}

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

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

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

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

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

.global-reach {
    margin-top: 30px;
}

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

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

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

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

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

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

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

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

/* 메타 마케팅 */
.meta-platforms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.platform {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.platform-header {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.platform-header.fb {
    background: #1877f2;
}

.platform-header.ig {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.platform-header i {
    font-size: 24px;
}

.platform-header h5 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.platform ul {
    padding: 20px;
    list-style: none;
}

.platform li {
    padding: 8px 0;
    font-size: 14px;
    color: #666;
}

.meta-tools {
    margin-top: 40px;
}

.tools-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.tools-grid span {
    background: rgba(233, 75, 53, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--primary-color);
}

.meta-case {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 12px;
}

.case-study {
    margin-top: 20px;
}

.case-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

.case-header .industry {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.case-header .period {
    font-size: 14px;
    color: #666;
}

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

.case-results .result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.result .metric {
    font-size: 14px;
    color: #666;
}

.result .value {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.meta-targeting {
    margin-top: 30px;
}

.meta-targeting p {
    line-height: 2;
}

.meta-targeting i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* 샤오홍서 마케팅 */
.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;
}

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

.xhs-logo {
    text-align: center;
    margin-bottom: 40px;
}

.xhs-logo .chinese {
    font-size: 48px;
    font-weight: 700;
    color: #ff2442;
    display: block;
}

.xhs-logo .korean {
    font-size: 20px;
    color: #666;
    margin-top: 10px;
}

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

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

.xhs-stats h4 {
    font-size: 36px;
    font-weight: 700;
    color: #ff2442;
    margin-bottom: 10px;
}

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

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

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

.xhs-service .icon {
    width: 60px;
    height: 60px;
    background: #ff2442;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

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

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

.xhs-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: #ff2442;
    opacity: 0.3;
}

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

.timeline-dot {
    width: 40px;
    height: 40px;
    background: #ff2442;
    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;
}

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

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

/* 회사소개 페이지 스타일 */
.company-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);
}

.company-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.intro-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

/* 메인 타이틀 스타일 */
.main-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
    margin-bottom: 40px;
}

.main-title br {
    display: block;
}

.intro-text {
    font-size: 14px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 18px;
    word-break: keep-all;
}

.intro-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* 핵심 가치 */
.company-values {
    margin-bottom: 80px;
}

.company-values .sub-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(233, 75, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.value-item:hover .value-icon i {
    color: white;
}

.value-icon i {
    font-size: 36px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.value-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.value-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* 주요 서비스 */
.company-services {
    margin-bottom: 80px;
}

.company-services .sub-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
}

.service-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: none;
    padding: 0;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: #f8f8f8;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

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

.service-info p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* 회사 정보 테이블 */
.company-info-section {
    max-width: 800px;
    margin: 0 auto;
}

.company-info-section .sub-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
}

.info-table {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 16px;
}

.info-row {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.info-label {
    flex: 0 0 140px;
    font-weight: 600;
    color: #333;
}

.info-value {
    flex: 1;
    color: #666;
}

/* 주요 실적 섹션 */
.company-achievements {
    margin-bottom: 80px;
}

.company-achievements .sub-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
}

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

.achievement-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.achievement-item:hover .achievement-number,
.achievement-item:hover .achievement-desc {
    color: white;
}

.achievement-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
    transition: all 0.3s ease;
}

.achievement-desc {
    font-size: 16px;
    font-weight: 500;
    color: #666;
    transition: all 0.3s ease;
}

/* CEO 페이지 스타일 */
.ceo-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);
}

.ceo-message {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.ceo-message h3 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    line-height: 1.5;
}

.ceo-message h3 span {
    color: var(--primary-color);
}

.ceo-message p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    word-break: keep-all;
}

.ceo-content {
    margin-bottom: 80px;
}

.ceo-profile {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.profile-image {
    text-align: center;
}

.profile-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.profile-info {
    text-align: left;
}

.profile-info img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* 경영 철학 */
.company-philosophy {
    margin-bottom: 80px;
}

.company-philosophy .sub-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
}

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

.philosophy-item {
    text-align: center;
    padding: 40px 30px;
    background: #f8f8f8;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.philosophy-item:hover {
    background: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.philosophy-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.philosophy-icon i {
    font-size: 32px;
    color: white;
}

.philosophy-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.philosophy-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* 비전 & 미션 */
.company-vision {
    background: linear-gradient(135deg, #ff5e4d 0%, #ff8a80 100%);
    padding: 60px;
    border-radius: 20px;
    color: white;
}

.company-vision .sub-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: white;
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.vision-item,
.mission-item {
    text-align: center;
}

.vision-item h4,
.mission-item h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.vision-item p,
.mission-item p {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.95;
}

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

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

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

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

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

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

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

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

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

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

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

/* 모바일 반응형 */
@media (max-width: 768px) {
    /* 헤더 조정 */
    #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;
    }
    
    /* 콘텐츠 래퍼 여백 조정 */
    .marketing-content-wrapper {
        padding-top: 20px;
    }
    
    .marketing-section {
        padding: 40px 0;
        margin: 10px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-desc {
        font-size: 16px;
    }
    
    .service-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-left h4,
    .content-right h4 {
        font-size: 24px;
    }
    
    .features,
    .kakao-services,
    .google-features,
    .meta-platforms,
    .xhs-services {
        grid-template-columns: 1fr;
    }
    
    .stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .stat-item {
        flex: 1 1 45%;
    }
    
    .xhs-stats {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .ecosystem-grid {
        grid-template-columns: 1fr;
    }
    
    .case-results {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    /* 회사소개 페이지 모바일 */
    .company-section {
        padding: 40px 0;
        margin: 10px;
    }
    
    .intro-content h3 {
        font-size: 24px;
    }

    .main-title {
        font-size: 32px;
    }

    .intro-text {
        font-size: 16px;
    }

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

    .achievement-item {
        padding: 30px 20px;
    }

    .achievement-number {
        font-size: 36px;
    }

    .achievement-desc {
        font-size: 14px;
    }

    .about-cta {
        padding: 60px 20px;
        margin: 20px 10px;
    }

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

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

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

    .about-cta .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .value-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
    }
    
    .value-icon i {
        font-size: 28px;
    }
    
    .value-item h4 {
        font-size: 16px;
    }
    
    .value-item p {
        font-size: 13px;
    }
    
    .service-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-item {
        padding: 20px;
    }
    
    .info-row {
        flex-direction: row;
        align-items: flex-start;
        gap: 15px;
        padding: 15px 0;
    }
    
    .info-label {
        font-size: 14px;
        flex: 0 0 80px;
        font-weight: 600;
        color: #333;
    }
    
    .info-value {
        font-size: 14px;
        flex: 1;
        word-break: break-word;
        line-height: 1.5;
    }
    
    /* CEO 페이지 모바일 */
    .ceo-section {
        padding: 40px 0;
        margin: 10px;
    }
    
    .ceo-message {
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .ceo-message h3 {
        font-size: 22px;
    }
    
    .ceo-message p {
        font-size: 16px;
    }
    
    .ceo-profile {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .profile-image {
        text-align: center;
    }
    
    .profile-image img {
        max-width: 250px;
    }
    
    .profile-info {
        text-align: center;
    }
    
    .profile-info img {
        max-width: 300px;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .philosophy-item {
        padding: 30px 20px;
    }
    
    .vision-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .company-vision {
        padding: 40px 20px;
    }
    
    .vision-item p,
    .mission-item p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 28px;
    }

    .value-grid {
        grid-template-columns: 1fr;
    }

    .info-table {
        padding: 20px;
    }

    .achievement-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .achievement-item {
        padding: 25px 15px;
    }

    .about-cta h2 {
        font-size: 28px;
    }

    .about-cta p {
        font-size: 15px;
    }
}

/* 390px 이하 초소형 모바일 */
@media (max-width: 390px) {
    .info-row {
        padding: 12px 0;
    }
    
    .info-label {
        flex: 0 0 70px;
        font-size: 13px;
    }
    
    .info-value {
        font-size: 13px;
    }
    
    .info-table {
        padding: 15px;
    }
}