/* Extracted from main/landing-brand.html */

/* Brand Page Specific Styles - #FF007F 블루 컨셉 */
:root {
    --inf-primary: #FF007F;
    --inf-primary-light: #FF4DA6;
    --inf-accent: #FF007F;
    --inf-gradient: #FF007F;
    --inf-bg-dark: #1a0a12;
    --inf-text-muted: #FF4DA6;
}

/* ========== HERO SECTION - 밝은 배경 (portrait.so style) ========== */
.inf-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 40px 80px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: none;
}

/* Hero 하단 섹션 전환 */
.inf-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.04);
    pointer-events: none;
    z-index: 5;
}

/* 베이스 - 순수 흰색 */
.inf-hero .bg-base {
    position: absolute;
    inset: 0;
    background: #ffffff;
}

/* 오로라 효과 - 숨김 (순수 흰색) */
.inf-hero .aurora-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    display: none;
}

.inf-hero .aurora {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: conic-gradient(from 0deg at 50% 50%,
            transparent 0deg,
            rgba(255, 0, 127, 0.08) 60deg,
            rgba(212, 0, 107, 0.1) 120deg,
            transparent 180deg,
            rgba(255, 77, 166, 0.06) 240deg,
            rgba(255, 0, 127, 0.08) 300deg,
            transparent 360deg);
    animation: auroraRotate 30s linear infinite;
}

.inf-hero .aurora-2 {
    animation-duration: 25s;
    animation-direction: reverse;
    opacity: 0.4;
}

@keyframes auroraRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* 성운 효과 - 숨김 (순수 흰색) */
.inf-hero .nebula {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    display: none;
}

.inf-hero .nebula-1 {
    width: 600px;
    height: 600px;
    top: -10%;
    right: -10%;
    background: radial-gradient(circle, rgba(255, 0, 127, 0.4) 0%, rgba(212, 0, 107, 0.2) 40%, transparent 70%);
    animation: nebulaFloat 20s ease-in-out infinite;
}

.inf-hero .nebula-2 {
    width: 500px;
    height: 500px;
    bottom: 10%;
    left: -5%;
    background: radial-gradient(circle, rgba(255, 77, 166, 0.3) 0%, rgba(255, 0, 127, 0.15) 40%, transparent 70%);
    animation: nebulaFloat 25s ease-in-out infinite reverse;
}

.inf-hero .nebula-3 {
    width: 400px;
    height: 400px;
    top: 40%;
    right: 20%;
    background: radial-gradient(circle, rgba(212, 0, 107, 0.35) 0%, rgba(255, 0, 127, 0.1) 40%, transparent 70%);
    animation: nebulaFloat 22s ease-in-out infinite;
    animation-delay: -5s;
}

@keyframes nebulaFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -20px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 30px) scale(0.95);
    }

    75% {
        transform: translate(-30px, -10px) scale(1.02);
    }
}

/* 별 효과 - 밝은 배경에서 숨김 */
.inf-hero .stars-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    display: none;
}

.inf-hero .stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(1px 1px at 160px 120px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(2px 2px at 200px 50px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 250px 150px, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 300px 30px, rgba(255, 255, 255, 0.9), transparent);
    background-repeat: repeat;
    background-size: 350px 200px;
    animation: starsMove 100s linear infinite;
}

@keyframes starsMove {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-200px);
    }
}

/* 빛나는 구체 */
.inf-hero .glow-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.inf-hero .glow-orb {
    display: none;
}

.inf-hero .glow-orb-1 {
    display: none;
}

.inf-hero .glow-orb-2 {
    display: none;
}

@keyframes orbPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

/* 두 번째 별 레이어 */
.inf-hero .stars-2 {
    background-image:
        radial-gradient(1px 1px at 50px 60px, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 100px 100px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 180px 30px, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 220px 90px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 280px 140px, rgba(255, 255, 255, 0.5), transparent);
    background-size: 300px 180px;
    animation: starsMove 150s linear infinite;
    opacity: 0.6;
}

/* 유성 효과 - 밝은 배경에서 숨김 */
.inf-hero .shooting-stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 3;
    display: none;
}

.inf-hero .shooting-star {
    position: absolute;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), transparent);
    border-radius: 50%;
    animation: shooting 3s ease-in-out infinite;
    opacity: 0;
}

.inf-hero .shooting-star:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.inf-hero .shooting-star:nth-child(2) {
    top: 30%;
    left: 60%;
    animation-delay: 2s;
    width: 80px;
}

.inf-hero .shooting-star:nth-child(3) {
    top: 50%;
    left: 40%;
    animation-delay: 4s;
    width: 120px;
}

.inf-hero .shooting-star:nth-child(4) {
    top: 20%;
    left: 80%;
    animation-delay: 6s;
    width: 90px;
}

.inf-hero .shooting-star:nth-child(5) {
    top: 60%;
    left: 10%;
    animation-delay: 8s;
}

@keyframes shooting {
    0% {
        transform: translateX(0) translateY(0) rotate(-45deg);
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    20% {
        transform: translateX(300px) translateY(300px) rotate(-45deg);
        opacity: 0;
    }

    100% {
        transform: translateX(300px) translateY(300px) rotate(-45deg);
        opacity: 0;
    }
}

/* Floating Particles */
.inf-hero .particles-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 7;
    overflow: hidden;
    pointer-events: none;
}

.inf-hero .particle {
    display: none;
}

.inf-hero .particle:nth-child(1) {
    width: 4px;
    height: 4px;
    left: 5%;
    animation-delay: 0s;
}

.inf-hero .particle:nth-child(2) {
    width: 6px;
    height: 6px;
    left: 15%;
    animation-delay: 2s;
}

.inf-hero .particle:nth-child(3) {
    width: 3px;
    height: 3px;
    left: 25%;
    animation-delay: 4s;
}

.inf-hero .particle:nth-child(4) {
    width: 5px;
    height: 5px;
    left: 35%;
    animation-delay: 1s;
}

.inf-hero .particle:nth-child(5) {
    width: 4px;
    height: 4px;
    left: 45%;
    animation-delay: 3s;
}

.inf-hero .particle:nth-child(6) {
    width: 7px;
    height: 7px;
    left: 55%;
    animation-delay: 5s;
}

.inf-hero .particle:nth-child(7) {
    width: 3px;
    height: 3px;
    left: 65%;
    animation-delay: 2s;
}

.inf-hero .particle:nth-child(8) {
    width: 5px;
    height: 5px;
    left: 75%;
    animation-delay: 4s;
}

.inf-hero .particle:nth-child(9) {
    width: 4px;
    height: 4px;
    left: 85%;
    animation-delay: 1s;
}

.inf-hero .particle:nth-child(10) {
    width: 6px;
    height: 6px;
    left: 95%;
    animation-delay: 3s;
}

.inf-hero .particle:nth-child(11) {
    width: 3px;
    height: 3px;
    left: 10%;
    animation-delay: 6s;
}

.inf-hero .particle:nth-child(12) {
    width: 5px;
    height: 5px;
    left: 30%;
    animation-delay: 7s;
}

.inf-hero .particle:nth-child(13) {
    width: 4px;
    height: 4px;
    left: 50%;
    animation-delay: 8s;
}

.inf-hero .particle:nth-child(14) {
    width: 6px;
    height: 6px;
    left: 70%;
    animation-delay: 9s;
}

.inf-hero .particle:nth-child(15) {
    width: 3px;
    height: 3px;
    left: 90%;
    animation-delay: 10s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(110vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-10vh) rotate(720deg);
        opacity: 0;
    }
}

/* 노이즈 오버레이 - 숨김 */
.inf-hero .noise {
    display: none;
}

/* 비네트 효과 - 밝은 배경에서 숨김 */
.inf-hero .vignette {
    position: absolute;
    inset: 0;
    background: none;
    pointer-events: none;
    display: none;
}

.hero-content {
    position: relative;
    z-index: 20;
    max-width: 100%;
}

.inf-hero .hero-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.4;
    margin-bottom: 24px;
    letter-spacing: -3px;
}

.inf-hero .hero-title .highlight {
    color: #FF007F;
    -webkit-text-fill-color: #FF007F;
    background: none;
    position: relative;
}

@keyframes hologramShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 200% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.inf-hero .hero-description {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    color: #4a4a6a;
    max-width: 900px;
    margin: 40px auto 50px;
    line-height: 1.5;
    text-shadow: none;
}

.inf-hero .btn-primary {
    background: var(--inf-gradient);
    padding: 18px 40px;
    font-size: 17px;
    border: none;
    box-shadow: none;
}

.inf-hero .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: none;
}

.inf-hero .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 40px;
    background: rgba(255, 0, 127, 0.08);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 0, 127, 0.25);
    border-radius: 16px;
    color: #FF007F;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: none;
}

.inf-hero .btn-secondary:hover {
    background: rgba(255, 0, 127, 0.15);
    border-color: rgba(255, 0, 127, 0.5);
    transform: translateY(-3px);
    box-shadow: none;
    color: #D4006B;
}

/* Floating UI Elements */
.floating-ui {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 20px 24px;
    animation: floatUI 4s ease-in-out infinite;
    z-index: 10;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.floating-ui.ui-1 {
    top: 32%;
    left: 8%;
    animation-delay: 0s;
}

.floating-ui.ui-2 {
    top: 35%;
    right: 8%;
    animation-delay: 1s;
}

.floating-ui.ui-3 {
    top: 50%;
    left: 10%;
    animation-delay: 2s;
}

.floating-ui.ui-4 {
    top: 53%;
    right: 10%;
    animation-delay: 1.5s;
}

@keyframes floatUI {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

.ui-stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ui-stat-icon {
    width: 40px;
    height: 40px;
    background: var(--inf-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.ui-stat-value {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.ui-stat-label {
    font-size: 12px;
    color: var(--inf-text-muted);
}

/* ========== SNS Network Effect (portrait.so style) ========== */
.sns-network-canvas {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 8;
    pointer-events: none;
    contain: paint;
}

.sns-nodes-container {
    position: absolute;
    inset: 0;
    z-index: 9;
    pointer-events: none;
    overflow: hidden;
}

.sns-node {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #ffffff;
    pointer-events: none;
    transition: opacity 0.2s ease;
    will-change: transform;
    contain: layout paint style;
    backface-visibility: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    opacity: 0;
}

.sns-node:hover {
    z-index: 15;
}

.sns-node svg {
    width: 50%;
    height: 50%;
    flex-shrink: 0;
}

/* SNS Brand Colors - 각 플랫폼 시그니처 컬러 (흰색 배경용) */
.sns-node[data-platform="facebook"] {
    background: rgba(24, 119, 242, 0.9);
    box-shadow: 0 4px 20px rgba(24, 119, 242, 0.2);
}

.sns-node[data-platform="youtube"] {
    background: rgba(255, 0, 0, 0.85);
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.2);
}

.sns-node[data-platform="instagram"] {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    box-shadow: 0 4px 20px rgba(193, 53, 132, 0.2);
}

.sns-node[data-platform="tiktok"] {
    background: linear-gradient(135deg, #69C9D0 0%, #EE1D52 100%);
    box-shadow: 0 4px 20px rgba(238, 29, 82, 0.2);
}

.sns-node[data-platform="twitch"] {
    background: rgba(145, 70, 255, 0.9);
    box-shadow: 0 4px 20px rgba(145, 70, 255, 0.2);
}

.sns-node[data-platform="twitter"] {
    background: rgba(29, 161, 242, 0.9);
    box-shadow: 0 4px 20px rgba(29, 161, 242, 0.2);
}

.sns-node[data-platform="naverblog"] {
    background: rgba(3, 199, 90, 0.9);
    box-shadow: 0 4px 20px rgba(3, 199, 90, 0.2);
}

.sns-node[data-platform="threads"] {
    background: linear-gradient(135deg, #833AB4, #405DE6);
    box-shadow: 0 4px 20px rgba(131, 58, 180, 0.2);
}

.sns-node[data-platform="chzzk"] {
    background: rgba(0, 255, 163, 0.85);
    box-shadow: 0 4px 20px rgba(0, 255, 163, 0.2);
}

.sns-node:hover[data-platform="facebook"] {
    box-shadow: 0 6px 30px rgba(24, 119, 242, 0.35);
}

.sns-node:hover[data-platform="youtube"] {
    box-shadow: 0 6px 30px rgba(255, 0, 0, 0.35);
}

.sns-node:hover[data-platform="instagram"] {
    box-shadow: 0 6px 30px rgba(193, 53, 132, 0.35);
}

.sns-node:hover[data-platform="tiktok"] {
    box-shadow: 0 6px 30px rgba(238, 29, 82, 0.35);
}

.sns-node:hover[data-platform="twitch"] {
    box-shadow: 0 6px 30px rgba(145, 70, 255, 0.35);
}

.sns-node:hover[data-platform="twitter"] {
    box-shadow: 0 6px 30px rgba(29, 161, 242, 0.35);
}

.sns-node:hover[data-platform="naverblog"] {
    box-shadow: 0 6px 30px rgba(3, 199, 90, 0.35);
}

.sns-node:hover[data-platform="threads"] {
    box-shadow: 0 6px 30px rgba(131, 58, 180, 0.35);
}

.sns-node:hover[data-platform="chzzk"] {
    box-shadow: 0 6px 30px rgba(0, 255, 163, 0.35);
}

.sns-node,
.sns-node[data-platform],
.sns-node:hover[data-platform] {
    box-shadow: none;
}

/* Trust Indicators Section */
.trust-section {
    padding: 80px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.trust-banner {
    max-width: 1500px;
    margin: 0 auto;
    background: linear-gradient(135deg,
            #1a0a12 0%,
            #3d1428 30%,
            #5a1e3d 50%,
            #3d1428 70%,
            #1a0a12 100%);
    border-radius: 24px;
    padding: 70px 60px;
    box-shadow: 0 10px 30px -10px rgba(212, 0, 107, 0.35);
    position: relative;
    overflow: hidden;
}

.trust-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 77, 166, 0.2) 0%, rgba(212, 0, 107, 0.08) 40%, transparent 70%);
    pointer-events: none;
}

.trust-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 77, 166, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.trust-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.trust-title {
    font-size: clamp(28px, 4.5vw, 42px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .trust-title {
        font-size: 20px;
        padding: 0 10px;
    }

    .trust-banner {
        padding: 40px 24px;
        border-radius: 16px;
    }

    .trust-item {
        padding: 0 20px;
    }

    .trust-item:not(:last-child)::after {
        display: none;
    }
}

.trust-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.trust-item {
    text-align: center;
    position: relative;
    padding: 0 40px;
}

.trust-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 100%);
}

.trust-number {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.trust-label {
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

/* Brand Logo Slider Section */
.brand-slider-section {
    padding: 30px 0 100px;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

.brand-slider-section::before,
.brand-slider-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 2;
    pointer-events: none;
}

.brand-slider-section::before {
    left: 0;
    background: #ffffff;
}

.brand-slider-section::after {
    right: 0;
    background: #ffffff;
}

.brand-slider-container {
    display: flex;
    align-items: center;
    width: max-content;
    animation: slideLeft 25s linear infinite;
    will-change: transform;
}

@keyframes slideLeft {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.brand-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 40px;
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    filter: grayscale(30%);
}

.brand-logo-item:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.brand-logo-item svg {
    height: 36px;
    width: auto;
}

.brand-logo-item .logo-text {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

/* 개별 브랜드 로고 색상 */
.brand-logo-item.beauty .logo-text {
    color: #e91e63;
}

.brand-logo-item.fashion .logo-text {
    color: #1a1a1a;
}

.brand-logo-item.living .logo-text {
    color: #4caf50;
}

.brand-logo-item.food .logo-text {
    color: #ff9800;
}

.brand-logo-item.tech .logo-text {
    color: #2196f3;
}

.brand-logo-item.skincare .logo-text {
    color: #9c27b0;
}

.brand-logo-item.sports .logo-text {
    color: #f44336;
}

.brand-logo-item.kids .logo-text {
    color: #00bcd4;
}

.brand-logo-item.lifestyle .logo-text {
    color: #795548;
}

.brand-logo-item.health .logo-text {
    color: #8bc34a;
}

/* Core Services Section */
.core-services-section {
    padding: 0;
    background: #fff8fa;
    position: relative;
    overflow: hidden;
    margin: 20px;
    border-radius: 24px;
}

.core-services-header {
    text-align: center;
    padding: 80px 20px 40px;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: #FF007F;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 32px;
    letter-spacing: 1px;
}

.core-services-header .section-badge {
    background: #FF007F;
    color: #ffffff;
}

.core-services-header .section-title {
    font-size: clamp(40px, 7vw, 64px);
    font-weight: 800;
    line-height: 1.3;
    background: #FF007F;
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: none;
}



.core-services-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 1;
}

.core-service-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    padding: 60px 20px;
    position: relative;
    opacity: 0;
    transform: translateY(80px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.core-service-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-item-inner {
    display: flex;
    align-items: center;
    max-width: 1300px;
    width: 100%;
    gap: 100px;
    padding: 0 40px;
}

.core-service-item:nth-child(odd) .service-item-inner {
    flex-direction: row;
}

.core-service-item:nth-child(even) .service-item-inner {
    flex-direction: row-reverse;
    gap: 180px;
}

.core-service-item:nth-child(even) .service-visual-parallax {
    justify-content: flex-start !important;
    flex: 0 0 560px !important;
    width: 560px !important;
}

.core-service-item:nth-child(even) .parallax-scene {
    flex-direction: row-reverse;
}

.core-service-item:nth-child(even) .screen-left {
    margin-left: 0;
    margin-right: -80px;
}

.service-text-content {
    flex: 1;
    min-width: 360px;
    text-align: left;
}

.service-visual {
    flex: 0 0 420px;
    width: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* ======= Parallax Overlapping Screens ======= */
.service-visual-parallax {
    flex: 0 0 520px !important;
    width: 520px !important;
    position: relative;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 480px;
    background: transparent !important;
}

.parallax-scene {
    display: flex;
    align-items: center;
    position: relative;
    background: transparent;
}

.parallax-screen {
    position: relative;
    flex-shrink: 0;
    background: transparent;
    will-change: transform, opacity;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.parallax-screen.screen-left {
    transition-delay: 0.15s;
}

.parallax-screen.screen-right {
    transition-delay: 0.35s;
}

.parallax-screen.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.parallax-screen .mockup-card {
    margin: 0 !important;
    width: 300px !important;
    max-width: 300px !important;
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
    border-radius: 14px;
    background: #fff;
}

.parallax-screen:hover .mockup-card {
    box-shadow: none;
}

/* screen-right = 뒤쪽, 살짝 기울어짐 */
.screen-right {
    order: 1;
    z-index: 2;
    transform: perspective(2000px) rotateY(5deg) rotateX(-1deg);
}

.screen-right.revealed {
    transform: perspective(2000px) rotateY(5deg) rotateX(-1deg);
}

/* screen-left = 앞쪽, 정면, 겹침 */
.screen-left {
    order: 2;
    z-index: 4;
    margin-left: -80px;
    transform: perspective(2000px) rotateY(0deg) rotateX(0deg);
}

.screen-left.revealed {
    transform: perspective(2000px) rotateY(0deg) rotateX(0deg);
}

/* 패럴랙스 내부 공통 스타일 */
.parallax-screen .mockup-header {
    padding: 10px 14px;
    gap: 6px;
}

.parallax-screen .mockup-title-bar {
    font-size: 11px;
    font-weight: 700;
    color: #475569;
    letter-spacing: -0.2px;
}

.parallax-screen .mockup-body {
    padding: 14px;
}

.parallax-screen .mockup-products {
    gap: 8px;
    margin-bottom: 12px;
}

.parallax-screen .mockup-product {
    padding: 8px 10px;
    gap: 10px;
    border-radius: 10px;
}

.parallax-screen .mockup-product-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.parallax-screen .mockup-product-name {
    font-size: 12px;
    font-weight: 700;
}

.parallax-screen .mockup-product-price {
    font-size: 11px;
}

.parallax-screen .mockup-check {
    width: 20px;
    height: 20px;
    font-size: 10px;
}

.parallax-screen .mockup-revenue {
    padding: 10px 12px;
    border-radius: 10px;
}

.parallax-screen .mockup-revenue-label {
    font-size: 11px;
}

.parallax-screen .mockup-revenue-amount {
    font-size: 18px;
}

.parallax-screen .mockup-stat {
    font-size: 11px;
}

.parallax-screen .mockup-url-badge {
    padding: 6px 12px;
    margin-bottom: 6px;
}

.parallax-screen .mockup-url-badge span {
    font-size: 11px;
}

/* Group-buy mockup enrichment */
.groupbuy-mockup .parallax-screen,
.groupbuy-mockup .screen-right,
.groupbuy-mockup .screen-right.revealed,
.groupbuy-mockup .screen-left,
.groupbuy-mockup .screen-left.revealed {
    transform: none !important;
}

.groupbuy-mockup .parallax-screen {
    will-change: opacity;
}

.groupbuy-mockup .groupbuy-card {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: geometricPrecision;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.groupbuy-mockup .groupbuy-card .mockup-body {
    padding: 12px;
}

.groupbuy-mockup .groupbuy-card .mockup-products {
    gap: 7px;
    margin-bottom: 0;
}

.groupbuy-mockup .groupbuy-card .mockup-product {
    min-height: 58px;
    align-items: center;
    padding: 8px;
}

.groupbuy-card .mockup-title-bar {
    font-size: 12px;
    line-height: 1.3;
    letter-spacing: 0;
}

.groupbuy-card .mockup-revenue-label {
    font-size: 12px;
    line-height: 1.35;
    letter-spacing: 0;
}

.groupbuy-card .mockup-revenue-amount {
    font-size: 21px;
    line-height: 1.15;
    letter-spacing: 0;
}

.groupbuy-card .mockup-stat {
    font-size: 11px;
    line-height: 1.25;
    letter-spacing: 0;
}

.parallax-screen .groupbuy-card .mockup-product-img,
.groupbuy-card .mockup-product-img {
    width: 42px;
    height: 42px;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.mockup-product-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.groupbuy-card .mockup-product-info {
    min-width: 0;
}

.groupbuy-card .mockup-product-name,
.groupbuy-card .mockup-product-price {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    letter-spacing: 0;
}

.groupbuy-card .mockup-product-name {
    font-size: 12px;
    line-height: 1.28;
    font-weight: 800;
}

.groupbuy-card .mockup-product-price {
    font-size: 11px;
    line-height: 1.28;
    font-weight: 800;
}

.groupbuy-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin: 10px 0;
}

.groupbuy-kpi {
    padding: 8px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.groupbuy-kpi-label {
    display: block;
    margin-bottom: 3px;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 700;
    color: #94a3b8;
}

.groupbuy-kpi strong {
    display: block;
    font-size: 14px;
    line-height: 1.15;
    font-weight: 800;
    color: #0f172a;
}

.groupbuy-product-meta {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 3px;
    min-width: 0;
}

.groupbuy-product-meta span {
    min-width: 0;
    max-width: 96px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 2px 6px;
    border-radius: 999px;
    background: #f8fafc;
    color: #64748b;
    font-size: 10px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0;
}

.groupbuy-progress {
    margin-top: 10px;
    padding: 10px;
    border-radius: 12px;
    background: #fff7fb;
    border: 1px solid rgba(255, 77, 166, 0.14);
}

.groupbuy-progress-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 7px;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 800;
    color: #64748b;
    letter-spacing: 0;
}

.groupbuy-progress-head strong {
    color: #FF007F;
}

.groupbuy-progress-track {
    height: 7px;
    overflow: hidden;
    border-radius: 999px;
    background: #ffe4f1;
}

.groupbuy-progress-track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #FF007F;
}

.groupbuy-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
    padding: 10px;
    border-radius: 14px;
    background: #fff7fb;
    border: 1px solid rgba(255, 77, 166, 0.18);
    color: #0f172a;
}

.groupbuy-footer-metric {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.groupbuy-footer-label,
.groupbuy-footer-value {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    letter-spacing: 0;
}

.groupbuy-footer-label {
    font-size: 11px;
    line-height: 1.2;
    font-weight: 800;
    color: #94a3b8;
}

.groupbuy-footer-value {
    font-size: 15px;
    line-height: 1.1;
    font-weight: 800;
    color: #0f172a;
}

.groupbuy-footer-divider {
    flex: 0 0 1px;
    align-self: stretch;
    background: rgba(255, 77, 166, 0.18);
}

/* Video Visual Styles - must override .service-visual */
.service-visual.service-video-visual {
    max-width: 700px;
    flex: 0 0 520px !important;
    width: 520px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

/* CJ Logo above video */
.cj-logo-above {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

.cj-logo-above img {
    height: 48px;
    object-fit: contain;
    opacity: 0.85;
}

.video-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: none;
    border: 1px solid rgba(255, 0, 127, 0.15);
    background: rgba(255, 0, 127, 0.08);
    position: relative;
}

.video-wrapper iframe,
.video-wrapper .lite-youtube {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: inherit;
    display: block;
}

.service-badge-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 0, 127, 0.1);
    border: 1px solid rgba(255, 0, 127, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    color: #FF007F;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.service-main-title {
    font-size: clamp(32px, 4.5vw, 46px);
    font-weight: 800;
    color: #1a0a12;
    line-height: 1.4;
    margin-bottom: 24px;
    letter-spacing: -1px;
    word-break: keep-all;
}

.service-main-desc {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.8;
    margin-bottom: 32px;
    background: #FF007F;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.service-features-list li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-left: 0;
    position: relative;
}

.service-features-list li strong {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
}

.service-features-list li span {
    font-size: 15px;
    font-weight: 600;
    color: #475569;
    line-height: 1.7;
}

/* ========== Mockup Cursor Animation ========== */
.mockup-animated {
    position: relative;
}

.mock-cursor {
    position: absolute;
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    transition: top 0.6s cubic-bezier(0.4, 0, 0.2, 1), left 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    filter: none;
}

.mock-cursor-click {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 0, 127, 0.35);
    transform: scale(0);
    opacity: 0;
}

.mock-cursor-click.active {
    animation: clickRipple 0.5s ease-out forwards;
}

@keyframes clickRipple {
    0% {
        transform: scale(0);
        opacity: 0.7;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

/* Search text */
.mock-search-text {
    color: #64748b;
    font-size: 13px;
}

/* Item default: pink border */
.mock-item-1,
.mock-item-2,
.mock-item-3 {
    border: 1.5px solid rgba(255, 77, 166, 0.3) !important;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

/* Item selected: stronger pink + glow */
.mock-item-1.selected,
.mock-item-2.selected,
.mock-item-3.selected {
    border-color: #FF007F !important;
    background: rgba(255, 0, 127, 0.04) !important;
    box-shadow: none;
}

.mock-item-1 .mockup-check,
.mock-item-2 .mockup-check,
.mock-item-3 .mockup-check {
    opacity: 0;
    transform: scale(0.3);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mock-item-1.selected .mockup-check,
.mock-item-2.selected .mockup-check,
.mock-item-3.selected .mockup-check {
    opacity: 1;
    transform: scale(1);
}

/* URL generate button */
.mock-url-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 0;
    background: #FF007F;
    border-radius: 10px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    margin-top: 12px;
    cursor: default;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
}

.mock-url-btn.clicked {
    transform: scale(0.95);
    box-shadow: none;
}

.mock-url-btn.hidden {
    opacity: 0;
    transform: scale(0.9);
    max-height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

/* URL result area */
.mock-url-area {
    opacity: 0;
    transform: translateY(8px) scale(0.97);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: 0;
    overflow: hidden;
}

.mock-url-area.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    max-height: 200px;
    margin-top: 12px;
}

/* Mockup Card Styles */
.mockup-card {
    width: 100%;
    max-width: 380px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: none;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    margin-top: 60px;
    margin-left: 40px;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mockup-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.mockup-dot.red {
    background: #ff5f57;
}

.mockup-dot.yellow {
    background: #febc2e;
}

.mockup-dot.green {
    background: #28c840;
}

.mockup-title-bar {
    margin-left: 12px;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    letter-spacing: -0.3px;
}

.mockup-body {
    padding: 16px;
}

.mockup-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #f1f5f9;
    border-radius: 10px;
    margin-bottom: 14px;
}

.mockup-search span {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 500;
}

.mockup-products {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.mockup-product {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
}

.mockup-product.selected {
    border-color: #FF4DA6;
    background: rgba(255, 77, 166, 0.04);
    box-shadow: none;
}

.mockup-product-img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    flex-shrink: 0;
    overflow: hidden;
    background: #f8fafc;
}

.mockup-product-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.mockup-product-name {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mockup-product-price {
    font-size: 12px;
    font-weight: 600;
    color: #FF007F;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mockup-product-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mockup-products.compact {
    gap: 7px;
    margin-bottom: 10px;
}

.mockup-products.compact .mockup-product {
    padding: 8px 10px;
}

.parallax-screen .mockup-products.compact {
    gap: 6px;
    margin-bottom: 0;
}

.parallax-screen .mockup-products.compact .mockup-product {
    padding: 7px 8px;
    gap: 8px;
}

.mockup-icon-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: #FF007F;
    font-size: 15px;
}

.mockup-icon-tile[data-tone="green"] {
    background: #ecfdf5;
    color: #059669;
}

.mockup-icon-tile[data-tone="amber"] {
    background: #fffbeb;
    color: #d97706;
}

.mockup-icon-tile[data-tone="blue"] {
    background: #eff6ff;
    color: #2563eb;
}

.mockup-icon-tile[data-tone="violet"] {
    background: #f5f3ff;
    color: #7c3aed;
}

.mockup-icon-tile[data-tone="rose"] {
    background: #fff1f2;
    color: #e11d48;
}

.mockup-metric-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 10px 0;
}

.mockup-metric-card {
    padding: 9px 10px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.mockup-metric-card span {
    display: block;
    margin-bottom: 3px;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 700;
    color: #94a3b8;
}

.mockup-metric-card strong {
    display: block;
    font-size: 14px;
    line-height: 1.15;
    font-weight: 800;
    color: #1e293b;
}

.mockup-meta-pills {
    display: flex;
    gap: 4px;
    margin-top: 3px;
    min-width: 0;
}

.mockup-meta-pills span {
    padding: 2px 5px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    color: #64748b;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.mockup-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #FF4DA6;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

.mockup-revenue {
    padding: 14px;
    background: #fff8fa;
    border-radius: 12px;
    border: 1px solid rgba(255, 77, 166, 0.1);
}

.mockup-url-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 77, 166, 0.08);
    border: 1px solid rgba(255, 77, 166, 0.2);
    border-radius: 100px;
    margin-bottom: 10px;
}

.mockup-url-badge span {
    font-size: 13px;
    font-weight: 700;
    color: #FF007F;
}

.mockup-url-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    padding: 10px 16px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    letter-spacing: -0.3px;
    font-family: 'Poppins', monospace;
    box-shadow: none;
}

.mockup-url-link::before {
    content: '';
    font-size: 12px;
}

.mockup-stat-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.mockup-stat {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
}

.mockup-stat.accent {
    color: #059669;
    font-weight: 700;
}

.mockup-revenue-label {
    font-size: 11px;
    font-weight: 600;
    color: #FF007F;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.mockup-revenue-amount {
    font-size: 20px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 2px;
}

.mockup-profile-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.mockup-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #FF007F;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    flex-shrink: 0;
}

.mockup-channel-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}

.mockup-channel {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #f8fafc;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
}

.mockup-channel-icon {
    font-size: 14px;
}

.mockup-channel-count {
    margin-left: auto;
    font-size: 12px;
    font-weight: 700;
    color: #FF007F;
}

.mockup-url-link::after {
    content: '복사';
    margin-left: auto;
    font-family: 'Pretendard', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    background: #FF007F;
    padding: 4px 12px;
    border-radius: 6px;
    letter-spacing: 0;
}

.visual-card {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4/3;
    background: #fff5f8;
    border-radius: 24px;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 0, 127, 0.2);
}

.visual-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 0, 127, 0.15);
}

.visual-icon {
    font-size: 120px;
    opacity: 0.8;
    filter: none;
    z-index: 1;
}

.visual-number {
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 100px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .core-services-header {
        padding: 60px 20px 30px;
    }

    .service-item-inner {
        flex-direction: column !important;
        gap: 30px;
    }

    .core-service-item {
        min-height: auto;
        padding: 50px 20px;
    }

    .service-text-content {
        text-align: center;
        max-width: 100%;
        min-width: auto;
    }

    .service-visual-parallax {
        flex: 0 0 auto !important;
        width: 100% !important;
        max-width: 440px;
        margin: 0 auto;
        min-height: 440px;
    }

    .parallax-scene {
        justify-content: center;
    }

    .parallax-screen .mockup-card {
        width: 240px !important;
        max-width: 240px !important;
    }

    .parallax-screen .groupbuy-card .mockup-product-img {
        width: 34px;
        height: 34px;
    }

    .groupbuy-mockup .groupbuy-card .mockup-body {
        padding: 10px;
    }

    .groupbuy-mockup .groupbuy-card .mockup-product {
        min-height: 48px;
        gap: 7px;
        padding: 7px;
    }

    .groupbuy-product-meta {
        display: none;
    }

    .groupbuy-card-footer {
        display: none;
    }

    .groupbuy-kpi {
        padding: 7px;
    }

    .screen-left {
        margin-left: -60px;
    }

    .core-service-item:nth-child(even) .screen-left {
        margin-right: -60px;
    }

    .service-visual {
        max-width: 100%;
    }

    .service-video-visual {
        max-width: 100%;
    }

    .video-wrapper {
        border-radius: 16px;
    }

    .visual-card {
        max-width: 350px;
    }

    .service-main-title {
        font-size: 28px;
    }

    .service-features-list {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .core-service-item {
        padding: 40px 20px;
    }

    .service-main-title {
        font-size: 26px;
    }

    .service-main-desc {
        font-size: 15px;
    }

    .visual-card {
        max-width: 320px;
    }

    .service-visual-parallax {
        max-width: 320px;
        min-height: 360px;
    }

    .parallax-screen .mockup-card {
        width: 180px !important;
        max-width: 180px !important;
    }

    .groupbuy-summary-grid {
        gap: 5px;
        margin: 8px 0;
    }

    .groupbuy-kpi-label {
        font-size: 9px;
    }

    .groupbuy-kpi strong {
        font-size: 11px;
    }

    .groupbuy-progress {
        padding: 8px;
    }

    .screen-left {
        margin-left: -40px;
    }

    .core-service-item:nth-child(even) .screen-left {
        margin-right: -40px;
    }

    .visual-icon {
        font-size: 80px;
    }
}

@media (max-width: 480px) {
    .service-visual-parallax {
        max-width: min(100%, 288px) !important;
        min-height: 320px;
        overflow: hidden;
    }

    .parallax-scene {
        max-width: 100%;
    }

    .parallax-screen .mockup-card {
        width: 162px !important;
        max-width: 162px !important;
    }

    .groupbuy-summary-grid,
    .mockup-metric-grid {
        display: none;
    }

    .parallax-screen .mockup-products.compact,
    .groupbuy-mockup .groupbuy-card .mockup-products {
        gap: 4px;
        margin-bottom: 0;
    }

    .parallax-screen .mockup-products.compact .mockup-product,
    .groupbuy-mockup .groupbuy-card .mockup-product {
        min-height: 38px;
        padding: 5px;
        gap: 5px;
        border-radius: 8px;
    }

    .parallax-screen .mockup-product-img,
    .parallax-screen .groupbuy-card .mockup-product-img,
    .groupbuy-card .mockup-product-img {
        width: 28px;
        height: 28px;
        border-radius: 7px;
    }

    .parallax-screen .mockup-product-name,
    .groupbuy-card .mockup-product-name {
        font-size: 10px;
        line-height: 1.2;
    }

    .parallax-screen .mockup-product-price,
    .groupbuy-card .mockup-product-price {
        font-size: 9px;
        line-height: 1.2;
    }

    .mockup-meta-pills,
    .groupbuy-product-meta {
        display: none;
    }

    .groupbuy-progress-head {
        font-size: 10px;
    }

    .screen-left {
        margin-left: -36px !important;
    }

    .core-service-item:nth-child(even) .screen-left {
        margin-right: -36px !important;
    }

    .service-visual.service-video-visual {
        flex: 0 1 auto !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .cj-logo-above,
    .video-wrapper {
        width: 100%;
        max-width: 100%;
    }
}

/* Process Section */
.process-section {
    padding: 120px 20px;
    background: #fff5f8;
    position: relative;
    margin: 20px;
    border-radius: 24px;
}

.process-section .section-title {
    font-size: clamp(40px, 7vw, 64px);
    font-weight: 800;
    line-height: 1.3;
    background: #FF007F;
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: none;
}

.process-section .section-description {
    color: #64748b;
}

.process-section .section-badge {
    background: #FF007F;
    color: #ffffff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-grid-4 {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: center;
}

@media (max-width: 1200px) {
    .process-grid-4 {
        grid-template-columns: 1fr auto 1fr;
    }

    .process-arrow:nth-child(4) {
        display: none;
    }
}

@media (max-width: 768px) {
    .process-grid-4 {
        grid-template-columns: 1fr;
    }

    .process-arrow {
        display: none;
    }
}

.process-card {
    text-align: center;
    padding: 0;
    position: relative;
    background: transparent;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
}

.process-arrow-inner {
    display: flex;
    align-items: center;
    gap: 0;
}

.process-arrow-line {
    width: 32px;
    height: 3px;
    background: rgba(255, 77, 166, 0.15);
    border-radius: 2px;
}

.process-arrow-chevron {
    width: 14px;
    height: 14px;
    border-top: 3.5px solid #FF4DA6;
    border-right: 3.5px solid #FF4DA6;
    transform: rotate(45deg);
    margin-left: -5px;
    animation: processArrowPulse 2s ease-in-out infinite;
}

@keyframes processArrowPulse {

    0%,
    100% {
        opacity: 0.4;
        filter: none;
    }

    50% {
        opacity: 1;
        filter: none;
    }
}

.process-mockup-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1.5px solid rgba(255, 77, 166, 0.2);
    box-shadow: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

.process-mockup-card:hover {
    border-color: rgba(255, 77, 166, 0.4);
    box-shadow: none;
    transform: translateY(-4px);
}

.process-mockup-card .mockup-header {
    padding: 10px 14px;
    background: rgba(255, 77, 166, 0.04);
    border-bottom: 1px solid rgba(255, 77, 166, 0.1);
}

.process-mockup-card .mockup-title-bar {
    font-weight: 800;
    color: #FF007F;
    font-size: 11px;
    letter-spacing: 1px;
}

.process-mockup-body {
    padding: 24px 20px;
    text-align: center;
}

.process-mockup-icon {
    width: 52px;
    height: 52px;
    background: rgba(212, 0, 107, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.process-mockup-title {
    font-size: 18px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.process-mockup-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
}

.process-mockup-preview {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.process-mini-item {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #ffe4ed;
}

.process-mini-item:nth-child(2) {
    background: #fce4ec;
}

.process-mini-item:nth-child(3) {
    background: #e0f2f1;
}

.process-mockup-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    font-family: 'Poppins', monospace;
}

.process-mockup-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
}

.process-mockup-badge.green {
    background: rgba(5, 150, 105, 0.08);
    border: 1px solid rgba(5, 150, 105, 0.2);
    color: #059669;
}

.process-mockup-badge.green span {
    color: #059669;
}

.process-mockup-amount {
    font-size: 22px;
    font-weight: 800;
    color: #FF007F;
    letter-spacing: -0.5px;
}

/* System Features Section */
.system-features-section {
    padding: 100px 20px;
    background: #1a0a12;
    position: relative;
    overflow: hidden;
    margin: 20px;
    border-radius: 24px;
}

.system-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 0, 127, 0.3);
}

.system-features-header {
    text-align: center;
    margin-bottom: 80px;
}

.system-features-header .section-badge {
    background: rgba(255, 0, 127, 0.2);
    color: #FF4DA6;
}

.system-features-header .section-title {
    font-size: clamp(44px, 7.5vw, 70px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    background: #FF4DA6;
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: none;
    background-clip: text;
}

.system-features-header .section-description {
    font-size: 21px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
    line-height: 1.6;
}

.system-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .system-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .system-features-grid {
        grid-template-columns: 1fr;
    }
}

.system-feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 24px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

.system-feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.system-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: none;
}

.system-feature-card:hover .sys-mockup-card {
    border-color: rgba(255, 77, 166, 0.35) !important;
}

/* System Mockup Card */
.sys-mockup-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 127, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sys-mockup-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 0, 127, 0.1);
}

.sys-mockup-body {
    padding: 18px 16px;
    text-align: center;
}

.sys-mockup-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 77, 166, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.sys-mockup-title {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.sys-mockup-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
    margin-bottom: 16px;
}

/* System Chart */
.sys-mockup-chart {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    height: 60px;
}

.sys-chart-bar {
    width: 20px;
    background: rgba(255, 77, 166, 0.25);
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
}

.sys-chart-bar.active {
    background: #FF007F;
}

/* System White Card (like service mockup-card) */
.sys-mockup-white {
    background: rgba(255, 0, 127, 0.06) !important;
    border: 1.5px solid rgba(255, 0, 127, 0.18) !important;
    box-shadow: none;
    backdrop-filter: blur(8px);
}

.sys-header-white {
    background: rgba(255, 0, 127, 0.1) !important;
    border-bottom: 1px solid rgba(255, 0, 127, 0.15) !important;
}

.sys-white-title-bar {
    margin-left: auto;
    font-size: 12px;
    font-weight: 600;
    color: rgba(125, 220, 250, 0.7);
}

.sys-mockup-white .sys-mockup-title {
    color: #ffffff !important;
}

.sys-mockup-white .sys-mockup-desc {
    color: rgba(255, 255, 255, 0.6) !important;
}

.sys-white-icon {
    background: rgba(255, 0, 127, 0.12) !important;
}

.sys-white-label {
    text-align: center;
    margin-bottom: 24px;
}

.sys-white-label-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 77, 166, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.sys-white-label-title {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.sys-white-label-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.sys-white-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border: 1.5px solid rgba(255, 0, 127, 0.2);
    border-radius: 12px;
    margin-bottom: 6px;
    background: rgba(255, 0, 127, 0.04);
    transition: all 0.2s ease;
}

.sys-white-item:first-child {
    border-color: rgba(255, 0, 127, 0.4);
    background: rgba(255, 0, 127, 0.08);
}

.sys-white-item-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    flex-shrink: 0;
    background: rgba(255, 0, 127, 0.15) !important;
}

.sys-white-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}

.sys-white-item-name {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sys-white-item-status {
    font-size: 11px;
    font-weight: 600;
    color: rgba(125, 220, 250, 0.7);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sys-white-item-status.done {
    color: #4ade80;
}

.sys-white-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #FF007F;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: none;
}

.sys-white-badge-row {
    margin-top: 8px;
}

.sys-white-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(74, 222, 128, 0.08);
    border: 1px solid rgba(74, 222, 128, 0.25);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: #4ade80;
}

/* System Amount Box */
.sys-mockup-amount-box {
    background: rgba(255, 77, 166, 0.1);
    border: 1px solid rgba(255, 77, 166, 0.2);
    border-radius: 12px;
    padding: 14px;
    text-align: center;
}

.sys-amount-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.sys-amount-value {
    font-size: 20px;
    font-weight: 800;
    color: #FF4DA6;
    letter-spacing: -0.5px;
}

/* System Tags */
.sys-mockup-tags {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
}

.sys-tag {
    padding: 6px 14px;
    background: rgba(255, 77, 166, 0.12);
    border: 1px solid rgba(255, 77, 166, 0.2);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: #FF4DA6;
}

/* System Inbox */
.sys-mockup-inbox {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sys-inbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
}

.sys-inbox-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.sys-inbox-dot.new {
    background: #FF4DA6;
    box-shadow: none;
}

/* System Link List */
.sys-mockup-link-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sys-link-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Poppins', monospace;
}

/* System Channels */
.sys-mockup-channels {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sys-channel-badge {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
}

/* Value Section */
.value-section {
    padding: 100px 20px;
    background: #ffffff;
    text-align: center;
}

.value-section .section-title {
    font-size: clamp(40px, 7vw, 64px);
    font-weight: 800;
    line-height: 1.3;
    background: linear-gradient(135deg,
            #FF007F 0%,
            #FF007F 25%,
            #FF4DA6 50%,
            #FF007F 75%,
            #FF007F 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

.value-card {
    max-width: 1500px;
    margin: 60px auto 0;
    background: linear-gradient(135deg,
            #1a0a12 0%,
            #3d1428 30%,
            #5a1e3d 50%,
            #3d1428 70%,
            #1a0a12 100%);
    border-radius: 24px;
    padding: 70px 60px;
    box-shadow: 0 10px 30px -10px rgba(212, 0, 107, 0.35);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 77, 166, 0.2) 0%, rgba(212, 0, 107, 0.08) 40%, transparent 70%);
    pointer-events: none;
}

.value-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.value-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.value-desc {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* FAQ Section */
.inf-faq {
    padding: 120px 40px;
    background: #ffffff;
}

.inf-faq .section-header {
    max-width: 100%;
}

.inf-faq .section-title {
    font-size: clamp(40px, 7vw, 64px);
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -3px;
    background: #FF007F;
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: none;
}

.inf-faq .faq-question {
    color: #1a0a12;
}

.inf-faq .faq-q-label {
    background: #FF007F;
}

.inf-faq .faq-item.active {
    border-color: rgba(255, 0, 127, 0.15);
}

.inf-faq .faq-item.active .faq-icon {
    color: #FF007F;
}

/* CTA Section */
.inf-cta {
    padding: 80px 20px 120px;
    background: #ffffff;
}

.cta-banner {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg,
            #1a0a12 0%,
            #3d1428 30%,
            #5a1e3d 50%,
            #3d1428 70%,
            #1a0a12 100%);
    border-radius: 24px;
    padding: 60px 80px;
    box-shadow: 0 10px 30px -10px rgba(212, 0, 107, 0.35);
    position: relative;
    overflow: hidden;
}

.cta-banner .cta-bg-image {
    position: absolute;
    top: -10px;
    right: -15px;
    bottom: -10px;
    width: 42%;
    background: url('/static/images/image_4e10910d-52d5-4530-b7aa-0f141a8d3fc5.webp') right top / cover no-repeat;
    opacity: 0.45;
    mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.15) 20%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.7) 65%, rgba(0, 0, 0, 1) 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.15) 20%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.7) 65%, rgba(0, 0, 0, 1) 100%);
    filter: brightness(0.7) saturate(0.5);
    z-index: 0;
    pointer-events: none;
}

.cta-banner .cta-bg-overlay {
    display: none;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 77, 166, 0.2) 0%, rgba(212, 0, 107, 0.08) 40%, transparent 70%);
    pointer-events: none;
    z-index: 2;
}

.cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 3;
}

.inf-cta .cta-content {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.inf-cta .cta-title {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.35;
    margin-bottom: 24px;
    text-align: left;
}

.inf-cta .cta-description {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 36px;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    text-align: left;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
}

.inf-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 36px;
    background: #FF007F;
    border-radius: 14px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.inf-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: none;
}


.placeholder-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1024px) {
    .cta-wrapper {
        flex-direction: column;
        text-align: left;
    }

    .inf-cta .cta-content {
        text-align: left;
        max-width: 100%;
    }

    .inf-cta .cta-title,
    .inf-cta .cta-description {
        text-align: left;
    }

    .cta-buttons {
        justify-content: flex-start;
    }

}

/* Footer Styles */
.landing-footer {
    margin: 20px;
    border-radius: 24px;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 60px;
    align-items: start;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1;
    text-shadow: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-description {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    margin-top: 20px;
}

.footer-column h4 {
    font-size: 21px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    margin-top: 0;
    letter-spacing: 1px;
    line-height: 1;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    font-size: 17px;
    font-weight: 500;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #FF4DA6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-copyright {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 5px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(255, 77, 166, 0.3);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: span 2;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Footer Business Info Styles */
.footer-business-info {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 60px;
}

.footer-business-text {
    flex: 1;
}

.footer-business-text p {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    line-height: 2;
    margin: 0;
}

.footer-business-text span {
    display: inline-block;
    margin-right: 20px;
}

.footer-business-text span::after {
    content: '|';
    margin-left: 20px;
    color: rgba(255, 255, 255, 0.2);
}

.footer-business-text span:last-child::after {
    display: none;
}

.footer-cj-logo {
    margin-top: 20px;
}

.footer-cj-logo img {
    max-width: 180px;
    height: auto;
    opacity: 0.5;
    filter: brightness(0) invert(1);
}

.footer-payment-badge {
    text-align: left;
    flex-shrink: 0;
    padding-top: 0;
    margin-left: -80px;
}

.footer-payment-badge p {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    line-height: 2;
    margin: 0 0 10px 0;
}

.footer-payment-badge .logo-wrapper {
    width: 260px;
    height: 36px;
    overflow: hidden;
    margin-left: 5px;
}

.footer-payment-badge img {
    display: block;
    width: 300px;
    max-width: none;
    height: auto;
    margin-top: -32px;
    margin-left: -30px;
}

@media (max-width: 768px) {
    .footer-business-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-business-text span {
        display: block;
        margin-right: 0;
        margin-bottom: 4px;
    }

    .footer-business-text span::after {
        display: none;
    }

    .footer-business-text p {
        margin-bottom: 12px;
    }

    .footer-payment-badge {
        margin-top: 20px;
        margin-left: 0;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .floating-ui {
        display: none;
    }

    .inf-hero .hero-title {
        font-size: clamp(36px, 6vw, 60px);
    }
}

@media (max-width: 768px) {
    .inf-hero .hero-title {
        font-size: clamp(32px, 8vw, 48px);
    }

    .inf-hero .hero-description {
        font-size: 16px;
    }

    nav.top-nav {
        padding: 20px 24px !important;
    }

    nav.top-nav .nav-logo {
        font-size: 24px !important;
    }
}

/* ========== Nav Menu ========== */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 64px;
    margin-left: auto;
    margin-right: 40px;
}

.nav-menu-link {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-size: 21px;
    font-weight: 800;
    color: #1a0a12;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: -0.5px;
}

.nav-menu-link {
    position: relative;
}

.nav-menu-link+.nav-menu-link::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5px;
    height: 16px;
    background: rgba(0, 0, 0, 0.18);
}

.nav-menu-link:hover {
    color: #FF007F;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
}

/* ========== Vortex Logo Symbol ========== */
.nav-logo-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #1a0a12;
    text-decoration: none;
}

.vortex-canvas-wrap {
    position: relative;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}

#vortexLogo {
    display: block;
    width: 42px;
    height: 42px;
}

/* 심볼 주변 은은한 보라색 글로우 */
.vortex-canvas-wrap::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 77, 166, 0.2) 0%, transparent 70%);
    opacity: 0.7;
    z-index: -1;
    pointer-events: none;
}

.nav-logo-wrapper.light-mode .vortex-canvas-wrap::before {
    opacity: 0.6;
}

@media (max-width: 768px) {
    .vortex-canvas-wrap {
        width: 32px;
        height: 32px;
    }

    #vortexLogo {
        width: 32px;
        height: 32px;
    }

    .nav-logo-wrapper {
        font-size: 24px !important;
    }
}

/* ========== Scroll to Top Button ========== */
.scroll-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #FF007F;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: none;
}

.scroll-to-top:active {
    transform: translateY(-2px) scale(1);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.scroll-to-top:hover svg {
    transform: translateY(-2px);
}

/* Progress Ring */
.scroll-progress {
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    opacity: 0.6;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.scroll-to-top::before {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: #FF007F;
    z-index: 1;
}

.scroll-to-top::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 3;
    pointer-events: none;
}

/* Pulse Animation */
@keyframes scrollPulse {

    0%,
    100% {
        box-shadow: none;
    }

    50% {
        box-shadow: none;
    }
}

.scroll-to-top.visible {
    animation: scrollPulse 3s ease-in-out infinite;
}

.scroll-to-top:hover {
    animation: none;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 24px;
        right: 24px;
        width: 48px;
        height: 48px;
    }

    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* ========== 고객센터 / 제휴문의 모달 ========== */
.inquiry-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.inquiry-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.inquiry-modal {
    background: #ffffff;
    border-radius: 20px;
    width: 90%;
    max-width: 640px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: none;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
}

.inquiry-modal-overlay.show .inquiry-modal {
    transform: translateY(0) scale(1);
}

.inquiry-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 32px 20px;
    border-bottom: 1px solid #f1f5f9;
}

.inquiry-modal-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: #111111;
    display: flex;
    align-items: center;
    gap: 10px;
}

.inquiry-modal-header h3 i {
    color: #FF007F;
}

.inquiry-modal-close {
    width: 36px;
    height: 36px;
    border: 1px solid var(--neutral-action, #6b7280);
    background: var(--neutral-action, #6b7280);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.inquiry-modal-close i {
    font-size: 16px;
    color: #fff;
}

.inquiry-modal-close:hover {
    background: var(--neutral-action-hover, #4b5563);
    border-color: var(--neutral-action-hover, #4b5563);
}

.inquiry-modal-close:hover i {
    color: #fff;
}

.inquiry-form {
    padding: 24px 32px 32px;
}

.inquiry-form-group {
    margin-bottom: 22px;
}

.inquiry-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.inquiry-form-group label {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 6px;
}

.inquiry-form-group label .required {
    color: #FF007F;
}

.inquiry-form-group input,
.inquiry-form-group select,
.inquiry-form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    color: #1e293b;
    background: #f8fafc;
    transition: all 0.2s ease;
}

.inquiry-form-group input:focus,
.inquiry-form-group select:focus,
.inquiry-form-group textarea:focus {
    outline: none;
    border-color: #FF007F;
    background: #fff;
    box-shadow: none;
}

.inquiry-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.inquiry-submit-btn {
    width: 100%;
    padding: 14px 24px;
    background: #FF007F;
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.inquiry-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

.inquiry-radio-group {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.inquiry-radio {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #334155;
    cursor: pointer;
    line-height: 1;
}

.inquiry-radio input[type="radio"] {
    appearance: auto;
    -webkit-appearance: auto;
    accent-color: #FF007F;
    width: 14px;
    height: 14px;
    cursor: pointer;
    margin: 0;
    flex-shrink: 0;
}

.inquiry-privacy-agree {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 14px 16px;
    margin-top: 8px;
    margin-bottom: 16px;
}

.inquiry-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #334155;
}

.inquiry-checkbox input[type="checkbox"] {
    accent-color: #FF007F;
    width: 16px;
    height: 16px;
    cursor: pointer;
    flex-shrink: 0;
}

.inquiry-checkbox strong {
    color: #FF007F;
}

.inquiry-privacy-detail {
    margin-top: 8px;
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.6;
}

.inquiry-privacy-detail a {
    color: #FF007F;
    text-decoration: underline;
}

/* Below-the-fold rendering optimization */
.trust-section,
.brand-slider-section,
.core-services-section,
.process-section,
.system-features-section,
.value-section,
.inf-faq,
.inf-cta,
.landing-footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 900px;
}

.trust-section {
    contain-intrinsic-size: 760px;
}

.brand-slider-section {
    contain-intrinsic-size: 360px;
}

.core-services-section {
    contain-intrinsic-size: 3200px;
}

.process-section {
    contain-intrinsic-size: 1700px;
}

.system-features-section {
    contain-intrinsic-size: 2400px;
}

.value-section {
    contain-intrinsic-size: 900px;
}

.inf-faq {
    contain-intrinsic-size: 900px;
}

.inf-cta {
    contain-intrinsic-size: 780px;
}

.landing-footer {
    contain-intrinsic-size: 680px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto !important;
    }

    .inf-hero .aurora-container,
    .inf-hero .nebula,
    .inf-hero .stars-container,
    .inf-hero .shooting-stars,
    .inf-hero .particles-container,
    .inf-hero .noise,
    .inf-hero .vignette {
        display: none !important;
    }

    .inf-hero .aurora,
    .inf-hero .nebula-1,
    .inf-hero .nebula-2,
    .inf-hero .nebula-3,
    .inf-hero .stars,
    .inf-hero .stars-2,
    .inf-hero .shooting-star,
    .inf-hero .hero-title .highlight,
    .floating-ui,
    .brand-track,
    .scroll-to-top.visible {
        animation: none !important;
    }

    .service-item,
    .system-card,
    .parallax-screen,
    .mock-cursor,
    .mock-cursor-touch,
    .mock-cursor-click,
    .inquiry-submit-btn {
        transition: none !important;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .brand-slider-container {
        animation: slideLeft 25s linear infinite !important;
        animation-duration: 25s !important;
        animation-iteration-count: infinite !important;
    }
}

html.brand-lite-motion .inf-hero .aurora,
html.brand-lite-motion .inf-hero .nebula,
html.brand-lite-motion .inf-hero .stars,
html.brand-lite-motion .inf-hero .stars-2,
html.brand-lite-motion .inf-hero .shooting-star,
html.brand-lite-motion .inf-hero .particle,
html.brand-lite-motion .inf-hero .hero-title .highlight,
html.brand-lite-motion .trust-banner::before,
html.brand-lite-motion .trust-banner::after,
html.brand-lite-motion .scroll-to-top.visible,
html.brand-lite-motion .inf-faq .section-title {
    animation: none !important;
}

/* Main landing footer parity */
.landing-footer {
    position: relative;
    z-index: 20;
    background: var(--landing-dark);
    color: var(--landing-white);
    padding: 80px 20px 40px;
    margin: 20px;
    border-radius: 24px;
    overflow: hidden;
    content-visibility: auto;
    contain-intrinsic-size: 680px;
}

.landing-footer::before {
    display: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 60px;
    align-items: start;
}

.footer-brand {
    max-width: 320px;
    --footer-wordmark-visual-inset: 0px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    line-height: 1;
    text-shadow: none;
}

.footer-logo .krewpick-mobile-wordmark {
    display: block;
    margin-left: -17px;
}

.footer-description {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    margin-top: 0;
    padding-left: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px 28px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-business-info {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: block;
    justify-content: normal;
    align-items: normal;
    gap: normal;
}

.footer-business-text {
    flex: initial;
    max-width: 1200px;
    text-align: left;
}

.footer-business-text p {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.9;
    margin: 0;
    white-space: nowrap;
}

.footer-business-text p + p {
    margin-top: 4px;
}

.footer-business-text span {
    display: inline-block;
    margin-right: 14px;
}

.footer-business-text span::after {
    content: '|';
    margin-left: 14px;
    color: rgba(255, 255, 255, 0.2);
}

.footer-business-text span:last-child::after {
    display: none;
}

.footer-bottom-left {
    flex: 1 1 280px;
    min-width: 0;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.footer-legal-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 5px 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-legal-links a:hover {
    border-color: rgba(255, 77, 166, 0.45);
    color: #ffffff;
    background: rgba(255, 77, 166, 0.12);
}

.footer-social {
    display: flex;
    gap: 12px;
    flex: 0 0 auto;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 0;
    border-radius: 50%;
    margin: 0 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(255, 77, 166, 0.3);
    transform: translateY(-3px);
}

.footer-social a svg {
    width: 20px;
    height: 20px;
    fill: rgba(255, 255, 255, 0.7);
    transition: fill 0.3s ease;
}

.footer-social a:hover svg {
    fill: #ffffff;
}

.footer-payment-badge {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    flex: 0 1 470px;
    min-width: 360px;
    margin-left: 0;
    padding-top: 0;
    text-align: right;
}

.footer-payment-badge p {
    flex: 1 1 auto;
    max-width: 310px;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.55;
    margin: 0;
}

.footer-payment-badge .logo-wrapper {
    flex: 0 0 188px;
    width: 188px;
    height: 25px;
    overflow: visible;
    margin-left: 0;
}

.footer-payment-badge img {
    display: block;
    width: 188px;
    max-width: none;
    height: auto;
    margin: 0;
    opacity: 1;
    filter: contrast(1.08) saturate(1.04);
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: span 2;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-bottom-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-legal-links {
        justify-content: center;
    }

    .footer-business-info {
        text-align: left;
    }

    .footer-business-text p {
        display: block;
        white-space: normal;
        font-size: 14px;
        margin-bottom: 12px;
    }

    .footer-business-text span {
        display: block;
        margin-right: 0;
        margin-bottom: 6px;
    }

    .footer-business-text span::after {
        display: none;
    }

    .footer-payment-badge {
        flex-direction: column;
        align-items: center;
        flex: 0 1 auto;
        min-width: 0;
        width: 100%;
        margin-top: 0;
        margin-left: 0;
        text-align: center;
    }

    .footer-payment-badge p {
        max-width: 360px;
    }

    .footer-payment-badge .logo-wrapper {
        flex: 0 0 auto;
    }
}
