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

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

.marketing-page.active {
    display: block !important;
    opacity: 1 !important;
    animation: fadeInUp 0.5s ease-out;
}

/* 체험단 마케팅 페이지 특별 처리 - 버튼 표시 보장 */
#influencer-page.marketing-page.active {
    display: block !important;
    opacity: 1 !important;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        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%;
}

.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: 13px;
    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 .desktop-br {
    display: inline;
}

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

/* CTA 섹션 줄바꿈 제어 */
.marketing-cta .desktop-br {
    display: none;
}

.marketing-cta .mobile-br {
    display: none;
}

.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 {
    margin-top: 40px;
}

/* services-grid 컨테이너가 그리드를 담당 */
.xhs-services .services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.xhs-service {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
}

.xhs-service:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.1);
    transform: translateY(-3px);
    border-color: #e74c3c;
}

.xhs-service .icon {
    width: 60px;
    height: 60px;
    background: #e74c3c;
    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);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: #fff;
    color: #e74c3c;
    border: 2px solid #e74c3c;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    margin-left: 20px;
}

.btn-secondary:hover {
    background: #e74c3c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn-secondary i {
    font-size: 18px;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    /* 반응형 줄바꿈 제어 */
    .marketing-section .desktop-br {
        display: none;
    }

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

    /* CTA 섹션 반응형 줄바꿈 */
    .marketing-cta .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;
    }
    
    /* 콘텐츠 래퍼 여백 조정 */
    .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 {
        grid-template-columns: 1fr;
    }
    
    .xhs-services .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .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;
    }
}

/* 추가 스타일 - 리워드 마케팅 */
.reward-process {
    margin-top: 30px;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.process-step {
    text-align: center;
    flex: 1;
}

.process-step i {
    font-size: 40px;
    color: #e15022;
    margin-bottom: 10px;
    display: block;
}

.process-arrow {
    color: #e15022;
    font-size: 24px;
}

.reward-benefits {
    margin-top: 30px;
}

.reward-benefits ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

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

.reward-benefits li i {
    color: #e15022;
}

.partner-platforms {
    margin-top: 30px;
}

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

.platform-item {
    padding: 15px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

/* 추가 스타일 - 네이버 마케팅 */
.naver-process {
    margin-top: 30px;
}

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

.process-items .process-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    position: relative;
}

.process-items .step {
    font-size: 12px;
    color: #1ec800;
    margin-bottom: 10px;
    font-weight: 600;
}

.process-items i {
    font-size: 32px;
    color: #1ec800;
    margin-bottom: 10px;
    display: block;
}

.process-items h6 {
    font-size: 14px;
    margin: 0;
}

.naver-ad-types {
    margin-top: 30px;
}

.ad-type-list {
    margin-top: 20px;
}

.ad-type {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.ad-type:last-child {
    border-bottom: none;
}

.ad-type h6 {
    color: #1ec800;
    margin-bottom: 10px;
}

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

/* 추가 스타일 - 카카오 마케팅 */
.kakao-ad-types {
    margin-top: 30px;
}

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

.ad-type-card {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    text-align: center;
}

.ad-type-card i {
    font-size: 36px;
    color: #F7E600;
    margin-bottom: 10px;
    display: block;
}

.ad-type-card h6 {
    margin-bottom: 10px;
    color: #333;
}

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

.kakao-stats .stats-list {
    margin-top: 20px;
}

.kakao-stats .stat-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.kakao-stats .stat-item i {
    font-size: 24px;
    color: #F7E600;
    flex-shrink: 0;
}

.kakao-stats .stat-item strong {
    display: block;
    margin-bottom: 5px;
}

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

/* 추가 스타일 - 구글 마케팅 */
.google-ad-types {
    margin-top: 30px;
}

.ad-types-list {
    margin-top: 20px;
}

.ad-type-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.ad-type-item:last-child {
    border-bottom: none;
}

.ad-type-item .icon-wrap {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-type-item .icon-wrap i {
    font-size: 24px;
    color: #c5221f;
}

.ad-type-item .content {
    flex: 1;
}

.ad-type-item h6 {
    margin-bottom: 8px;
    color: #333;
}

.ad-type-item p {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.ad-type-item .billing {
    font-size: 12px;
    color: #999;
    font-style: italic;
}

.google-features {
    margin-top: 20px;
}

.google-features p {
    margin-bottom: 15px;
}

/* 추가 스타일 - 메타 마케팅 */
.meta-features {
    margin-top: 30px;
}

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

.feature {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.feature i {
    font-size: 36px;
    color: #2964ed;
    margin-bottom: 10px;
    display: block;
}

.feature h6 {
    margin-bottom: 10px;
}

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

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

.meta-services ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

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

.meta-services li i {
    color: #2964ed;
}

/* 반응형 추가 */
@media (max-width: 768px) {
    .process-flow {
        flex-direction: column;
        gap: 20px;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .process-items {
        grid-template-columns: 1fr;
    }
    
    .ad-types-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .ad-type-item {
        flex-direction: column;
        text-align: center;
    }
    
    .ad-type-item .icon-wrap {
        margin: 0 auto;
    }
}

/* 샤오홍서 추가 스타일 */
.market-insight {
    margin-top: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.market-insight h4 {
    margin-bottom: 20px;
    text-align: center;
}

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

.insight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
}

.insight-item i {
    font-size: 32px;
    color: #e74c3c;
    flex-shrink: 0;
}

.insight-item h5 {
    margin-bottom: 5px;
    font-size: 16px;
}

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

.keyword-cloud {
    margin-top: 20px;
}

.keyword-category {
    margin-bottom: 25px;
}

.keyword-category h5 {
    margin-bottom: 10px;
    color: #333;
}

.keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.keywords span {
    display: inline-block;
    padding: 8px 16px;
    background: #ffe4e1;
    color: #e74c3c;
    border-radius: 20px;
    font-size: 14px;
}

.xhs-pricing {
    margin-top: 30px;
}

.pricing-table {
    width: 100%;
    margin-top: 15px;
    border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.pricing-table th {
    background: #f8f9fa;
    font-weight: 600;
}

.pricing-table tr.highlight {
    background: #ffe4e1;
}

.platform-comparison {
    margin-top: 30px;
}

.platform-card {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 15px;
}

.platform-card h6 {
    margin-bottom: 10px;
    color: #e74c3c;
}

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

/* 리워드 마케팅 플랫폼 카드 스타일 */
.reward-platforms-section {
    margin: 60px 0;
}

.reward-platform-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.reward-platform-card:hover {
    border-color: #2ecc71;
    transform: translateY(-2px);
}

.platform-image {
    flex: 0 0 400px;
    margin-right: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-image img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
}

.platform-content {
    flex: 1;
}

.platform-content h3 {
    font-size: 26px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.platform-features {
    margin-bottom: 20px;
}

.platform-features .feature-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;  /* 2025-01-31: 왼쪽 정렬 명시 */
    margin-bottom: 12px;
    font-size: 16px;
    color: #444;
    line-height: 1.5;
}

.platform-features .feature-item i {
    color: #2ecc71;
    margin-right: 12px;
    font-size: 18px;
    min-width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.platform-highlight {
    background: #f0f8f4;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 3px solid #2ecc71;
    font-size: 15px;
    color: #333;
}

.platform-highlight i {
    color: #f39c12;
    margin-right: 8px;
    font-size: 16px;
}

.platform-highlight strong {
    color: #222;
    margin-right: 5px;
}

/* 리워드 마케팅 효과 그리드 */
.reward-benefits {
    margin: 50px 0;
}

.reward-benefits h5 {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 25px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.benefit-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: #2ecc71;
    transform: translateY(-2px);
}

.benefit-card i {
    font-size: 36px;
    color: #2ecc71;
    margin-bottom: 15px;
}

.benefit-card h6 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

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

/* 플랫폼 로고 섹션 */
.partner-platforms {
    margin-top: 50px;
}

.partner-platforms h5 {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    text-align: center;
    margin-bottom: 25px;
}

.platform-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 30px;
    background: #fafafa;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    flex-wrap: wrap;
}

.platform-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
}

.logo-placeholder {
    padding: 12px 25px;
    background: #fff;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #444;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.logo-placeholder:hover {
    transform: translateY(-2px);
}

.logo-placeholder.toss {
    color: #0064FF;
    border-color: #0064FF;
}

.logo-placeholder.okcashbag {
    color: #FF6B00;
    border-color: #FF6B00;
}

.logo-placeholder.cashwalk {
    color: #00C896;
    border-color: #00C896;
}

/* 프로세스 플로우 개선 */
.reward-process {
    margin: 50px 0;
    padding: 40px;
    background: #fafafa;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.reward-process h5 {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    text-align: center;
    margin-bottom: 35px;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.process-step i {
    font-size: 32px;
    color: #2ecc71;
    margin-bottom: 12px;
    background: #e8f8f5;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step span {
    font-size: 14px;
    color: #444;
    font-weight: 500;
}

.process-arrow {
    color: #ccc;
    font-size: 20px;
    margin: 0 10px;
}

/* 제안서 다운로드 버튼 스타일 */
.btn-download-proposal {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #FF4B4B;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 75, 75, 0.3);
}

.btn-download-proposal:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 75, 75, 0.4);
    background: #e63636;
}

/* 토스 버튼 스타일 */
.btn-download-proposal.toss-style {
    background: #0064FF;
    box-shadow: 0 4px 10px rgba(0, 100, 255, 0.3);
}

.btn-download-proposal.toss-style:hover {
    background: #0050CC;
    box-shadow: 0 6px 20px rgba(0, 100, 255, 0.4);
}

.btn-download-proposal i {
    font-size: 18px;
}

.btn-download-proposal span {
    font-size: 16px;
}

/* 샤오홍슈 버튼 스타일 */
.xiaohongshu-page .btn-download-proposal {
    background: #E74032;
    box-shadow: 0 4px 10px rgba(231, 64, 50, 0.3);
}

.xiaohongshu-page .btn-download-proposal:hover {
    background: #d03020;
    box-shadow: 0 6px 20px rgba(231, 64, 50, 0.4);
}

/* 반응형 조정 */
@media (max-width: 768px) {
    .btn-download-proposal {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .btn-download-proposal i {
        font-size: 16px;
    }
    
    .btn-download-proposal span {
        font-size: 14px;
    }
}

/* 반응형 추가 */
@media (max-width: 1200px) {
    .platform-image {
        flex: 0 0 380px;
        margin-right: 40px;
    }
    
    .platform-content h3 {
        font-size: 28px;
    }
    
    .feature-item {
        font-size: 16px;
    }
}

@media (max-width: 1024px) {
    .reward-platform-card {
        flex-direction: column;
        text-align: center;
        padding: 35px;
    }
    
    .platform-image {
        margin-right: 0;
        margin-bottom: 30px;
        flex: 0 0 auto;
        width: 100%;
        max-width: 450px;
    }
    
    .platform-content {
        width: 100%;
    }
    
    /* 2025-01-31: 리워드 섹션 아이콘 왼쪽 정렬 수정 */
    .platform-features .feature-item {
        justify-content: flex-start !important;  /* 리워드 섹션은 항상 왼쪽 정렬 */
    }
    
    /* 다른 섹션의 feature-item은 중앙정렬 유지 */
    .feature-item:not(.platform-features .feature-item) {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .insight-grid {
        grid-template-columns: 1fr;
    }
    
    .keywords {
        justify-content: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .platform-logos {
        flex-direction: column;
        gap: 20px;
    }
    
    .reward-platform-card {
        padding: 25px;
        min-height: auto;
    }
    
    .platform-image {
        max-width: 350px;
    }
    
    .platform-content h3 {
        font-size: 24px;
    }
    
    .feature-item {
        font-size: 15px;
    }
    
    .feature-item i {
        font-size: 18px;
    }
    
    .platform-highlight {
        padding: 15px 20px;
        font-size: 14px;
    }
}

/* 광고 예시 섹션 - 2025-01-31 추가 */
.ad-examples-section {
    margin-top: 60px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 16px;
}

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

.ad-examples-grid {
    display: grid;
    gap: 30px;
    margin-top: 30px;
}

/* 네이버 광고 예시 */
.naver-examples .ad-examples-grid {
    grid-template-columns: repeat(2, 1fr);
}

/* 구글 광고 예시 */
.google-examples .ad-examples-grid {
    grid-template-columns: repeat(2, 1fr);
}

/* 카카오 광고 예시 */
.kakao-examples .ad-examples-grid {
    grid-template-columns: repeat(2, 1fr);
}

/* 메타 광고 예시 */
.meta-examples .ad-examples-grid {
    grid-template-columns: repeat(2, 1fr);
}

.ad-example-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.ad-example-image {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* 4:3 비율로 더 크게 */
    overflow: hidden;
    background: #f0f0f0;
}

.ad-example-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 10px; /* 이미지 주변 여백 */
}

.ad-example-info {
    padding: 20px;
}

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

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

/* 반응형 처리 */
@media (max-width: 1024px) {
    .ad-examples-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .ad-examples-section {
        padding: 30px 20px;
    }
    
    .ad-examples-section h5 {
        font-size: 20px;
    }
    
    .ad-example-info h6 {
        font-size: 16px;
    }
}

/* ========================================
   체험단 마케팅 전용 스타일 - 최종 오버라이드
   ======================================== */

/* 체험단 페이지가 active일 때 CTA 섹션 표시 및 중앙 정렬 */
#influencer-page.active .cta-section {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 20px !important;
    margin: 60px auto 0 !important;
    padding: 0 20px !important;
    text-align: center !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    background: none !important;
    max-width: 1200px !important;
    box-sizing: border-box !important;
}

/* 체험단 페이지 버튼 스타일 - active 상태 관계없이 표시 */
#influencer-page .cta-section .btn-primary,
#influencer-page .cta-section .btn-secondary {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-decoration: none !important;
    cursor: pointer !important;
}

/* 버튼 hover 효과 추가 */
#influencer-page .cta-section .btn-primary:hover {
    background: #d84030 !important;
    transform: translateY(-2px) !important;
}

#influencer-page .cta-section .btn-secondary:hover {
    background: #e74c3c !important;
    color: white !important;
    transform: translateY(-2px) !important;
}

/* 체험단 섹션 콘텐츠 중앙 정렬 */
#influencer-page .content-full {
    text-align: center;
}

#influencer-page .content-full h4 {
    text-align: center;
    margin-bottom: 30px;
}

/* 기본 리스트 스타일 */
.basic-list {
    list-style: none;
    padding: 0;
    margin: 20px auto;
    max-width: 600px;
    display: inline-block;
    text-align: left;
}

.basic-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.basic-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

/* 프로세스 섹션 */
.influencer-process {
    margin-top: 60px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 20px;
}

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

.process-simple {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

/* 프로세스 연결선 */
.process-simple::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.process-item-simple {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-num {
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

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

/* 가격표 섹션 */
.influencer-pricing {
    margin-top: 60px;
}

.influencer-pricing h5 {
    font-size: 24px;
    font-weight: 600;
    color: #222;
    margin-bottom: 30px;
    text-align: center;
}

.pricing-table-wrapper {
    overflow-x: auto;
    margin-bottom: 20px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.pricing-table thead tr {
    background: var(--primary-color);
    color: white;
}

.pricing-table th {
    padding: 20px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
}

.pricing-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table tbody tr:hover {
    background: #fafafa;
}

.pricing-table td[data-label="플랫폼"] {
    font-weight: 600;
    color: #333;
}

.pricing-table td[data-label="Basic"],
.pricing-table td[data-label="Premier"] {
    font-weight: 500;
    color: var(--primary-color);
}

.influencer-pricing .note {
    text-align: center;
    font-size: 14px;
    color: #888;
    margin-top: 15px;
}

/* 반응형 - 태블릿 */
@media (max-width: 1024px) {
    .process-simple {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .process-simple::before {
        display: none;
    }
    
    .process-item-simple {
        flex: 1 1 calc(50% - 15px);
    }
}

/* 반응형 - 중간 해상도 (481px ~ 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    #influencer-page .inner {
        padding: 0 20px !important;
    }
    
    #influencer-page .content-full {
        padding: 0 15px;
    }
    
    #influencer-page .basic-list {
        font-size: 15px;
        padding: 0 10px;
    }
    
    /* 섹션 헤더 */
    #influencer-page .section-header {
        padding: 0 10px;
    }
    
    #influencer-page .section-title {
        font-size: 28px;
    }
    
    #influencer-page .section-desc {
        font-size: 15px;
        line-height: 1.6;
    }
    
    /* 프로세스 섹션 - 2열로 배치 */
    .influencer-process {
        padding: 30px 15px;
    }
    
    .process-simple {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .process-item-simple {
        flex: 1 1 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
    
    .process-num {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 18px;
    }
    
    .process-item-simple h6 {
        font-size: 16px;
    }
    
    .process-item-simple p {
        font-size: 13px;
    }
    
    /* 가격표 - 가로 스크롤 추가 */
    .pricing-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -15px;
        padding: 0 15px;
    }
    
    .pricing-table {
        min-width: 500px; /* 테이블 최소 너비 설정 */
        font-size: 14px;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 15px 10px;
    }
    
    /* 스크롤 인디케이터 추가 */
    .pricing-table-wrapper::after {
        content: '→ 스크롤하여 더 보기';
        display: block;
        text-align: center;
        font-size: 12px;
        color: #999;
        margin-top: 10px;
    }
    
    /* CTA 섹션 */
    #influencer-page.active .cta-section {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 0 !important;
        margin: 40px auto !important;
    }
    
    #influencer-page .btn-primary,
    #influencer-page .btn-secondary {
        min-width: 280px;
        max-width: 320px;
        width: 90%;
    }
}

/* 반응형 - 모바일 */
@media (max-width: 768px) {
    /* 체험단 페이지 전체 중앙 정렬 보장 */
    #influencer-page .inner {
        padding: 0 15px !important;
    }
    
    #influencer-page .marketing-section {
        margin: 10px !important;
    }
    
    /* 체험단 콘텐츠 정렬 조정 */
    #influencer-page .basic-list {
        max-width: 100%;
        padding: 0 20px;
        margin: 0 auto;
    }
    
    #influencer-page .content-full {
        padding: 0 15px;
    }
    
    #influencer-page .content-full h4 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .influencer-process {
        padding: 30px 20px;
    }
    
    .process-simple {
        flex-direction: column;
        gap: 30px;
    }
    
    .process-item-simple {
        flex: 1 1 100%;
    }
    
    /* CTA 버튼 반응형 - 중앙 정렬 강화 */
    #influencer-page.active .cta-section {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        padding: 0 15px !important;
        box-sizing: border-box !important;
        margin: 40px auto !important;
        align-items: center !important;
    }
    
    #influencer-page .btn-primary,
    #influencer-page .btn-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        margin: 10px auto !important;
        display: flex !important;
    }
    
    #influencer-page .btn-secondary {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .process-num {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 18px;
    }
    
    .process-item-simple h6 {
        font-size: 16px;
    }
    
    /* 가격표 모바일 카드형 레이아웃 */
    .pricing-table thead {
        display: none;
    }
    
    .pricing-table tbody tr {
        display: block;
        margin-bottom: 20px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }
    
    .pricing-table td {
        display: block;
        text-align: left;
        padding: 15px 20px;
        position: relative;
        padding-left: 120px;
    }
    
    .pricing-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 20px;
        font-weight: 600;
        color: #666;
        font-size: 14px;
    }
    
    .pricing-table td[data-label="플랫폼"] {
        background: var(--primary-color);
        color: white;
        text-align: center;
        padding-left: 20px;
        font-size: 18px;
    }
    
    .pricing-table td[data-label="플랫폼"]::before {
        display: none;
    }
}

/* ========================================
   8개 탭 반응형 조정
   ======================================== */

/* 1200px 이하: 탭 폰트 크기 조정 */
@media (max-width: 1200px) {
    .service-nav a {
        font-size: 14px;
        padding: 0 15px;
    }
}

/* 1024px 이하: 2줄로 분리 */
@media (max-width: 1024px) {
    .service-nav ul {
        flex-wrap: wrap;
        height: auto;
        gap: 0;
    }
    
    .service-nav li {
        flex: 1 1 25%;
        max-width: 25%;
    }
    
    .service-nav a {
        padding: 15px 10px;
        font-size: 13px;
        height: 50px;
    }
}

/* 768px 이하: 2열로 변경 (기존 스타일 유지) */
@media (max-width: 768px) {
    .service-nav li {
        flex: 1 1 50% !important;
        max-width: none !important;
    }
}

/* ========================================
   체험단 마케팅 CTA 섹션 최종 오버라이드
   ======================================== */

/* 체험단 페이지 CTA 섹션 - 기본 숨김 해제 */
#influencer-page .cta-section {
    display: none; /* 기본적으로 숨김 */
}

/* 체험단 페이지가 active일 때 CTA 섹션 표시 */
#influencer-page.active .cta-section {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 20px !important;
    margin: 60px auto 0 !important;
    padding: 0 20px !important;
    text-align: center !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    background: transparent !important;
    max-width: 1200px !important;
    box-sizing: border-box !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* 체험단 페이지 버튼 강제 표시 */
#influencer-page.active .cta-section .btn-primary,
#influencer-page.active .cta-section .btn-secondary {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    background-color: #e74c3c !important; /* 주 버튼 배경색 */
    color: white !important;
    padding: 18px 40px !important;
    border-radius: 50px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    cursor: pointer !important;
    align-items: center !important;
    gap: 10px !important;
    transition: all 0.3s ease !important;
}

/* 두 번째 버튼(PDF 다운로드) 스타일 */
#influencer-page.active .cta-section .btn-secondary {
    background-color: white !important;
    color: #e74c3c !important;
    border: 2px solid #e74c3c !important;
    padding: 15px 35px !important;
}

/* 버튼 hover 효과 */
#influencer-page.active .cta-section .btn-primary:hover {
    background-color: #d84030 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3) !important;
}

#influencer-page.active .cta-section .btn-secondary:hover {
    background-color: #e74c3c !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3) !important;
}

/* 중간 해상도 반응형 (481px ~ 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    #influencer-page.active .cta-section {
        flex-direction: row !important;
        padding: 0 20px !important;
        margin: 50px auto !important;
    }
    
    #influencer-page.active .cta-section .btn-primary,
    #influencer-page.active .cta-section .btn-secondary {
        min-width: 240px !important;
        padding: 15px 25px !important;
        font-size: 15px !important;
    }
}

/* 모바일 반응형 */
@media (max-width: 480px) {
    #influencer-page.active .cta-section {
        flex-direction: column !important;
        padding: 0 15px !important;
        margin: 40px auto !important;
    }
    
    #influencer-page.active .cta-section .btn-primary,
    #influencer-page.active .cta-section .btn-secondary {
        width: 100% !important;
        max-width: 320px !important;
        justify-content: center !important;
        margin: 10px auto !important;
    }
}

/* ========================================
   체험단 페이지 481px~767px 레이아웃 문제 해결
   ======================================== */
@media (min-width: 481px) and (max-width: 767px) {
    /* 체험단 페이지 전체 너비 보장 */
    #influencer-page {
        width: 100% !important;
        overflow-x: hidden !important;
    }
    
    /* marketing-section의 20px 마진 제거 */
    #influencer-page .marketing-section {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;  /* 좌우 마진 완전 제거 */
        padding: 40px 0 !important;
        border-radius: 0 !important;  /* 모서리 둥글기도 제거 */
        box-shadow: none !important;  /* 그림자도 제거 */
    }
    
    /* inner의 max-width 제한 해제 및 패딩 최소화 */
    #influencer-page .inner {
        width: 100% !important;
        max-width: none !important;  /* 1200px 제한 해제 */
        padding: 0 15px !important;  /* 24px → 15px로 축소 */
        margin: 0 !important;
        box-sizing: border-box !important;
    }
    
    /* 모든 컨텐츠 섹션 너비 조정 */
    #influencer-page .service-content {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    #influencer-page .content-full {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important;
        margin: 0 auto 40px !important;
        box-sizing: border-box !important;
    }
    
    /* 프로세스 섹션 너비 */
    #influencer-page .influencer-process {
        width: 100% !important;
        max-width: 100% !important;
        margin: 40px 0 !important;
        padding: 30px 15px !important;
        box-sizing: border-box !important;
    }
    
    /* 가격표 섹션 너비 */
    #influencer-page .influencer-pricing {
        width: 100% !important;
        max-width: 100% !important;
        margin: 40px 0 !important;
        padding: 0 !important;
    }
    
    /* 가격표 래퍼 조정 */
    #influencer-page .pricing-table-wrapper {
        width: calc(100% + 30px) !important;
        margin: 0 -15px !important;
        padding: 0 15px !important;
        overflow-x: auto !important;
    }
}