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

/* 서비스 네비게이션 */
.service-nav {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 60px;
    z-index: 100;
    transition: all 0.3s ease;
}

.service-nav.fixed {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.service-nav a {
    display: block;
    padding: 20px;
    text-align: center;
    color: #666;
    font-weight: 500;
    font-size: 13px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.service-nav a:hover,
.service-nav a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: rgba(78, 205, 196, 0.05);
}

/* 마케팅 섹션 공통 */
.marketing-section {
    padding: 100px 0;
    position: relative;
}

.marketing-section.alt-bg {
    background: #f8f8f8;
}

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

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

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

.service-content.reverse {
    direction: rtl;
}

.service-content.reverse > * {
    direction: ltr;
}

.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: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    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: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.15);
}

.service-card .icon {
    width: 60px;
    height: 60px;
    background: rgba(78, 205, 196, 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: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.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(78, 205, 196, 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: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.eco-item:hover {
    background: rgba(78, 205, 196, 0.05);
}

.eco-item img {
    width: 60px;
    height: 60px;
    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(78, 205, 196, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--primary-color);
}

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

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

/* 샤오홍서 마케팅 */
.marketing-section.special {
    background: linear-gradient(135deg, #f0fffe 0%, #e6fffe 100%);
}

.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: #4ECDC4;
    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: #4ECDC4;
    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: #4ECDC4;
    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: #4ECDC4;
    opacity: 0.3;
}

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

.timeline-dot {
    width: 40px;
    height: 40px;
    background: #4ECDC4;
    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, #4ECDC4 0%, #7FDBDA 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;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .service-nav ul {
        flex-wrap: wrap;
    }
    
    .service-nav li {
        flex: 1 1 50%;
        max-width: none;
    }
    
    .service-nav a {
        padding: 15px 10px;
        font-size: 14px;
    }
    
    .service-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-content.reverse {
        direction: ltr;
    }
    
    .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;
    }
    
    .marketing-section {
        padding: 60px 0;
    }
    
    .marketing-section .section-title {
        font-size: 32px;
    }
    
    .marketing-section .section-desc {
        font-size: 16px;
    }
    
    .content-left h4,
    .content-right h4 {
        font-size: 24px;
    }
    
    .ecosystem-grid {
        grid-template-columns: 1fr;
    }
    
    .case-results {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    /* 체험단 마케팅 반응형 */
    .package-cards {
        grid-template-columns: 1fr;
    }
    
    .case-studies {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta {
        width: 100%;
        max-width: 300px;
    }
    
    /* 네이버 통계 박스 반응형 */
    .naver-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* 프로세스 반응형 */
    .process-simple {
        grid-template-columns: 1fr;
    }
    
    /* 광고 타입 리스트 반응형 */
    .ad-type-list {
        grid-template-columns: 1fr;
    }
    
    /* CTA 섹션 반응형 */
    .marketing-cta {
        padding: 40px 20px;
    }
    
    .marketing-cta h4 {
        font-size: 24px;
    }
    
    .marketing-cta p {
        font-size: 16px;
    }
}

/* 체험단 마케팅 추가 스타일 */
.experience-image {
    background: linear-gradient(135deg, var(--primary-color) 0%, #7FDBDA 100%);
    padding: 80px 40px;
    border-radius: 12px;
    text-align: center;
    color: white;
}

.experience-image i {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.experience-image h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.experience-image p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
    color: white;
    margin: 0;
}

/* 패키지 카드 그리드 */
.package-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* 추천 서비스 카드 */
.service-card.featured {
    position: relative;
    border: 2px solid var(--primary-color);
}

.badge-best {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #4ECDC4;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* 버튼 스타일 */
.btn-card {
    display: inline-block;
    width: 100%;
    padding: 12px 30px;
    border-radius: 50px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 20px;
    text-decoration: none;
}

.btn-card.btn-outline {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-card.btn-primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

/* 사례 연구 그리드 */
.case-studies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.case-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.case-icon {
    width: 60px;
    height: 60px;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

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

.case-category {
    display: inline-block;
    padding: 4px 12px;
    background: #f0f0f0;
    border-radius: 20px;
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

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

.case-results {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.case-results .result {
    flex: 1;
    text-align: center;
}

.case-results .label {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
}

.case-results .value {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.case-results .value.highlight {
    color: var(--primary-color);
}

/* CTA 섹션 */
.cta-section {
    background: linear-gradient(135deg, #333 0%, #111 100%);
    color: white;
    text-align: center;
}

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

.cta-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 40px;
}

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

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

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

.btn-cta.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* 체험단 마케팅 예시 플레이스홀더 */
.example-placeholder {
    background: linear-gradient(135deg, var(--primary-color) 0%, #7FDBDA 100%);
    padding: 40px 20px;
    border-radius: 8px;
    text-align: center;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.example-placeholder i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.example-placeholder span {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 마케팅 CTA 섹션 (기본) */
.marketing-cta {
    background: linear-gradient(135deg, #333 0%, #111 100%);
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    margin-top: 60px;
}

.marketing-cta h4 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.marketing-cta p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 40px;
}

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

/* 버튼 기본 스타일 */
.btn-primary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-primary:hover,
.btn-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

.btn-outline:hover {
    background: white;
    color: #333;
}

/* 네이버 통계 박스 기본 스타일 */
.naver-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.naver-stat-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.naver-stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.15);
}

.naver-stat-box i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.naver-stat-box h4 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.naver-stat-box p {
    font-size: 16px;
    color: #666;
}

/* 프로세스 스타일 */
.naver-process {
    margin-top: 60px;
}

.naver-process h5 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
    color: #333;
}

.process-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.process-item-simple {
    text-align: center;
}

.process-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.process-num {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}

.process-header i {
    font-size: 32px;
    color: var(--primary-color);
}

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

.process-item-simple p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* 광고 타입 리스트 */
.naver-ad-types {
    margin-top: 60px;
}

.naver-ad-types h5 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
    color: #333;
}

.ad-type-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.ad-type {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.ad-type:hover {
    border-color: var(--primary-color);
    background: rgba(78, 205, 196, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.ad-type h6 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.ad-type h6 i {
    font-size: 20px;
    color: var(--primary-color);
}

.ad-type p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ========================================
   체험단 마케팅 페이지 전용 스타일
   보라색 테마 (#6c5ce7)
======================================== */

/* 체험단 통계 박스 */
#experience-page .naver-stat-box {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(108, 92, 231, 0.2);
}

#experience-page .naver-stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.4);
}

#experience-page .naver-stat-box i {
    font-size: 48px;
    color: white;
    opacity: 0.95;
    margin-bottom: 20px;
}

#experience-page .naver-stat-box h4 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

#experience-page .naver-stat-box p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
}

/* 체험단 프로세스 */
#experience-page .process-num {
    background: #6c5ce7;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}

#experience-page .process-header i {
    font-size: 32px;
    color: #6c5ce7;
}

#experience-page .process-item-simple:hover .process-num {
    background: #5a4ad1;
    transform: scale(1.1);
}

/* 체험단 광고 타입 리스트 */
#experience-page .ad-type {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

#experience-page .ad-type:hover {
    border-color: #6c5ce7;
    background: rgba(108, 92, 231, 0.03);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.15);
}

#experience-page .ad-type h6 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

#experience-page .ad-type h6 i {
    font-size: 20px;
    color: #6c5ce7;
}

#experience-page .ad-type h6 small {
    color: #4ECDC4;
    font-weight: 400;
    font-size: 12px;
}

#experience-page .ad-type p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* 체험단 CTA 섹션 */
#experience-page .marketing-cta,
.experience-cta {
    background: linear-gradient(135deg, #6c5ce7 0%, #74b9ff 100%);
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.2);
}

#experience-page .marketing-cta h4,
.experience-cta h4 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

#experience-page .marketing-cta p,
.experience-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
}

#experience-page .cta-buttons,
.experience-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

#experience-page .btn-outline,
.experience-cta .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    background: transparent;
    color: white;
    border: 2px solid white;
    cursor: pointer;
}

#experience-page .btn-outline:hover,
.experience-cta .btn-outline:hover {
    background: white;
    color: #6c5ce7;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* 체험단 페이지 헤더 색상 보정 */
#experience-page .section-title {
    color: #333;
}

#experience-page .section-desc {
    color: #666;
}

#experience-page h4 {
    color: #333;
}

#experience-page p {
    color: #666;
}

/* 체험단 feature 아이템 */
#experience-page .feature-item i {
    color: #6c5ce7;
}

/* ========================================
   광고 예시 섹션 (네이버, 카카오, 구글, 메타)
======================================== */

/* 광고 예시 섹션 컨테이너 */
.ad-examples-section {
    margin-top: 60px;
    padding: 40px 0;
}

.ad-examples-section h5 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
    color: #333;
}

/* 광고 예시 그리드 */
.ad-examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

/* 광고 예시 아이템 */
.ad-example-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.ad-example-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* 광고 예시 이미지 */
.ad-example-image {
    width: 100%;
    height: 250px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 10px;
}

.ad-example-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.ad-example-item:hover .ad-example-image img {
    transform: scale(1.05);
}

/* 광고 예시 정보 */
.ad-example-info {
    padding: 20px;
}

.ad-example-info h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.ad-example-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* 네이버 광고 예시 특별 스타일 */
.naver-examples .ad-example-item:hover {
    box-shadow: 0 10px 30px rgba(3, 199, 90, 0.15);
}

/* 카카오 광고 예시 특별 스타일 */
.kakao-examples .ad-example-item:hover {
    box-shadow: 0 10px 30px rgba(254, 229, 0, 0.15);
}

/* 구글 광고 예시 특별 스타일 */
.google-examples .ad-example-item:hover {
    box-shadow: 0 10px 30px rgba(66, 133, 244, 0.15);
}

/* 메타 광고 예시 특별 스타일 */
.meta-examples .ad-example-item:hover {
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.15);
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .ad-examples-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ad-example-image {
        height: 200px;
        padding: 8px;
    }
    
    .ad-examples-section {
        padding: 30px 0;
    }
    
    .ad-examples-section h5 {
        font-size: 20px;
        margin-bottom: 30px;
    }
}