@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800;900&display=swap');
#japankuru-landing * { margin: 0; padding: 0; box-sizing: border-box; }
        
        #japankuru-landing {
            --black: #0f172a;
            --white: #ffffff;
            --gray-50: #f8fafc;
            --gray-100: #f1f5f9;
            --gray-200: #e2e8f0;
            --gray-300: #cbd5e1;
            --gray-400: #94a3b8;
            --gray-500: #64748b;
            --gray-600: #475569;
            --accent: #3b82f6;
            --accent-dark: #2563eb;
            --accent-light: #60a5fa;
            --bg-card: #1e293b;
            --navy: #0f172a;
            --primary: #0f172a;
            --secondary: #475569;
        }

        html { scroll-behavior: smooth; }

        #japankuru-landing { font-family: 'Noto Sans JP', sans-serif; background: var(--white); width: 100%; overflow-x: hidden; }

        /* ===== NAVIGATION ===== */
#japankuru-landing .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255,255,255,0.98);
            backdrop-filter: blur(12px);
            padding: 16px 48px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--gray-100);
        }

#japankuru-landing .nav-logo {
            font-family: 'Inter', sans-serif;
            font-size: 18px;
            font-weight: 800;
            color: var(--black);
            text-decoration: none;
        }

#japankuru-landing .nav-menu {
            display: flex;
            gap: 24px;
            align-items: center;
        }

#japankuru-landing .nav-link {
            font-size: 13px;
            color: var(--gray-600);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
        }

#japankuru-landing .nav-link:hover { color: var(--black); }

#japankuru-landing .nav-cta {
            padding: 10px 24px;
            background: var(--accent);
            color: var(--white);
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            border-radius: 6px;
            transition: all 0.2s ease;
        }

#japankuru-landing .nav-cta:hover { background: var(--accent-dark); }

        /* Mobile Menu */
#japankuru-landing .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }

#japankuru-landing .nav-toggle span {
            width: 24px;
            height: 2px;
            background: var(--black);
            transition: all 0.3s;
        }

#japankuru-landing .mobile-menu {
            display: none;
            position: fixed;
            top: 60px;
            left: 0;
            right: 0;
            background: var(--white);
            padding: 24px;
            border-bottom: 1px solid var(--gray-200);
            flex-direction: column;
            gap: 16px;
            z-index: 999;
        }

#japankuru-landing .mobile-menu.active { display: flex; }

#japankuru-landing .mobile-menu a {
            font-size: 15px;
            color: var(--black);
            text-decoration: none;
            padding: 12px 0;
            border-bottom: 1px solid var(--gray-100);
        }

        /* ===== HERO ===== */
#japankuru-landing .hero {
            min-height: 100vh;
            background: var(--black);
            color: var(--white);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 60px;
        }

#japankuru-landing .hero-bg {
            position: absolute;
            top: 0;
            left: 20%;
            right: 0;
            width: 80%;
            height: 100%;
            opacity: 0.5;
        }

#japankuru-landing .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

#japankuru-landing .hero-bg::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, var(--black) 0%, var(--black) 20%, transparent 60%);
        }

#japankuru-landing .hero-container {
            width: 100%;
            max-width: 1600px;
            margin: 0 auto;
            padding: 60px 48px 48px;
            position: relative;
            z-index: 2;
        }

#japankuru-landing .hero-eyebrow {
            display: inline-block;
            padding: 8px 16px;
            background: var(--accent);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.1em;
            margin-bottom: 32px;
        }

#japankuru-landing .hero-title {
            font-size: clamp(36px, 5vw, 64px);
            font-weight: 900;
            line-height: 1.3;
            letter-spacing: -0.02em;
            margin-bottom: 28px;
            text-shadow: 
                0 0 20px rgba(59, 130, 246, 0.5),
                0 0 40px rgba(59, 130, 246, 0.3),
                0 0 60px rgba(59, 130, 246, 0.2),
                0 4px 8px rgba(0,0,0,0.3);
        }

#japankuru-landing .hero-title .highlight-num {
            color: var(--accent);
            font-weight: 900;
        }

#japankuru-landing .country-flags {
            font-size: 0.9em;
            letter-spacing: 0.1em;
            margin-right: 8px;
        }

#japankuru-landing .hero-sub-headline {
            font-size: 18px;
            color: var(--accent);
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: 0.02em;
        }

#japankuru-landing .hero-value-box {
            display: inline-flex;
            align-items: center;
            gap: 16px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%);
            border: 1px solid rgba(59, 130, 246, 0.4);
            border-radius: 12px;
            padding: 16px 24px;
            margin-bottom: 28px;
        }

#japankuru-landing .value-number {
            font-family: 'Inter', sans-serif;
            font-size: 42px;
            font-weight: 900;
            color: var(--accent);
            line-height: 1;
        }

#japankuru-landing .value-text {
            font-size: 16px;
            font-weight: 600;
            color: rgba(255,255,255,0.9);
            line-height: 1.5;
            text-align: left;
        }

#japankuru-landing .title-line {
            display: block;
            white-space: nowrap;
        }

#japankuru-landing .country-ruby {
            position: relative;
            display: inline-block;
        }

#japankuru-landing .ruby-flags {
            position: absolute;
            top: -0.6em;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.35em;
            letter-spacing: 2px;
            white-space: nowrap;
        }

#japankuru-landing .hero-desc {
            font-size: 17px;
            color: rgba(255,255,255,0.85);
            max-width: 520px;
            line-height: 1.9;
            margin-bottom: 36px;
            font-weight: 500;
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
        }

#japankuru-landing .hero-desc strong {
            color: white;
            font-weight: 700;
        }

#japankuru-landing .sp-only { display: none; }

#japankuru-landing .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            background: var(--accent);
            color: var(--white);
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
            border-radius: 6px;
            transition: all 0.2s ease;
        }

#japankuru-landing .hero-cta:hover {
            background: var(--accent-dark);
            color: var(--white);
        }

#japankuru-landing .hero-metrics {
            display: flex;
            gap: 48px;
            margin-top: 40px;
            padding-top: 24px;
            border-top: 1px solid rgba(255,255,255,0.15);
            flex-wrap: wrap;
        }

#japankuru-landing .hero-metric-value {
            font-family: 'Inter', sans-serif;
            font-size: clamp(40px, 5vw, 56px);
            font-weight: 900;
            line-height: 1;
        }

#japankuru-landing .hero-metric-value span { 
            color: var(--accent); 
            font-size: 0.5em;
            font-weight: 700;
        }

#japankuru-landing .hero-metric-label {
            font-size: 12px;
            color: rgba(255,255,255,0.8);
            margin-top: 8px;
            font-weight: 600;
            text-shadow: 0 1px 2px rgba(0,0,0,0.3);
        }

        /* Hero Credentials */
#japankuru-landing .hero-credentials {
            margin-top: 32px;
            padding-top: 24px;
            border-top: 1px solid rgba(255,255,255,0.08);
        }

#japankuru-landing .credentials-row {
            display: flex;
            align-items: baseline;
            gap: 16px;
            margin-bottom: 8px;
            font-size: 12px;
        }

#japankuru-landing .credentials-row:last-child {
            margin-bottom: 0;
        }

#japankuru-landing .credentials-label {
            font-weight: 700;
            color: rgba(255,255,255,0.4);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            min-width: 60px;
            flex-shrink: 0;
        }

#japankuru-landing .credentials-items {
            color: rgba(255,255,255,0.7);
            line-height: 1.6;
            font-weight: 500;
            text-shadow: 0 1px 2px rgba(0,0,0,0.2);
        }

        /* Hero Mini Flow */
#japankuru-landing .hero-mini-flow {
            margin-top: 32px;
            padding: 20px 24px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            backdrop-filter: blur(10px);
        }

#japankuru-landing .mini-flow-label {
            font-size: 11px;
            font-weight: 600;
            color: var(--accent);
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 16px;
            text-align: center;
        }

#japankuru-landing .mini-flow-items {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

#japankuru-landing .mini-flow-item {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            background: rgba(59, 130, 246, 0.15);
            border: 1px solid rgba(59, 130, 246, 0.3);
            border-radius: 8px;
        }

#japankuru-landing .mini-flow-num {
            font-family: 'Inter', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--accent);
            line-height: 1;
        }

#japankuru-landing .mini-flow-unit {
            font-size: 11px;
            color: rgba(255,255,255,0.8);
            line-height: 1.3;
            font-weight: 500;
        }

#japankuru-landing .mini-flow-arrow {
            color: rgba(255,255,255,0.3);
        }

        /* Hero Main (2-column) */
#japankuru-landing .hero-main {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }

#japankuru-landing .hero-text {
            flex: 1;
            max-width: 750px;
        }

        /* Phone Mockup */
#japankuru-landing .hero-mockup {
            flex-shrink: 0;
            position: relative;
            transform: perspective(800px) rotateY(-12deg) rotateX(3deg);
            transition: transform 0.3s ease;
        }

#japankuru-landing .hero-mockup:hover {
            transform: perspective(800px) rotateY(-6deg) rotateX(1deg);
        }

#japankuru-landing .phone-frame {
            width: 280px;
            height: 560px;
            background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 50%, #0a0a0a 100%);
            border-radius: 40px;
            padding: 12px;
            box-shadow: 
                0 50px 100px rgba(0,0,0,0.6),
                0 20px 40px rgba(0,0,0,0.4),
                0 0 0 1px rgba(255,255,255,0.15),
                inset 0 1px 0 rgba(255,255,255,0.1),
                inset 0 0 0 1px rgba(255,255,255,0.05);
            position: relative;
        }

#japankuru-landing .phone-notch {
            position: absolute;
            top: 16px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 26px;
            background: #1a1a1a;
            border-radius: 16px;
            z-index: 10;
        }

#japankuru-landing .phone-screen {
            width: 100%;
            height: 100%;
            border-radius: 30px;
            overflow: hidden;
            position: relative;
            background: #000;
        }

#japankuru-landing .reels-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

#japankuru-landing .reels-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 16px;
            background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 20%, transparent 60%, rgba(0,0,0,0.5) 100%);
        }

#japankuru-landing .reels-header {
            display: flex;
            align-items: center;
            gap: 10px;
            padding-top: 40px;
        }

#japankuru-landing .reels-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 2px solid white;
            object-fit: cover;
        }

#japankuru-landing .reels-username {
            font-size: 14px;
            font-weight: 700;
            color: white;
            text-shadow: 0 1px 3px rgba(0,0,0,0.5);
        }

#japankuru-landing .reels-follow {
            background: transparent;
            border: 1px solid white;
            color: white;
            font-size: 12px;
            font-weight: 600;
            padding: 6px 16px;
            border-radius: 8px;
            cursor: pointer;
        }

#japankuru-landing .reels-actions {
            position: absolute;
            right: 12px;
            bottom: 100px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            align-items: center;
        }

#japankuru-landing .reels-action {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            color: white;
            font-size: 12px;
            font-weight: 600;
            text-shadow: 0 1px 3px rgba(0,0,0,0.5);
        }

#japankuru-landing .reels-action svg {
            width: 28px;
            height: 28px;
            filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
        }

        /* Heart Animation */
#japankuru-landing .heart-container {
            position: relative;
        }

#japankuru-landing .heart-action svg {
            animation: heartPulse 1s ease-in-out infinite;
        }

        @keyframes heartPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.15); }
        }

#japankuru-landing .floating-hearts {
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            pointer-events: none;
        }

#japankuru-landing .float-heart {
            position: absolute;
            font-size: 16px;
            opacity: 0;
            animation: floatUp 3s ease-out infinite;
        }

#japankuru-landing .float-heart:nth-child(1) { animation-delay: 0s; left: 0; }
#japankuru-landing .float-heart:nth-child(2) { animation-delay: 0.6s; left: -15px; }
#japankuru-landing .float-heart:nth-child(3) { animation-delay: 1.2s; left: 15px; }
#japankuru-landing .float-heart:nth-child(4) { animation-delay: 1.8s; left: -8px; }
#japankuru-landing .float-heart:nth-child(5) { animation-delay: 2.4s; left: 8px; }

        @keyframes floatUp {
            0% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
            50% {
                opacity: 1;
            }
            100% {
                opacity: 0;
                transform: translateY(-80px) scale(0.5);
            }
        }

        /* Reels Bottom */
#japankuru-landing .reels-bottom {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

#japankuru-landing .reels-caption {
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

#japankuru-landing .caption-avatar {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            flex-shrink: 0;
        }

#japankuru-landing .caption-text {
            font-size: 13px;
            color: white;
            line-height: 1.4;
            text-shadow: 0 1px 3px rgba(0,0,0,0.5);
        }

#japankuru-landing .caption-text strong {
            font-weight: 700;
        }

#japankuru-landing .caption-tags {
            color: rgba(255,255,255,0.9);
        }

#japankuru-landing .reels-music {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: white;
            text-shadow: 0 1px 3px rgba(0,0,0,0.5);
        }

#japankuru-landing .music-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 20px;
            height: 20px;
            background: rgba(255,255,255,0.2);
            border-radius: 4px;
            animation: musicBounce 0.5s ease infinite alternate;
        }

        @keyframes musicBounce {
            0% { transform: scaleY(0.8); }
            100% { transform: scaleY(1.2); }
        }

#japankuru-landing .music-text {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 180px;
        }

#japankuru-landing .mockup-badge {
            position: absolute;
            bottom: -18px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent);
            color: white;
            font-size: 12px;
            font-weight: 700;
            padding: 10px 20px;
            border-radius: 24px;
            white-space: nowrap;
        }

        /* ===== CLIENTS ===== */
#japankuru-landing .clients-marquee {
            padding: 28px 0;
            background: var(--white);
            border-bottom: 1px solid var(--gray-100);
            overflow: hidden;
        }

#japankuru-landing .clients-label {
            font-size: 11px;
            font-weight: 600;
            color: var(--gray-400);
            letter-spacing: 0.1em;
            text-align: center;
            margin-bottom: 20px;
        }

#japankuru-landing .marquee-wrapper {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

#japankuru-landing .marquee-track {
            display: flex;
            gap: 56px;
            animation: marquee 30s linear infinite;
            width: max-content;
        }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

#japankuru-landing .client-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

#japankuru-landing .client-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

#japankuru-landing .clients-marquee .marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 40s linear infinite;
    width: max-content;
}

#japankuru-landing .clients-marquee .marquee-content {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-shrink: 0;
    padding-right: 48px;
}

#japankuru-landing .clients-marquee .client-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

#japankuru-landing .clients-marquee .client-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

        /* ===== SECTION BASE ===== */
        section {
            padding: 80px 24px;
        }

#japankuru-landing .section-inner {
            max-width: 1100px;
            margin: 0 auto;
        }

#japankuru-landing .section-header {
            margin-bottom: 48px;
        }

#japankuru-landing .section-header.center { text-align: center; }

        /* ===== PAIN POINTS SECTION ===== */
#japankuru-landing .pain-section {
            background: var(--gray-50);
            border-bottom: 1px solid var(--gray-200);
        }

#japankuru-landing .pain-intro {
            text-align: center;
            margin-bottom: 48px;
        }

#japankuru-landing .pain-intro h2 {
            font-size: clamp(24px, 4vw, 36px);
            font-weight: 800;
            margin-bottom: 16px;
            color: var(--gray-900);
        }

#japankuru-landing .pain-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 48px;
        }

#japankuru-landing .pain-card {
            background: white;
            border-radius: 16px;
            padding: 32px 24px;
            text-align: center;
            border: 1px solid var(--gray-200);
            transition: all 0.3s ease;
        }

#japankuru-landing .pain-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0,0,0,0.08);
        }

#japankuru-landing .pain-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 28px;
        }

#japankuru-landing .pain-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--gray-900);
        }

#japankuru-landing .pain-card p {
            font-size: 14px;
            color: var(--gray-600);
            line-height: 1.7;
        }

        /* ===== USP SECTION ===== */
#japankuru-landing .usp-section {
            background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
            color: white;
        }

#japankuru-landing .usp-intro {
            text-align: center;
            margin-bottom: 56px;
        }

#japankuru-landing .usp-intro h2 {
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 800;
            margin-bottom: 16px;
            color: white;
        }

#japankuru-landing .usp-intro p {
            font-size: 17px;
            color: rgba(255,255,255,0.7);
        }

#japankuru-landing .usp-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

#japankuru-landing .usp-card {
            text-align: center;
            padding: 40px 24px;
            background: rgba(255,255,255,0.05);
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s ease;
        }

#japankuru-landing .usp-card:hover {
            background: rgba(255,255,255,0.08);
            transform: translateY(-4px);
        }

#japankuru-landing .usp-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--accent) 0%, #60a5fa 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-family: 'Inter', sans-serif;
            font-size: 32px;
            font-weight: 900;
            color: white;
            box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
        }

#japankuru-landing .usp-card h3 {
            font-size: 22px;
            font-weight: 800;
            margin-bottom: 16px;
            color: white;
        }

#japankuru-landing .usp-highlight {
            font-family: 'Inter', sans-serif;
            font-size: 36px;
            font-weight: 900;
            color: var(--accent);
            display: block;
            margin-bottom: 8px;
        }

#japankuru-landing .usp-card p {
            font-size: 15px;
            color: rgba(255,255,255,0.7);
            line-height: 1.8;
        }

#japankuru-landing .usp-cta {
            text-align: center;
            margin-top: 56px;
        }

#japankuru-landing .usp-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 40px;
            background: white;
            color: var(--gray-900);
            font-size: 17px;
            font-weight: 700;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

#japankuru-landing .usp-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(0,0,0,0.3);
        }

#japankuru-landing .section-eyebrow {
            font-size: 11px;
            font-weight: 700;
            color: var(--accent);
            letter-spacing: 0.15em;
            margin-bottom: 12px;
        }


#japankuru-landing .section-desc {
            font-size: 16px;
            color: var(--gray-600);
            line-height: 1.9;
            max-width: 600px;
        }

#japankuru-landing .section-header.center .section-desc { margin: 0 auto; }

        /* ===== MARKET ===== */
#japankuru-landing .market-section {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: var(--white);
        }

#japankuru-landing .market-section .section-title { color: var(--white); }

#japankuru-landing .section-subtitle {
            font-size: 17px;
            color: rgba(255,255,255,0.6);
            margin-top: 16px;
            line-height: 1.8;
            max-width: 640px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 500;
        }

#japankuru-landing .market-story {
            display: flex;
            flex-direction: column;
            gap: 48px;
        }

#japankuru-landing .story-block {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
            padding: 40px;
            background: rgba(255,255,255,0.03);
            border-radius: 16px;
            border: 1px solid rgba(255,255,255,0.08);
        }

#japankuru-landing .story-block:nth-child(even) {
            direction: rtl;
        }

#japankuru-landing .story-block:nth-child(even) > * {
            direction: ltr;
        }

#japankuru-landing .story-text-side {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

#japankuru-landing .story-number {
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            font-weight: 800;
            color: var(--accent);
            letter-spacing: 0.05em;
        }

#japankuru-landing .story-content h3 {
            font-size: 24px;
            font-weight: 700;
            line-height: 1.5;
            margin-bottom: 12px;
            color: white;
        }

#japankuru-landing .story-content h3 strong {
            color: var(--accent);
        }

#japankuru-landing .story-content p {
            font-size: 15px;
            color: rgba(255,255,255,0.6);
            line-height: 1.9;
            font-weight: 500;
        }

#japankuru-landing .story-content p strong {
            color: rgba(255,255,255,0.95);
        }

#japankuru-landing .story-source {
            display: block;
            font-size: 12px;
            color: rgba(255,255,255,0.35);
            margin-top: 12px;
        }

        /* Visual Elements - Larger */
#japankuru-landing .story-visual {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 20px;
        }

#japankuru-landing .visual-caption {
            font-size: 13px;
            color: rgba(255,255,255,0.5);
            font-weight: 600;
        }

        /* Donut Chart - Larger */
#japankuru-landing .donut-chart {
            position: relative;
            width: 160px;
            height: 160px;
        }

#japankuru-landing .donut-chart svg {
            width: 100%;
            height: 100%;
        }

#japankuru-landing .donut-label {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-family: 'Inter', sans-serif;
            font-size: 32px;
            font-weight: 800;
            color: white;
        }

        /* Bar Chart - Larger */
#japankuru-landing .bar-chart {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

#japankuru-landing .bar-item {
            display: grid;
            grid-template-columns: 60px 1fr 50px;
            gap: 12px;
            align-items: center;
        }

#japankuru-landing .bar-label {
            font-size: 14px;
            color: rgba(255,255,255,0.6);
            font-weight: 500;
        }

#japankuru-landing .bar-track {
            height: 12px;
            background: rgba(255,255,255,0.1);
            border-radius: 6px;
            overflow: hidden;
        }

#japankuru-landing .bar-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--accent), #60a5fa);
            border-radius: 6px;
        }

#japankuru-landing .bar-value {
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            font-weight: 700;
            color: white;
            text-align: right;
        }

        /* Compare Visual - Larger */
#japankuru-landing .compare-visual {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 24px;
        }

#japankuru-landing .compare-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            padding: 20px 24px;
            border-radius: 12px;
        }

#japankuru-landing .compare-icon {
            font-size: 40px;
        }

#japankuru-landing .compare-text {
            font-size: 14px;
            font-weight: 600;
        }

#japankuru-landing .compare-item.bad {
            background: rgba(255,255,255,0.05);
            opacity: 0.5;
        }

#japankuru-landing .compare-item.good {
            background: rgba(59,130,246,0.15);
            border: 2px solid rgba(59,130,246,0.4);
        }

#japankuru-landing .compare-arrow {
            font-size: 24px;
            color: var(--accent);
        }

#japankuru-landing .market-bottom-text {
            margin-top: 56px;
            text-align: center;
        }

#japankuru-landing .market-question {
            font-size: 22px;
            font-weight: 600;
            color: rgba(255,255,255,0.7);
            margin-bottom: 28px;
        }
/* Market Stats Layout */
#japankuru-landing .market-stats-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

#japankuru-landing .num-item-box {
    position: relative;
    text-align: center;
    min-width: 200px;
    padding-top: 20px;
}

/* 상단 강조 배지 */
#japankuru-landing .stat-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #ef4444; /* Red */
    color: white;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
    animation: pulseStat 2s infinite;
}

#japankuru-landing .stat-badge.growth {
    background: #3b82f6; /* Blue */
}

@keyframes pulseStat {
    0% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
    100% { transform: translateX(-50%) scale(1); }
}

/* 숫자 스타일 */
#japankuru-landing .num-item {
    display: flex;
    align-items: baseline;
    justify-content: center;
    color: white;
    margin-bottom: 5px;
}

#japankuru-landing .num-item strong {
    font-family: 'Inter', sans-serif;
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
    color: var(--accent);
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

#japankuru-landing .num-item strong.target {
    color: #94a3b8; /* gray-400 */
}

#japankuru-landing .num-item span {
    font-size: 18px;
    font-weight: 700;
    margin-left: 5px;
}

/* 하단 설명 */
#japankuru-landing .num-note {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
}

#japankuru-landing .stat-forecast {
    font-size: 11px;
    color: var(--accent);
    margin-top: 5px;
    font-weight: 500;
    opacity: 0.9;
}

#japankuru-landing .num-divider {
    color: rgba(255,255,255,0.1);
    font-size: 40px;
    font-weight: 200;
    padding-top: 20px;
}

/* 모바일 대응 */
@media (max-width: 768px) {
    #japankuru-landing .market-stats-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    #japankuru-landing .num-divider {
        display: none;
    }
    #japankuru-landing .num-item strong {
        font-size: 42px;
    }
}

#japankuru-landing .market-numbers {
            display: flex;
            justify-content: center;
            align-items: baseline;
            gap: 8px;
            flex-wrap: wrap;
        }

#japankuru-landing .num-item {
            color: white;
            font-size: 17px;
        }

#japankuru-landing .num-item strong {
            font-family: 'Inter', sans-serif;
            font-size: 40px;
            font-weight: 800;
            color: var(--accent);
        }

#japankuru-landing .num-note {
            font-size: 12px;
            color: rgba(255,255,255,0.4);
            margin-left: 4px;
        }

#japankuru-landing .num-divider {
            color: rgba(255,255,255,0.2);
            font-size: 24px;
            margin: 0 16px;
        }

#japankuru-landing .market-source {
            font-size: 11px;
            color: rgba(255,255,255,0.3);
            margin-top: 24px;
            text-align: center;
        }

        /* ===== PAIN TO SOLUTION ===== */
#japankuru-landing .pain-solution-section {
            background: var(--navy);
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

#japankuru-landing .pain-solution-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: linear-gradient(135deg, transparent 0%, rgba(59, 130, 246, 0.03) 100%);
            pointer-events: none;
        }

#japankuru-landing .pain-solution-header {
            text-align: center;
            margin-bottom: 80px;
        }

#japankuru-landing .pain-solution-eyebrow {
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.3em;
            color: var(--accent);
            text-transform: uppercase;
            margin-bottom: 24px;
        }

#japankuru-landing .pain-solution-title {
            color: var(--white);
            font-size: clamp(28px, 4vw, 42px);
            line-height: 1.4;
            font-weight: 400;
        }

#japankuru-landing .pain-solution-title .title-thin {
            font-weight: 300;
            color: var(--gray-400);
        }

#japankuru-landing .pain-solution-title .title-bold {
            font-weight: 700;
            color: var(--white);
        }

#japankuru-landing .pain-solution-grid {
            display: flex;
            flex-direction: column;
            gap: 1px;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 16px;
            overflow: hidden;
        }

#japankuru-landing .pain-solution-item {
            display: grid;
            grid-template-columns: 80px 1fr;
            background: var(--navy);
            transition: background 0.3s ease;
        }

#japankuru-landing .pain-solution-item:hover {
            background: rgba(59, 130, 246, 0.05);
        }

#japankuru-landing .item-number {
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.1em;
            color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            border-right: 1px solid rgba(255,255,255,0.1);
        }

#japankuru-landing .item-content {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            padding: 40px;
            gap: 40px;
        }

#japankuru-landing .item-pain {
            text-align: left;
        }

#japankuru-landing .pain-label {
            font-family: 'Inter', sans-serif;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.15em;
            color: var(--gray-500);
            display: block;
            margin-bottom: 12px;
        }

#japankuru-landing .item-pain p {
            font-size: 15px;
            color: var(--gray-400);
            line-height: 1.7;
            font-weight: 400;
        }

#japankuru-landing .item-arrow {
            color: var(--accent);
            opacity: 0.6;
        }

#japankuru-landing .item-solution {
            text-align: left;
        }

#japankuru-landing .solution-label {
            font-family: 'Inter', sans-serif;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.15em;
            color: var(--accent);
            display: block;
            margin-bottom: 12px;
        }

#japankuru-landing .item-solution p {
            font-size: 15px;
            color: var(--white);
            line-height: 1.7;
        }

#japankuru-landing .item-solution strong {
            font-weight: 700;
            color: var(--white);
        }

        @media (max-width: 768px) {
#japankuru-landing .pain-solution-section {
                padding: 80px 0;
            }

#japankuru-landing .pain-solution-item {
                grid-template-columns: 1fr;
            }

#japankuru-landing .item-number {
                padding: 16px;
                border-right: none;
                border-bottom: 1px solid rgba(255,255,255,0.1);
                justify-content: flex-start;
            }

#japankuru-landing .item-content {
                grid-template-columns: 1fr;
                gap: 24px;
                padding: 24px;
            }

#japankuru-landing .item-arrow {
                transform: rotate(90deg);
                justify-self: center;
            }

#japankuru-landing .item-pain, .item-solution {
                text-align: center;
            }
        }

        /* ===== PORTFOLIO MARQUEE ===== */
#japankuru-landing .portfolio-marquee-section {
            background: var(--black);
            padding: 48px 0;
            overflow: hidden;
            position: relative;
        }

#japankuru-landing .marquee-wrapper {
            overflow: hidden;
        }

#japankuru-landing .marquee-track {
            display: flex;
            animation: marquee 30s linear infinite;
        }

#japankuru-landing .marquee-content {
            display: flex;
            gap: 16px;
            flex-shrink: 0;
            padding-right: 16px;
        }

#japankuru-landing .marquee-content img {
            height: 200px;
            width: auto;
            border-radius: 8px;
            object-fit: cover;
        }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

#japankuru-landing .marquee-label {
            position: absolute;
            bottom: 16px;
            right: 32px;
        }

#japankuru-landing .marquee-label span {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.2em;
            color: var(--gray-500);
        }

        /* ===== WHY SECTION ===== */
#japankuru-landing .why-section { 
            background: var(--white);
        }

#japankuru-landing .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            background: var(--gray-200);
            border: 1px solid var(--gray-200);
            border-radius: 12px;
            overflow: hidden;
        }

#japankuru-landing .why-card {
            background: var(--white);
            padding: 32px 24px;
            transition: all 0.3s ease;
        }

#japankuru-landing .why-card:hover { background: var(--gray-50); }

#japankuru-landing .why-number {
            font-family: 'Inter', sans-serif;
            font-size: 24px;
            font-weight: 900;
            color: white;
            line-height: 1;
            margin-bottom: 20px;
            width: 56px;
            height: 56px;
            background: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
        }

#japankuru-landing .why-card:hover .why-number { 
            background: var(--accent-dark);
            transform: scale(1.1);
        }

#japankuru-landing .why-card h3 {
            font-size: 17px;
            font-weight: 800;
            margin-bottom: 12px;
            line-height: 1.5;
        }

#japankuru-landing .why-card p {
            font-size: 15px;
            color: var(--gray-500);
            line-height: 1.8;
        }

#japankuru-landing .why-highlight {
            background: linear-gradient(transparent 60%, #fef08a 60%);
        }

        /* ===== CHANNEL SECTION (국가별 카드) ===== */
#japankuru-landing .channel-section { 
            background: var(--black);
            color: var(--white);
        }

#japankuru-landing .channel-section .section-title { color: var(--white); }
#japankuru-landing .channel-section .section-desc { color: var(--gray-400); }

#japankuru-landing .channel-header-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 24px;
        }

#japankuru-landing .channel-total {
            text-align: right;
        }

#japankuru-landing .channel-total-value {
            font-family: 'Inter', sans-serif;
            font-size: 48px;
            font-weight: 900;
            line-height: 1;
        }

#japankuru-landing .channel-total-label {
            font-size: 14px;
            color: var(--gray-400);
            margin-top: 4px;
        }

        /* Dashboard Stats */
#japankuru-landing .dashboard-wrapper {
            position: relative;
            margin-bottom: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

#japankuru-landing .channel-dashboard {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
        }

#japankuru-landing .dashboard-card {
            background: var(--bg-card);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 12px;
            padding: 24px;
            text-align: center;
        }

#japankuru-landing .dashboard-icon {
            width: 40px;
            height: 40px;
            margin: 0 auto 12px;
        }

#japankuru-landing .dashboard-icon svg {
            width: 40px;
            height: 40px;
        }

#japankuru-landing .dashboard-value {
            font-family: 'Inter', sans-serif;
            font-size: 36px;
            font-weight: 900;
            margin-bottom: 4px;
            background: linear-gradient(transparent 60%, rgba(254, 240, 138, 0.3) 60%);
            display: inline;
        }

#japankuru-landing .dashboard-label {
            font-size: 15px;
            color: var(--accent);
            font-weight: 700;
            margin-bottom: 8px;
        }

#japankuru-landing .dashboard-desc {
            font-size: 13px;
            color: var(--gray-400);
            line-height: 1.5;
        }

        /* Country Grid */
#japankuru-landing .country-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
            margin-bottom: 32px;
        }

#japankuru-landing .country-card {
            background: var(--bg-card);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 12px;
            padding: 20px;
            transition: all 0.3s ease;
        }

#japankuru-landing .country-card:hover {
            border-color: var(--accent);
        }

#japankuru-landing .country-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }

#japankuru-landing .country-name {
            font-size: 16px;
            font-weight: 700;
        }

#japankuru-landing .country-flag {
            font-size: 22px;
        }

#japankuru-landing .country-stats {
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

#japankuru-landing .country-stat {
            font-size: 13px;
            color: var(--gray-400);
        }

#japankuru-landing .platform-list {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

#japankuru-landing .platform-link-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 10px;
            background: rgba(255,255,255,0.05);
            border-radius: 6px;
            text-decoration: none;
            color: rgba(255,255,255,0.8);
            font-size: 13px;
            transition: all 0.2s ease;
        }

#japankuru-landing .platform-link-item:hover {
            background: rgba(255,255,255,0.12);
            color: white;
        }

#japankuru-landing .platform-icon {
            width: 14px;
            height: 14px;
            flex-shrink: 0;
        }

#japankuru-landing .platform-link-item span {
            flex: 1;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

#japankuru-landing .link-arrow {
            color: rgba(255,255,255,0.3);
            flex-shrink: 0;
        }

        /* Website Info */
#japankuru-landing .website-info {
            margin-bottom: 32px;
        }

        /* Audience Quality - 이미지 포함 */
#japankuru-landing .audience-quality {
            margin-bottom: 40px;
            padding: 32px;
            background: rgba(220, 38, 38, 0.05);
            border: 1px solid rgba(220, 38, 38, 0.2);
            border-radius: 16px;
        }

#japankuru-landing .audience-header {
            text-align: center;
            margin-bottom: 28px;
        }

#japankuru-landing .audience-header h3 {
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 8px;
        }

#japankuru-landing .audience-header p {
            font-size: 13px;
            color: var(--gray-400);
        }

#japankuru-landing .audience-evidence {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

#japankuru-landing .evidence-card {
            background: var(--bg-card);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 10px;
            overflow: hidden;
        }

#japankuru-landing .evidence-image {
            height: 100px;
            overflow: hidden;
        }

#japankuru-landing .evidence-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.8;
        }

#japankuru-landing .evidence-content {
            padding: 16px;
        }

#japankuru-landing .evidence-content h4 {
            font-size: 12px;
            font-weight: 700;
            margin-bottom: 8px;
            line-height: 1.4;
        }

#japankuru-landing .evidence-content p {
            font-size: 11px;
            color: var(--gray-400);
            line-height: 1.6;
            margin-bottom: 10px;
        }

#japankuru-landing .evidence-tag {
            display: inline-block;
            font-size: 11px;
            font-weight: 600;
            color: white;
            padding: 6px 12px;
            background: var(--accent);
            border-radius: 4px;
            box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
        }

        /* Country Table (2열 그리드) */
#japankuru-landing .country-table {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-bottom: 32px;
        }

        /* 확장 대응 row 스타일 */
#japankuru-landing .expansion-row {
            background: transparent;
            border: 1px dashed rgba(255,255,255,0.2);
        }

#japankuru-landing .expansion-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: rgba(59, 130, 246, 0.15);
            border-radius: 8px;
            font-size: 14px;
            font-weight: 700;
            color: var(--accent);
        }

#japankuru-landing .expansion-flags {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

#japankuru-landing .expansion-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            color: var(--gray-400);
        }

#japankuru-landing .expansion-item .exp-code {
            font-size: 10px;
            font-weight: 700;
            color: var(--gray-400);
            background: rgba(255,255,255,0.1);
            padding: 2px 6px;
            border-radius: 3px;
            font-family: 'Inter', sans-serif;
        }

#japankuru-landing .expansion-item span:first-child {
            font-size: 18px;
        }

#japankuru-landing .expansion-channel {
            font-size: 9px;
            background: rgba(225, 48, 108, 0.2);
            color: #E1306C;
            padding: 2px 5px;
            border-radius: 3px;
            font-weight: 600;
        }

#japankuru-landing .country-row {
            display: flex;
            flex-direction: column;
            gap: 12px;
            padding: 20px;
            background: var(--bg-card);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 10px;
            transition: all 0.2s;
        }
        
#japankuru-landing .country-row:hover {
            border-color: var(--accent);
        }

#japankuru-landing .country-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }

#japankuru-landing .country-flag {
            font-size: 12px;
            font-weight: 700;
            color: var(--accent);
            background: rgba(59, 130, 246, 0.15);
            padding: 4px 8px;
            border-radius: 4px;
            font-family: 'Inter', sans-serif;
        }

#japankuru-landing .country-meta {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

#japankuru-landing .country-name {
            font-size: 14px;
            font-weight: 700;
        }

#japankuru-landing .country-stat {
            font-size: 11px;
            color: var(--gray-400);
        }

#japankuru-landing .country-channels {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

#japankuru-landing .channel-chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 20px;
            text-decoration: none;
            color: var(--gray-300);
            font-size: 11px;
            transition: all 0.2s ease;
        }

#japankuru-landing .channel-chip:hover,
#japankuru-landing .channel-chip.active {
            background: var(--accent);
            border-color: var(--accent);
            color: white;
        }

#japankuru-landing .channel-chip.active {
            box-shadow: 0 0 12px rgba(59, 130, 246, 0.4);
        }

        /* Country Row with Trait */
#japankuru-landing .country-row-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 12px;
        }

#japankuru-landing .country-trait {
            font-size: 10px;
            color: var(--gray-400);
            background: rgba(255,255,255,0.05);
            padding: 4px 10px;
            border-radius: 4px;
            white-space: nowrap;
            margin-top: 4px;
        }

#japankuru-landing .channel-chip svg {
            width: 14px;
            height: 14px;
            flex-shrink: 0;
        }

        /* 拡張対応セクション */
#japankuru-landing .expansion-section {
            margin-top: 32px;
            padding-top: 24px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

#japankuru-landing .expansion-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

#japankuru-landing .expansion-label {
            padding: 4px 12px;
            background: rgba(255,255,255,0.1);
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            color: rgba(255,255,255,0.7);
        }

#japankuru-landing .expansion-note {
            font-size: 13px;
            color: rgba(255,255,255,0.5);
        }

#japankuru-landing .expansion-countries {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
        }

#japankuru-landing .expansion-country {
            display: flex;
            align-items: center;
            gap: 12px;
        }

#japankuru-landing .expansion-country .country-flag {
            font-size: 24px;
        }

#japankuru-landing .expansion-info .country-name {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: rgba(255,255,255,0.8);
            margin-bottom: 4px;
        }

#japankuru-landing .expansion-channels {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
        }

#japankuru-landing .mini-chip {
            padding: 2px 8px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 4px;
            font-size: 10px;
            color: rgba(255,255,255,0.6);
        }

#japankuru-landing .website-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            padding: 24px;
            text-align: center;
        }

#japankuru-landing .website-card h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
        }

#japankuru-landing .website-languages {
            display: flex;
            justify-content: center;
            gap: 8px;
            font-size: 22px;
            margin-bottom: 12px;
        }

#japankuru-landing .website-card p {
            font-size: 14px;
            color: rgba(255,255,255,0.6);
            margin-bottom: 16px;
        }

#japankuru-landing .website-stat {
            font-family: 'Inter', sans-serif;
            font-size: 28px;
            font-weight: 800;
        }

#japankuru-landing .stat-date {
            font-size: 12px;
            font-weight: 400;
            color: rgba(255,255,255,0.4);
            margin-left: 8px;
        }

        /* Creator Section */
#japankuru-landing .creator-section {
            padding-top: 32px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

#japankuru-landing .creator-section h4 {
            font-size: 12px;
            font-weight: 700;
            color: rgba(255,255,255,0.4);
            letter-spacing: 0.1em;
            margin-bottom: 16px;
        }

#japankuru-landing .creator-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 12px;
        }

#japankuru-landing .creator-card {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 8px;
            min-height: 56px;
        }

#japankuru-landing .creator-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
        }

#japankuru-landing .creator-info { line-height: 1.3; }
#japankuru-landing .creator-name { font-size: 12px; font-weight: 600; white-space: nowrap; }
#japankuru-landing .creator-role { font-size: 10px; color: var(--gray-400); }
#japankuru-landing .role-code {
            font-weight: 700;
            color: var(--accent);
            font-family: 'Inter', sans-serif;
        }

        /* ===== CUSTOMER JOURNEY (인포그래픽) ===== */
#japankuru-landing .journey-section { 
            background: linear-gradient(180deg, var(--gray-50) 0%, white 100%);
            overflow: visible;
            position: relative;
        }

#japankuru-landing .journey-section .section-inner {
            overflow: visible;
        }

#japankuru-landing .journey-infographic {
            margin-top: 48px;
            position: relative;
            overflow: visible;
        }

        /* Floating JAPANKURU Contents */
#japankuru-landing .journey-floating-images {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            overflow: visible;
            z-index: 0;
        }

#japankuru-landing .floating-img {
            position: absolute;
            object-fit: cover;
            border-radius: 12px;
            box-shadow: 0 12px 40px rgba(0,0,0,0.25);
            opacity: 1;
            animation: float 6s ease-in-out infinite;
            z-index: 2;
            border: 3px solid white;
        }

        /* 왼쪽 영역 이미지들 */
#japankuru-landing .floating-img.img-1 { 
            top: 5%; 
            left: -8%; 
            width: 140px; 
            height: 100px; 
            animation-delay: 0s; 
        }
#japankuru-landing .floating-img.img-3 { 
            top: 40%; 
            left: -10%; 
            width: 160px; 
            height: 110px; 
            animation-delay: 2s; 
        }
#japankuru-landing .floating-img.img-5 { 
            bottom: 25%; 
            left: -6%; 
            width: 130px; 
            height: 90px; 
            animation-delay: 1.5s; 
        }

        /* 오른쪽 영역 이미지들 */
#japankuru-landing .floating-img.img-2 { 
            top: 8%; 
            right: -8%; 
            width: 130px; 
            height: 130px; 
            animation-delay: 1s; 
        }
#japankuru-landing .floating-img.img-4 { 
            top: 45%; 
            right: -10%; 
            width: 150px; 
            height: 100px; 
            animation-delay: 0.5s; 
        }
#japankuru-landing .floating-img.img-6 { 
            bottom: 20%; 
            right: -6%; 
            width: 140px; 
            height: 95px; 
            animation-delay: 2.5s; 
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-10px) rotate(2deg); }
        }

        /* JAPANKURU Badge */
#japankuru-landing .japankuru-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 32px;
            height: 32px;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
            animation: pulse-badge 2s ease-in-out infinite;
        }

#japankuru-landing .japankuru-badge img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        @keyframes pulse-badge {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        /* Timeline - 대폭 강화 */
#japankuru-landing .journey-timeline {
            display: flex;
            justify-content: center;
            align-items: stretch;
            gap: 0;
            position: relative;
            z-index: 1;
        }

#japankuru-landing .timeline-phase {
            position: relative;
            flex: 1;
            max-width: 320px;
            text-align: center;
            padding: 32px 24px;
            padding-bottom: 48px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 4px 24px rgba(0,0,0,0.08);
            border: 2px solid transparent;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

#japankuru-landing .timeline-phase::after {
            content: '';
            position: absolute;
            bottom: -40px;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 40px;
            background: linear-gradient(180deg, var(--gray-300) 0%, var(--accent) 100%);
        }

#japankuru-landing .phase-arrow-down {
            position: absolute;
            bottom: -56px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-top: 10px solid var(--accent);
            animation: arrow-down-pulse 1.5s ease-in-out infinite;
        }

        @keyframes arrow-down-pulse {
            0%, 100% { opacity: 0.6; transform: translateX(-50%) translateY(0); }
            50% { opacity: 1; transform: translateX(-50%) translateY(4px); }
        }

#japankuru-landing .timeline-phase:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.15);
        }

#japankuru-landing .timeline-phase.phase-mae:hover { border-color: #3b82f6; }
#japankuru-landing .timeline-phase.phase-naka:hover { border-color: #10b981; }
#japankuru-landing .timeline-phase.phase-ato:hover { border-color: #8b5cf6; }

#japankuru-landing .phase-number {
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            color: white;
            background: var(--gray-400);
            padding: 4px 12px;
            border-radius: 20px;
            margin-bottom: 16px;
            letter-spacing: 0.1em;
        }

#japankuru-landing .timeline-phase.phase-mae .phase-number { background: #3b82f6; }
#japankuru-landing .timeline-phase.phase-naka .phase-number { background: #10b981; }
#japankuru-landing .timeline-phase.phase-ato .phase-number { background: #8b5cf6; }

#japankuru-landing .phase-name {
            font-size: 56px;
            font-weight: 900;
            letter-spacing: -0.03em;
            margin-bottom: 4px;
            line-height: 1;
        }

#japankuru-landing .phase-name.mae { 
            color: #3b82f6; 
            text-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
        }
#japankuru-landing .phase-name.naka { 
            color: #10b981; 
            text-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
        }
#japankuru-landing .phase-name.ato { 
            color: #8b5cf6; 
            text-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
        }

#japankuru-landing .phase-period {
            font-size: 13px;
            color: var(--gray-400);
            margin-bottom: 20px;
            font-weight: 500;
        }

#japankuru-landing .phase-action {
            font-size: 22px;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 24px;
            padding: 12px;
            background: var(--gray-50);
            border-radius: 12px;
        }

#japankuru-landing .phase-touchpoints {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

#japankuru-landing .phase-touchpoints span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 10px 16px;
            background: var(--gray-50);
            border: 1px solid var(--gray-200);
            border-radius: 24px;
            font-size: 14px;
            font-weight: 500;
            color: var(--gray-700);
            transition: all 0.2s ease;
        }

#japankuru-landing .phase-touchpoints span:hover {
            background: white;
            border-color: var(--accent);
            color: var(--accent);
            transform: scale(1.02);
        }

        /* Phase Tagline */
#japankuru-landing .phase-tagline {
            margin-top: 20px;
            padding-top: 16px;
            border-top: 1px solid var(--gray-200);
            font-size: 12px;
            color: var(--gray-500);
            line-height: 1.6;
        }

#japankuru-landing .phase-tagline strong {
            color: var(--accent);
            font-weight: 700;
        }

        /* Phase Visual (목업 등) */
#japankuru-landing .phase-visual {
            margin-top: 16px;
            position: relative;
        }

        /* Browser Mockup (旅マエ) */
#japankuru-landing .browser-mockup {
            width: 100%;
            max-width: 220px;
            margin: 0 auto;
            background: #f5f5f5;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0,0,0,0.15);
        }

#japankuru-landing .browser-header {
            background: #e8e8e8;
            padding: 8px 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

#japankuru-landing .browser-dots {
            display: flex;
            gap: 4px;
        }

#japankuru-landing .browser-dots span {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #ccc;
        }

#japankuru-landing .browser-dots span:first-child { background: #ff5f57; }
#japankuru-landing .browser-dots span:nth-child(2) { background: #ffbd2e; }
#japankuru-landing .browser-dots span:last-child { background: #28ca42; }

#japankuru-landing .browser-url {
            flex: 1;
            background: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 10px;
            color: var(--gray-500);
            text-align: center;
        }

#japankuru-landing .browser-screen {
            aspect-ratio: 16/10;
            overflow: hidden;
        }

#japankuru-landing .browser-screen img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Mobile Mockup (旅ナカ) */
#japankuru-landing .mobile-mockup {
            width: 100%;
            max-width: 140px;
            margin: 0 auto;
            background: #1a1a1a;
            border-radius: 20px;
            padding: 6px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.2);
        }

#japankuru-landing .mobile-screen {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            aspect-ratio: 9/16;
            max-height: 180px;
        }

#japankuru-landing .mobile-screen img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

#japankuru-landing .mobile-notch {
            width: 50px;
            height: 16px;
            background: #1a1a1a;
            border-radius: 0 0 10px 10px;
            margin: -6px auto 6px;
            position: relative;
            z-index: 1;
        }

        /* SNS Mockup (旅アト) */
#japankuru-landing .sns-mockup {
            width: 100%;
            max-width: 200px;
            margin: 0 auto;
        }

#japankuru-landing .sns-post {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0,0,0,0.15);
            border: 1px solid var(--gray-200);
        }

#japankuru-landing .sns-header {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 12px;
        }

#japankuru-landing .sns-avatar {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
        }

#japankuru-landing .sns-user {
            display: flex;
            flex-direction: column;
        }

#japankuru-landing .sns-name {
            font-size: 11px;
            font-weight: 600;
            color: var(--black);
        }

#japankuru-landing .sns-handle {
            font-size: 10px;
            color: var(--gray-400);
        }

#japankuru-landing .sns-image {
            aspect-ratio: 1/1;
            overflow: hidden;
            max-height: 120px;
        }

#japankuru-landing .sns-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

#japankuru-landing .sns-actions {
            display: flex;
            gap: 12px;
            padding: 10px 12px;
        }

#japankuru-landing .sns-actions svg {
            width: 18px;
            height: 18px;
            color: var(--gray-600);
        }

        /* Touchpoint Icons (에모지 대신 SVG) */
#japankuru-landing .touchpoint-icon {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
            opacity: 0.6;
        }

#japankuru-landing .phase-touchpoints span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 16px;
            background: var(--gray-50);
            border: 1px solid var(--gray-200);
            border-radius: 24px;
            font-size: 14px;
            font-weight: 500;
            color: var(--gray-700);
            transition: all 0.2s ease;
        }

        /* Connector Arrow - 애니메이션 추가 */
#japankuru-landing .timeline-connector {
            flex-shrink: 0;
            width: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray-300);
        }

#japankuru-landing .timeline-connector svg {
            width: 60px;
            height: 24px;
            animation: arrow-pulse 2s ease-in-out infinite;
        }

        @keyframes arrow-pulse {
            0%, 100% { opacity: 0.4; transform: translateX(0); }
            50% { opacity: 1; transform: translateX(5px); }
        }

        /* Result - 강화 */
#japankuru-landing .journey-result {
            margin-top: 80px;
            text-align: center;
            position: relative;
            z-index: 1;
        }

#japankuru-landing .result-arrow {
            color: var(--accent);
            margin-bottom: 24px;
            animation: bounce-down 2s ease-in-out infinite;
        }

        @keyframes bounce-down {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(8px); }
        }

#japankuru-landing .result-arrow svg {
            width: 32px;
            height: 56px;
        }

        /* Journey Connection Lines */
#japankuru-landing .journey-connection {
            position: relative;
            height: 100px;
            margin-top: 40px;
        }

#japankuru-landing .connection-svg {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            max-width: 900px;
            height: 100%;
        }

#japankuru-landing .connection-line {
            fill: none;
            stroke: url(#connectionGradient);
            stroke-width: 3;
            stroke-linecap: round;
            opacity: 0.6;
        }

#japankuru-landing .connection-dot {
            fill: var(--accent);
            animation: dot-pulse 2s ease-in-out infinite;
        }

#japankuru-landing .connection-dot.dot-1 { animation-delay: 0s; }
#japankuru-landing .connection-dot.dot-2 { animation-delay: 0.3s; }
#japankuru-landing .connection-dot.dot-3 { animation-delay: 0.6s; }

        @keyframes dot-pulse {
            0%, 100% { r: 6; opacity: 0.6; }
            50% { r: 10; opacity: 1; }
        }

        /* Result 강화 */
#japankuru-landing .journey-result {
            margin-top: 0;
            text-align: center;
            position: relative;
            z-index: 1;
        }

#japankuru-landing .result-arrow {
            display: none; /* 기존 화살표 숨김 - 연결선으로 대체 */
        }

#japankuru-landing .result-box {
            display: inline-block;
            background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
            color: var(--black);
            padding: 40px 64px;
            border-radius: 20px;
            border: 3px solid var(--accent);
            box-shadow: 0 16px 48px rgba(59, 130, 246, 0.2);
            position: relative;
            overflow: hidden;
        }

#japankuru-landing .result-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
            animation: shimmer 4s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% { transform: rotate(0deg); }
            50% { transform: rotate(180deg); }
        }

#japankuru-landing .result-main {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

#japankuru-landing .result-brand {
            display: inline-block;
        }

#japankuru-landing .result-brand img {
            height: 40px;
            width: auto;
            vertical-align: middle;
        }

#japankuru-landing .result-sub {
            font-size: 17px;
            color: var(--gray-500);
            position: relative;
            z-index: 1;
        }

        /* Differentiator (타이포그래피 스타일) */
        /* ===== DELIVERY FLOW INFOGRAPHIC ===== */
#japankuru-landing .delivery-flow {
            margin-top: 80px;
            background: var(--bg-card);
            border-radius: 20px;
            padding: 64px 48px;
            color: white;
            border: 1px solid rgba(255,255,255,0.08);
        }

#japankuru-landing .flow-header {
            text-align: center;
            margin-bottom: 56px;
        }

#japankuru-landing .flow-eyebrow {
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.3em;
            color: var(--accent);
            margin-bottom: 16px;
        }

#japankuru-landing .flow-title {
            font-size: clamp(24px, 4vw, 36px);
            font-weight: 300;
            color: var(--gray-300);
            line-height: 1.4;
        }

#japankuru-landing .flow-accent {
            font-weight: 700;
            color: white;
        }

#japankuru-landing .flow-diagram {
            max-width: 800px;
            margin: 0 auto;
        }

#japankuru-landing .flow-start {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

#japankuru-landing .flow-start-circle {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
        }

#japankuru-landing .start-label {
            font-size: 18px;
            font-weight: 700;
            color: white;
            text-align: center;
        }

#japankuru-landing .flow-line-down {
            width: 2px;
            height: 40px;
            background: linear-gradient(to bottom, var(--accent), var(--gray-600));
        }

#japankuru-landing .flow-branches {
            display: flex;
            justify-content: center;
            gap: 24px;
            margin: 0 auto;
            position: relative;
        }

#japankuru-landing .flow-branches::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 70%;
            height: 2px;
            background: var(--gray-600);
        }

#japankuru-landing .flow-branch {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 1;
            max-width: 160px;
        }

#japankuru-landing .branch-line {
            width: 2px;
            height: 32px;
            background: var(--gray-600);
        }

#japankuru-landing .branch-node {
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.3);
            border-radius: 16px;
            padding: 24px 20px;
            text-align: center;
            width: 100%;
            transition: all 0.3s ease;
        }

#japankuru-landing .branch-node:hover {
            background: rgba(59, 130, 246, 0.15);
            border-color: var(--accent);
            transform: translateY(-4px);
        }

#japankuru-landing .node-number {
            font-family: 'Inter', sans-serif;
            font-size: 42px;
            font-weight: 700;
            color: var(--accent);
            line-height: 1;
        }

#japankuru-landing .node-unit {
            font-size: 16px;
            font-weight: 500;
            color: var(--accent);
            margin-left: 2px;
        }

#japankuru-landing .node-label {
            display: block;
            margin-top: 8px;
            font-size: 13px;
            color: var(--gray-400);
            font-weight: 500;
        }

#japankuru-landing .flow-converge {
            display: flex;
            justify-content: center;
            padding: 32px 0;
        }

#japankuru-landing .converge-line {
            width: 2px;
            height: 40px;
            background: linear-gradient(to bottom, var(--gray-600), var(--accent));
        }

#japankuru-landing .flow-syndication {
            display: flex;
            justify-content: center;
        }

#japankuru-landing .syndication-box {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.05) 100%);
            border: 1px solid rgba(59, 130, 246, 0.3);
            border-radius: 16px;
            padding: 32px 48px;
            text-align: center;
            max-width: 600px;
            width: 100%;
        }

#japankuru-landing .syndication-label {
            font-size: 12px;
            font-weight: 600;
            color: var(--accent);
            letter-spacing: 0.1em;
            text-transform: uppercase;
            display: block;
            margin-bottom: 20px;
        }

#japankuru-landing .syndication-logos {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 12px;
        }

#japankuru-landing .syndication-item {
            font-size: 14px;
            font-weight: 600;
            color: white;
            padding: 8px 16px;
            background: rgba(255,255,255,0.05);
            border-radius: 6px;
        }

#japankuru-landing .syndication-divider {
            width: 4px;
            height: 4px;
            background: var(--gray-600);
            border-radius: 50%;
        }

#japankuru-landing .flow-note {
            text-align: center;
            margin-top: 48px;
            padding-top: 32px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

#japankuru-landing .flow-note p {
            font-size: 15px;
            color: var(--gray-400);
        }

#japankuru-landing .flow-note strong {
            color: var(--accent);
            font-weight: 700;
        }

#japankuru-landing .sp-only { display: none; }

        @media (max-width: 768px) {
#japankuru-landing .sp-only { display: inline; }
            
#japankuru-landing .delivery-flow {
                padding: 40px 24px;
            }

#japankuru-landing .flow-start-circle {
                width: 120px;
                height: 120px;
            }

#japankuru-landing .start-label {
                font-size: 15px;
            }

#japankuru-landing .flow-branches {
                flex-direction: column;
                gap: 16px;
            }

#japankuru-landing .flow-branches::before {
                display: none;
            }

#japankuru-landing .flow-branch {
                flex-direction: row;
                max-width: 100%;
                gap: 16px;
            }

#japankuru-landing .branch-line {
                width: 24px;
                height: 2px;
            }

#japankuru-landing .branch-node {
                padding: 16px 20px;
                display: flex;
                align-items: center;
                gap: 12px;
            }

#japankuru-landing .node-number {
                font-size: 32px;
            }

#japankuru-landing .node-label {
                display: inline;
                margin-top: 0;
                margin-left: 8px;
            }

#japankuru-landing .syndication-box {
                padding: 24px 20px;
            }

#japankuru-landing .syndication-logos {
                gap: 8px;
            }

#japankuru-landing .syndication-item {
                font-size: 12px;
                padding: 6px 12px;
            }

#japankuru-landing .syndication-divider {
                display: none;
            }
        }

        /* ===== VIDEO SHOWCASE ===== */
#japankuru-landing .video-showcase {
            background: var(--white);
            padding: 100px 24px;
            text-align: center;
        }

#japankuru-landing .video-showcase-inner {
            max-width: 1000px;
            margin: 0 auto;
        }

#japankuru-landing .video-lead {
            font-size: 13px;
            color: var(--accent);
            font-weight: 700;
            letter-spacing: 0.1em;
            margin-bottom: 12px;
        }

#japankuru-landing .video-title {
            font-size: clamp(24px, 4vw, 36px);
            font-weight: 900;
            color: var(--black);
            margin-bottom: 16px;
            line-height: 1.3;
        }

#japankuru-landing .video-desc {
            font-size: 15px;
            color: var(--gray-500);
            margin-bottom: 48px;
        }

        /* MacBook Mockup */
#japankuru-landing .macbook-mockup {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

#japankuru-landing .macbook-screen {
            background: #0a0a0a;
            border-radius: 12px 12px 0 0;
            padding: 12px 12px 0 12px;
            position: relative;
        }

#japankuru-landing .macbook-screen::before {
            content: '';
            position: absolute;
            top: 6px;
            left: 50%;
            transform: translateX(-50%);
            width: 8px;
            height: 8px;
            background: #1a1a1a;
            border-radius: 50%;
        }

#japankuru-landing .macbook-content {
            position: relative;
            width: 100%;
            padding-top: 56.25%; /* 16:9 */
            background: #000;
            border-radius: 4px 4px 0 0;
            overflow: hidden;
        }

#japankuru-landing .macbook-content iframe,
#japankuru-landing .macbook-content .video-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

#japankuru-landing .video-placeholder {
            background: url('https://img.youtube.com/vi/rcQ6fCjKyNo/maxresdefault.jpg') center/cover no-repeat;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

#japankuru-landing .video-placeholder::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }

#japankuru-landing .video-placeholder:hover::before {
            background: rgba(0,0,0,0.2);
        }

#japankuru-landing .play-btn {
            width: 80px;
            height: 80px;
            background: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 32px rgba(59, 130, 246, 0.4);
            position: relative;
            z-index: 1;
        }

#japankuru-landing .video-placeholder:hover .play-btn {
            transform: scale(1.1);
            box-shadow: 0 12px 40px rgba(59, 130, 246, 0.5);
        }

#japankuru-landing .play-btn svg {
            width: 32px;
            height: 32px;
            fill: white;
            margin-left: 4px;
        }

#japankuru-landing .video-placeholder-text {
            color: white;
            font-size: 14px;
            font-weight: 600;
            opacity: 0.9;
            position: relative;
            z-index: 1;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }

#japankuru-landing .macbook-bottom {
            background: linear-gradient(180deg, #c4c4c4 0%, #a8a8a8 100%);
            height: 14px;
            border-radius: 0 0 4px 4px;
            position: relative;
        }

#japankuru-landing .macbook-bottom::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 4px;
            background: #888;
            border-radius: 0 0 4px 4px;
        }

#japankuru-landing .macbook-base {
            background: linear-gradient(180deg, #e0e0e0 0%, #c8c8c8 100%);
            height: 8px;
            margin: 0 40px;
            border-radius: 0 0 8px 8px;
        }

        /* ===== NETWORK SECTION ===== */
#japankuru-landing .network-section { background: var(--white); }

#japankuru-landing .community-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }

#japankuru-landing .community-card {
            background: var(--gray-50);
            border: 1px solid var(--gray-200);
            border-radius: 12px;
            padding: 24px;
        }

#japankuru-landing .community-flag {
            font-size: 28px;
            margin-bottom: 12px;
        }

#japankuru-landing .community-card h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 12px;
        }

#japankuru-landing .community-card p {
            font-size: 14px;
            color: var(--gray-600);
            line-height: 1.7;
            margin-bottom: 12px;
        }

#japankuru-landing .community-reach {
            font-size: 13px;
            color: var(--accent);
            font-weight: 600;
        }

        /* Distribution Flow */
#japankuru-landing .distribution-flow {
            background: var(--gray-50);
            border-radius: 12px;
            padding: 28px;
        }

#japankuru-landing .distribution-flow h4 {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--accent);
        }

#japankuru-landing .flow-steps {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

#japankuru-landing .flow-step {
            flex: 1;
            display: flex;
            gap: 12px;
        }

#japankuru-landing .flow-number {
            width: 40px;
            height: 40px;
            background: var(--accent);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            font-weight: 800;
            flex-shrink: 0;
        }

#japankuru-landing .flow-content h5 {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 4px;
        }

#japankuru-landing .flow-content p {
            font-size: 13px;
            color: var(--gray-600);
            line-height: 1.5;
        }

#japankuru-landing .flow-divider {
            width: 32px;
            height: 2px;
            background: var(--gray-300);
            margin-top: 20px;
            flex-shrink: 0;
        }

        /* ===== COMPARISON SECTION ===== */
#japankuru-landing .comparison-section { background: var(--gray-50); }

#japankuru-landing .comparison-table {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 12px;
            overflow: hidden;
        }

#japankuru-landing .comparison-header {
            display: grid;
            grid-template-columns: 120px 1fr 1fr;
            background: var(--bg-card);
            color: white;
        }

#japankuru-landing .comparison-row {
            display: grid;
            grid-template-columns: 120px 1fr 1fr;
            border-bottom: 1px solid var(--gray-200);
        }

#japankuru-landing .comparison-row:last-child { border-bottom: none; }

#japankuru-landing .comparison-col {
            padding: 14px 16px;
            font-size: 14px;
            line-height: 1.6;
        }

#japankuru-landing .col-item {
            background: var(--gray-50);
            font-weight: 700;
            color: var(--black);
        }

#japankuru-landing .col-japankuru {
            background: rgba(59, 130, 246, 0.08);
            border-left: 3px solid var(--accent);
        }

#japankuru-landing .col-other {
            color: var(--gray-500);
            font-size: 13px;
        }

#japankuru-landing .comparison-header .col-item {
            background: var(--bg-card);
            color: white;
            font-weight: 700;
        }

#japankuru-landing .comparison-header .col-japankuru {
            background: var(--accent);
            border-left: none;
            color: white;
            font-weight: 700;
            font-size: 15px;
        }

#japankuru-landing .comparison-header .col-other {
            background: var(--gray-500);
            color: white;
            font-size: 12px;
        }

        /* ===== CASES ===== */
#japankuru-landing .cases-section { background: var(--gray-50); }

#japankuru-landing .cases-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

#japankuru-landing .case-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

#japankuru-landing .case-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.08); }

#japankuru-landing .case-image {
            height: 160px;
            overflow: hidden;
        }

#japankuru-landing .case-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

#japankuru-landing .case-body { padding: 20px; }

#japankuru-landing .case-category {
            font-size: 12px;
            font-weight: 700;
            color: var(--accent);
            letter-spacing: 0.1em;
            margin-bottom: 6px;
        }

#japankuru-landing .case-title {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 6px;
            line-height: 1.5;
        }

#japankuru-landing .case-desc {
            font-size: 14px;
            color: var(--gray-500);
            line-height: 1.7;
        }

        /* ===== PROCESS (이미지2 스타일) ===== */
#japankuru-landing .process-section { background: var(--white); }

#japankuru-landing .process-intro {
            text-align: center;
            margin-bottom: 40px;
        }

#japankuru-landing .process-intro p {
            font-size: 16px;
            color: var(--gray-600);
            line-height: 1.9;
        }

        /* 6 Step Timeline */
#japankuru-landing .process-timeline {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 56px;
            position: relative;
        }

#japankuru-landing .process-timeline::before {
            content: '';
            position: absolute;
            top: 24px;
            left: 40px;
            right: 40px;
            height: 2px;
            background: #2563eb;
        }

#japankuru-landing .process-step {
            flex: 1;
            text-align: center;
            position: relative;
        }

#japankuru-landing .process-step-number {
            width: 48px;
            height: 48px;
            background: var(--white);
            border: 2px solid #2563eb;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Inter', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: #2563eb;
            margin: 0 auto 12px;
            position: relative;
            z-index: 2;
        }

#japankuru-landing .process-step-title {
            font-size: 15px;
            font-weight: 700;
        }

        /* Process Detail Cards */
#japankuru-landing .process-details {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

#japankuru-landing .process-detail-card {
            border: 1px solid var(--gray-200);
            border-radius: 12px;
            overflow: hidden;
        }

#japankuru-landing .process-detail-image {
            height: 140px;
            overflow: hidden;
        }

#japankuru-landing .process-detail-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

#japankuru-landing .process-detail-body {
            padding: 20px;
        }

#japankuru-landing .process-detail-body h4 {
            font-size: 16px;
            font-weight: 800;
            margin-bottom: 10px;
        }

#japankuru-landing .process-detail-body p {
            font-size: 14px;
            color: var(--gray-600);
            line-height: 1.8;
        }

#japankuru-landing .process-detail-body .lang-highlight {
            color: #2563eb;
            font-weight: 600;
        }

#japankuru-landing .process-note {
            text-align: center;
            margin-top: 32px;
            padding: 20px;
            background: var(--gray-50);
            border-radius: 8px;
            font-size: 15px;
            color: var(--gray-600);
        }

#japankuru-landing .process-note strong { color: var(--black); }

        /* ===== PRICING ===== */
#japankuru-landing .pricing-section { background: var(--gray-50); }

#japankuru-landing .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

#japankuru-landing .pricing-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 12px;
            overflow: hidden;
        }

#japankuru-landing .pricing-card.featured {
            border-color: var(--accent);
            box-shadow: 0 4px 20px rgba(220, 38, 38, 0.15);
        }

#japankuru-landing .pricing-header {
            padding: 24px;
            background: var(--gray-50);
        }

#japankuru-landing .pricing-card.featured .pricing-header {
            background: var(--accent);
            color: var(--white);
        }

#japankuru-landing .pricing-badge {
            display: inline-block;
            font-size: 12px;
            font-weight: 700;
            padding: 3px 8px;
            background: #fef3c7;
            color: #92400e;
            border-radius: 4px;
            margin-bottom: 8px;
        }

#japankuru-landing .pricing-card.featured .pricing-badge {
            background: rgba(255,255,255,0.2);
            color: white;
        }

#japankuru-landing .pricing-name {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 4px;
        }

#japankuru-landing .pricing-price {
            font-family: 'Inter', sans-serif;
            font-size: 28px;
            font-weight: 800;
        }

#japankuru-landing .pricing-price span { font-size: 14px; font-weight: 500; }

#japankuru-landing .pricing-body { padding: 24px; }

#japankuru-landing .pricing-features {
            list-style: none;
            margin-bottom: 20px;
        }

#japankuru-landing .pricing-features li {
            padding: 8px 0;
            border-bottom: 1px solid var(--gray-100);
            font-size: 14px;
        }

#japankuru-landing .pricing-cta {
            display: block;
            text-align: center;
            padding: 12px;
            background: var(--gray-100);
            color: var(--black);
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            border-radius: 6px;
            transition: all 0.2s;
        }

#japankuru-landing .pricing-card.featured .pricing-cta {
            background: var(--accent);
            color: var(--white);
        }

#japankuru-landing .pricing-cta:hover {
            background: var(--accent);
            color: var(--white);
        }

        /* ===== CTA ===== */
#japankuru-landing .cta-section {
            background: var(--accent);
            color: var(--white);
            padding: 80px 24px;
        }

#japankuru-landing .cta-inner {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

#japankuru-landing .cta-section h2 {
            font-size: clamp(28px, 4vw, 38px);
            font-weight: 900;
            margin-bottom: 12px;
        }

#japankuru-landing .cta-section p {
            font-size: 16px;
            opacity: 0.9;
            margin-bottom: 32px;
        }

#japankuru-landing .cta-btn {
            display: inline-block;
            padding: 16px 48px;
            background: var(--white);
            color: var(--black);
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
            border-radius: 6px;
            transition: all 0.2s ease;
        }

#japankuru-landing .cta-btn:hover {
            background: var(--gray-100);
            color: var(--accent);
        }

        /* ===== FLOATING CTA ===== */
#japankuru-landing .floating-cta {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 999;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
            pointer-events: none;
        }

#japankuru-landing .floating-cta.show {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

#japankuru-landing .floating-cta-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 16px 28px;
            background: linear-gradient(135deg, var(--accent) 0%, #2563eb 100%);
            color: white;
            text-decoration: none;
            font-size: 16px;
            font-weight: 700;
            border-radius: 50px;
            box-shadow: 0 8px 32px rgba(59, 130, 246, 0.5);
            transition: all 0.3s ease;
            animation: cta-pulse 2s ease-in-out infinite;
        }

        @keyframes cta-pulse {
            0%, 100% { box-shadow: 0 8px 32px rgba(59, 130, 246, 0.5); }
            50% { box-shadow: 0 8px 48px rgba(59, 130, 246, 0.7); }
        }

#japankuru-landing .floating-cta-btn:hover {
            background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
            transform: scale(1.05);
            box-shadow: 0 12px 48px rgba(59, 130, 246, 0.6);
            animation: none;
        }

#japankuru-landing .cta-icon {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @media (max-width: 768px) {
#japankuru-landing .floating-cta {
                bottom: 16px;
                right: 16px;
                left: 16px;
            }
#japankuru-landing .floating-cta-btn {
                width: 100%;
                justify-content: center;
                padding: 16px 24px;
                font-size: 15px;
            }
            
            /* Pain & USP 모바일 */
#japankuru-landing .pain-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
#japankuru-landing .pain-card {
                padding: 24px 20px;
            }
#japankuru-landing .pain-icon {
                width: 56px;
                height: 56px;
                font-size: 24px;
            }
#japankuru-landing .usp-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
#japankuru-landing .usp-card {
                padding: 32px 20px;
            }
#japankuru-landing .usp-number {
                width: 64px;
                height: 64px;
                font-size: 26px;
            }
#japankuru-landing .usp-highlight {
                font-size: 28px;
            }
            
            /* Hero Mini Flow 모바일 */
#japankuru-landing .hero-mini-flow {
                margin-top: 24px;
                padding: 16px;
            }
#japankuru-landing .mini-flow-items {
                gap: 8px;
            }
#japankuru-landing .mini-flow-item {
                padding: 6px 10px;
                flex-direction: column;
                gap: 2px;
            }
#japankuru-landing .mini-flow-num {
                font-size: 18px;
            }
#japankuru-landing .mini-flow-unit {
                font-size: 9px;
                text-align: center;
            }
#japankuru-landing .mini-flow-arrow svg {
                width: 12px;
                height: 12px;
            }
        }

        /* ===== FOOTER ===== */
#japankuru-landing .footer {
            padding: 24px;
            background: #0f172a;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--white);
            flex-wrap: wrap;
            gap: 12px;
        }

#japankuru-landing .footer-logo {
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 800;
        }

#japankuru-landing .footer-copy {
            font-size: 11px;
            color: rgba(255,255,255,0.4);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
#japankuru-landing .why-grid { grid-template-columns: repeat(2, 1fr); }
#japankuru-landing .channel-dashboard { grid-template-columns: repeat(2, 1fr); }
#japankuru-landing .audience-evidence { grid-template-columns: repeat(2, 1fr); }
#japankuru-landing .community-grid { grid-template-columns: 1fr; }
#japankuru-landing .comparison-header, .comparison-row { grid-template-columns: 100px 1fr 1fr; }
#japankuru-landing .process-details { grid-template-columns: repeat(2, 1fr); }
#japankuru-landing .pricing-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
            
            /* Pain & USP tablet */
#japankuru-landing .pain-grid { grid-template-columns: 1fr; }
#japankuru-landing .usp-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
            
            /* Story block - smaller gap */
#japankuru-landing .story-block { gap: 32px; padding: 32px; }
#japankuru-landing .donut-chart { width: 140px; height: 140px; }
#japankuru-landing .donut-label { font-size: 28px; }
            
            /* Hero 2-column → 1-column */
#japankuru-landing .hero-main { flex-direction: column; text-align: center; }
#japankuru-landing .hero-mockup { 
                transform: none;
                margin-top: 40px;
            }
#japankuru-landing .hero-mockup:hover { transform: none; }
#japankuru-landing .phone-frame {
                width: 200px;
                height: 400px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
#japankuru-landing .nav { padding: 12px 20px; }
#japankuru-landing .nav-menu { display: none; }
#japankuru-landing .nav-toggle { display: flex; }
            
            section { padding: 56px 20px; }
            
#japankuru-landing .sp-only { display: inline; }
#japankuru-landing .hero-title { font-size: clamp(28px, 8vw, 40px); }
#japankuru-landing .title-line { white-space: normal; }
#japankuru-landing .hero-container { padding: 60px 20px; }
#japankuru-landing .hero-metrics { gap: 24px; }
#japankuru-landing .hero-bg { width: 100%; opacity: 0.2; }
            
            /* Hero value box mobile */
#japankuru-landing .hero-value-box {
                flex-direction: column;
                gap: 8px;
                padding: 16px 20px;
                text-align: center;
            }
#japankuru-landing .value-number { font-size: 32px; }
#japankuru-landing .value-text { 
                font-size: 14px; 
                text-align: center;
            }
            
#japankuru-landing .story-block { 
                grid-template-columns: 1fr; 
                gap: 24px;
                padding: 24px;
            }
#japankuru-landing .story-block:nth-child(even) {
                direction: ltr;
            }
#japankuru-landing .story-visual { 
                order: -1;
            }
#japankuru-landing .donut-chart {
                width: 120px;
                height: 120px;
            }
#japankuru-landing .donut-label { font-size: 24px; }
#japankuru-landing .story-content h3 { font-size: 18px; }
#japankuru-landing .bar-item { grid-template-columns: 50px 1fr 40px; }
#japankuru-landing .bar-track { height: 10px; }
#japankuru-landing .compare-item { padding: 12px 16px; }
#japankuru-landing .compare-icon { font-size: 28px; }
#japankuru-landing .market-question { font-size: 18px; }
#japankuru-landing .market-numbers { flex-direction: column; gap: 16px; }
#japankuru-landing .num-divider { display: none; }
#japankuru-landing .num-item strong { font-size: 32px; }
            
#japankuru-landing .why-grid { grid-template-columns: 1fr; }
#japankuru-landing .why-number { font-size: 36px; }
            
#japankuru-landing .channel-header-row { flex-direction: column; align-items: flex-start; }
#japankuru-landing .channel-total { text-align: left; }
#japankuru-landing .channel-total-value { font-size: 36px; }
#japankuru-landing .channel-dashboard { grid-template-columns: 1fr 1fr; gap: 12px; }
#japankuru-landing .dashboard-value { font-size: 24px; }
#japankuru-landing .audience-evidence { grid-template-columns: 1fr; }
#japankuru-landing .audience-quality { padding: 20px; }
#japankuru-landing .country-table { grid-template-columns: 1fr; }
#japankuru-landing .creator-grid { grid-template-columns: repeat(3, 1fr); }
            
            /* Journey Infographic 모바일 */
#japankuru-landing .journey-timeline { 
                flex-direction: column; 
                gap: 60px;
            }
#japankuru-landing .timeline-phase {
                max-width: 100%;
                padding: 24px 20px;
                padding-bottom: 48px;
            }
#japankuru-landing .timeline-phase::after {
                bottom: -50px;
                height: 50px;
            }
#japankuru-landing .phase-arrow-down {
                bottom: -66px;
            }
#japankuru-landing .timeline-connector { 
                display: none;
            }
#japankuru-landing .phase-name { font-size: 40px; }
#japankuru-landing .phase-action { font-size: 18px; padding: 10px; }
#japankuru-landing .phase-touchpoints {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
            }
#japankuru-landing .phase-touchpoints span { font-size: 13px; padding: 8px 12px; }
#japankuru-landing .journey-floating-images { display: none; }
#japankuru-landing .journey-connection { display: none; }
#japankuru-landing .journey-result { margin-top: 40px; }
#japankuru-landing .journey-result .result-arrow { display: block; }
#japankuru-landing .result-box { padding: 28px 24px; }
#japankuru-landing .result-main { font-size: 20px; }
            
#japankuru-landing .flow-steps { flex-direction: column; gap: 20px; }
#japankuru-landing .flow-divider { width: 2px; height: 20px; margin: 0 auto; }
            
#japankuru-landing .comparison-header, .comparison-row { 
                grid-template-columns: 1fr;
            }
#japankuru-landing .comparison-col { display: block; }
#japankuru-landing .col-item { 
                background: var(--bg-card); 
                color: white;
                font-size: 11px;
            }
#japankuru-landing .comparison-row .col-item {
                background: var(--gray-100);
                color: var(--black);
            }
#japankuru-landing .col-japankuru::before { content: "JAPANKURU: "; font-weight: 700; }
#japankuru-landing .col-other::before { content: "一般的な施策: "; }
            
#japankuru-landing .cases-grid { grid-template-columns: 1fr; }
            
#japankuru-landing .process-timeline { 
                flex-direction: column; 
                gap: 16px;
                align-items: flex-start;
            }
#japankuru-landing .process-timeline::before {
                top: 0;
                bottom: 0;
                left: 24px;
                width: 2px;
                height: auto;
            }
#japankuru-landing .process-step {
                display: flex;
                align-items: center;
                gap: 16px;
                text-align: left;
            }
#japankuru-landing .process-step-number { margin: 0; flex-shrink: 0; }
#japankuru-landing .process-details { grid-template-columns: 1fr; }
            
#japankuru-landing .footer { 
                flex-direction: column; 
                text-align: center;
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
#japankuru-landing .creator-grid { grid-template-columns: 1fr; }
        }

        /* Reveal Animation */
#japankuru-landing .reveal {
            opacity: 0;
            transform: translateY(16px);
            transition: all 0.5s ease;
        }
#japankuru-landing .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

/* ===== 選ばれる理由 セクション v5 - Bento Grid CSS ===== */

/* ===== BENTO GRID ===== */
#japankuru-landing .bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto auto;
    gap: 16px;
}

#japankuru-landing .bento-card {
    background: white;
    border-radius: 24px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-200);
}

#japankuru-landing .bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* ===== HERO CARD (01번) ===== */
#japankuru-landing .bento-hero {
    grid-column: span 8;
    grid-row: span 2;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: white;
    padding: 40px;
    min-height: 450px;
    display: flex;
    flex-direction: column;
}

#japankuru-landing .bento-hero .card-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

#japankuru-landing .bento-hero .card-title {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 14px;
}

#japankuru-landing .bento-hero .highlight {
    color: var(--accent);
}

#japankuru-landing .bento-hero .card-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    max-width: 420px;
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Hero Visual */
#japankuru-landing .hero-visual-container {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 32px;
}

#japankuru-landing .global-hub {
    position: relative;
    width: 240px;
    height: 240px;
    flex-shrink: 0;
}

#japankuru-landing .globe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    border-radius: 50%;
    box-shadow: 0 0 50px rgba(59, 130, 246, 0.4);
}

#japankuru-landing .hub-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
}

#japankuru-landing .hub-logo {
    background: white;
    border-radius: 10px;
    padding: 6px 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    margin-bottom: 4px;
}

#japankuru-landing .hub-logo img {
    height: 16px;
    width: auto;
}

#japankuru-landing .hub-languages {
    font-size: 8px;
    color: rgba(255,255,255,0.7);
    background: rgba(0,0,0,0.4);
    padding: 3px 8px;
    border-radius: 8px;
}

#japankuru-landing .channel-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    margin-top: -100px;
    margin-left: -100px;
    border: 1px dashed rgba(255,255,255,0.15);
    border-radius: 50%;
    animation: orbitSpin 60s linear infinite;
}

@keyframes orbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

#japankuru-landing .channel-icon {
    position: absolute;
    width: 34px;
    height: 34px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    animation: counterSpin 60s linear infinite;
}

@keyframes counterSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

#japankuru-landing .channel-icon svg { width: 18px; height: 18px; }
#japankuru-landing .channel-icon img { width: 18px; height: 18px; object-fit: contain; }

#japankuru-landing .channel-icon:nth-child(1) { top: -17px; left: 50%; margin-left: -17px; }
#japankuru-landing .channel-icon:nth-child(2) { top: 12%; right: -8px; }
#japankuru-landing .channel-icon:nth-child(3) { top: 50%; right: -17px; margin-top: -17px; }
#japankuru-landing .channel-icon:nth-child(4) { bottom: 12%; right: -8px; }
#japankuru-landing .channel-icon:nth-child(5) { bottom: -17px; left: 50%; margin-left: -17px; }
#japankuru-landing .channel-icon:nth-child(6) { bottom: 12%; left: -8px; }
#japankuru-landing .channel-icon:nth-child(7) { top: 50%; left: -17px; margin-top: -17px; }
#japankuru-landing .channel-icon:nth-child(8) { top: 12%; left: -8px; }

#japankuru-landing .hero-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#japankuru-landing .stat-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 16px;
}

#japankuru-landing .stat-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 6px;
}

#japankuru-landing .stat-value {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}

#japankuru-landing .stat-unit { font-size: 16px; color: var(--accent); }
#japankuru-landing .stat-label { font-size: 12px; color: rgba(255,255,255,0.6); }
#japankuru-landing .stat-detail { font-size: 10px; color: rgba(255,255,255,0.4); margin-top: 6px; line-height: 1.5; }

#japankuru-landing .channel-types {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

#japankuru-landing .channel-type-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    padding: 5px 10px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    color: rgba(255,255,255,0.9);
}

#japankuru-landing .channel-type-tag svg { width: 12px; height: 12px; opacity: 0.8; }

/* ===== SIDE CARDS (02, 03번) ===== */
#japankuru-landing .bento-side {
    grid-column: span 4;
    min-height: 210px;
    display: flex;
    flex-direction: column;
}

#japankuru-landing .card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--accent);
    color: white;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 12px;
}

#japankuru-landing .card-title-sm {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.4;
}

#japankuru-landing .card-desc-sm {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.6;
}

#japankuru-landing .card-highlight {
    background: linear-gradient(transparent 60%, rgba(59, 130, 246, 0.15) 60%);
}

/* ===== 02번 - 7カ国 일러스트 ===== */
#japankuru-landing .illust-map {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    position: relative;
}

#japankuru-landing .map-center {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

#japankuru-landing .map-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#japankuru-landing .map-line {
    position: absolute;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    transform-origin: left center;
}

#japankuru-landing .map-line::after {
    content: attr(data-flag);
    position: absolute;
    right: -24px;
    top: -8px;
    font-size: 16px;
}

#japankuru-landing .map-line:nth-child(1) { transform: rotate(-60deg); }
#japankuru-landing .map-line:nth-child(2) { transform: rotate(-30deg); }
#japankuru-landing .map-line:nth-child(3) { transform: rotate(0deg); }
#japankuru-landing .map-line:nth-child(4) { transform: rotate(30deg); }
#japankuru-landing .map-line:nth-child(5) { transform: rotate(60deg); }
#japankuru-landing .map-line:nth-child(6) { transform: rotate(120deg); }
#japankuru-landing .map-line:nth-child(7) { transform: rotate(150deg); }

/* ===== 03번 - 体験→発信 비교 ===== */
#japankuru-landing .comparison-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

#japankuru-landing .creators-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

#japankuru-landing .creator-thumb {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent);
}

#japankuru-landing .creator-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#japankuru-landing .creator-thumb span {
    position: absolute;
    bottom: -2px;
    right: -2px;
    font-size: 10px;
    background: white;
    border-radius: 4px;
    padding: 1px 2px;
    line-height: 1;
}

#japankuru-landing .creator-more {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-100);
    border: 2px dashed var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--gray-400);
    font-weight: 700;
}

#japankuru-landing .creators-label {
    font-size: 9px;
    color: var(--gray-500);
    text-align: center;
    margin-bottom: 4px;
}

#japankuru-landing .comparison-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

#japankuru-landing .compare-box {
    padding: 10px;
    border-radius: 10px;
}

#japankuru-landing .compare-box.bad {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

#japankuru-landing .compare-box.good {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

#japankuru-landing .compare-header {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 9px;
    font-weight: 700;
    margin-bottom: 6px;
}

#japankuru-landing .compare-box.bad .compare-header {
    color: #dc2626;
}

#japankuru-landing .compare-box.good .compare-header {
    color: #16a34a;
}

#japankuru-landing .compare-text {
    font-size: 10px;
    line-height: 1.5;
    color: var(--gray-700);
}

#japankuru-landing .compare-lang {
    font-size: 8px;
    color: var(--gray-400);
    margin-top: 4px;
}

/* ===== 04번 Partners ===== */
#japankuru-landing .bento-bottom {
    grid-column: span 4;
    min-height: 260px;
}

#japankuru-landing .bento-partners {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 2px solid var(--accent);
}

#japankuru-landing .partners-by-country {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

#japankuru-landing .country-partners-row {
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

#japankuru-landing .country-flag-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 5px;
    font-size: 12px;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#japankuru-landing .partner-names {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    flex: 1;
}

#japankuru-landing .partner-name {
    font-size: 9px;
    padding: 3px 6px;
    background: white;
    border-radius: 3px;
    color: var(--gray-600);
    font-weight: 500;
}

#japankuru-landing .partner-name.main {
    font-weight: 700;
    color: var(--black);
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
}

#japankuru-landing .partner-name.more {
    background: var(--gray-100);
    color: var(--gray-500);
}

#japankuru-landing .partners-total {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    padding: 8px 14px;
    background: var(--accent);
    color: white;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

/* ===== 05번 - SEO 일러스트 ===== */
#japankuru-landing .illust-seo {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

#japankuru-landing .search-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--gray-100);
    border-radius: 20px;
    border: 1px solid var(--gray-200);
}

#japankuru-landing .search-icon {
    width: 14px;
    height: 14px;
    color: var(--gray-400);
}

#japankuru-landing .search-text {
    font-size: 11px;
    color: var(--gray-500);
}

#japankuru-landing .search-results {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

#japankuru-landing .search-result {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
}

#japankuru-landing .result-rank {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 800;
    color: white;
    background: var(--accent);
    width: 18px;
    height: 18px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#japankuru-landing .result-text {
    flex: 1;
    font-size: 10px;
    color: var(--black);
}

#japankuru-landing .result-jk {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-color: var(--accent);
}

#japankuru-landing .result-logo {
    height: 12px;
    width: auto;
}

#japankuru-landing .result-rank.gray {
    background: var(--gray-300);
}

#japankuru-landing .result-other {
    opacity: 0.7;
}

#japankuru-landing .result-skeleton {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

#japankuru-landing .skeleton-line {
    height: 8px;
    background: var(--gray-300);
    border-radius: 4px;
}

#japankuru-landing .skeleton-line.long {
    width: 85%;
}

#japankuru-landing .skeleton-line.short {
    width: 50%;
    background: var(--gray-200);
}

/* ===== 06번 - KPI Dashboard 일러스트 ===== */
#japankuru-landing .illust-dashboard {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

#japankuru-landing .dashboard-row {
    display: flex;
    gap: 6px;
}

#japankuru-landing .dashboard-mini-card {
    flex: 1;
    padding: 10px;
    background: var(--gray-50);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
}

#japankuru-landing .mini-card-value {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--accent);
}

#japankuru-landing .mini-card-label {
    font-size: 9px;
    color: var(--gray-500);
    margin-top: 2px;
}

#japankuru-landing .mini-chart-bar {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 24px;
    margin-top: 6px;
}

#japankuru-landing .mini-bar {
    flex: 1;
    background: var(--accent);
    border-radius: 2px;
    opacity: 0.6;
}

#japankuru-landing .mini-bar:nth-child(1) { height: 40%; }
#japankuru-landing .mini-bar:nth-child(2) { height: 60%; }
#japankuru-landing .mini-bar:nth-child(3) { height: 50%; }
#japankuru-landing .mini-bar:nth-child(4) { height: 80%; }
#japankuru-landing .mini-bar:nth-child(5) { height: 100%; opacity: 1; }

#japankuru-landing .dashboard-trend {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border-radius: 8px;
}

#japankuru-landing .trend-arrow {
    color: #16a34a;
    font-size: 14px;
}

#japankuru-landing .trend-text {
    font-size: 10px;
    color: #166534;
    font-weight: 600;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
#japankuru-landing .bento-hero { grid-column: span 12; }
#japankuru-landing .bento-side { grid-column: span 6; }
#japankuru-landing .bento-bottom { grid-column: span 6; }
#japankuru-landing .hero-visual-container { flex-direction: column; gap: 20px; }
#japankuru-landing .global-hub { width: 200px; height: 200px; }
}

@media (max-width: 768px) {
#japankuru-landing .bento-grid { grid-template-columns: 1fr; }
#japankuru-landing .bento-hero, .bento-side, .bento-bottom {
        grid-column: span 1;
    }
}

/* =============================================
   JAPANKURU Services Section - CSS
   JAPANKURUにできること
   ============================================= */

/* Section Layout */
#japankuru-landing .services-section {
    background: #0f172a;
    color: #ffffff;
    padding: 80px 0;
}

#japankuru-landing .services-section .section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#japankuru-landing .services-section .section-header {
    text-align: center;
    margin-bottom: 48px;
}

#japankuru-landing .services-section .section-eyebrow {
    font-size: 12px;
    font-weight: 700;
    color: #3b82f6;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

#japankuru-landing .services-section .section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    margin-bottom: 16px;
}

#japankuru-landing .services-section .section-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
}

/* ===== BENTO GRID ===== */
#japankuru-landing .service-showcase {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

#japankuru-landing .service-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    grid-column: span 2;
}

#japankuru-landing .service-card.wide {
    grid-column: span 3;
}

#japankuru-landing .service-card:hover {
    transform: translateY(-8px);
    border-color: #3b82f6;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

/* Card Inner */
#japankuru-landing .card-mockup {
    height: 280px;
    position: relative;
    overflow: hidden;
    background: #1e293b;
}

#japankuru-landing .card-info {
    padding: 20px;
}

#japankuru-landing .card-label {
    font-size: 11px;
    font-weight: 700;
    color: #3b82f6;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

#japankuru-landing .card-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #ffffff;
}

#japankuru-landing .card-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

/* ===== Browser Mockup (記事制作) ===== */
#japankuru-landing .browser-mockup {
    width: 90%;
    margin: 15px auto;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

#japankuru-landing .browser-header {
    background: #e5e5e5;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

#japankuru-landing .browser-dots {
    display: flex;
    gap: 4px;
}

#japankuru-landing .browser-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

#japankuru-landing .browser-dots span:nth-child(1) { background: #ff5f57; }
#japankuru-landing .browser-dots span:nth-child(2) { background: #ffbd2e; }
#japankuru-landing .browser-dots span:nth-child(3) { background: #28ca42; }

#japankuru-landing .browser-url {
    flex: 1;
    background: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 9px;
    color: #64748b;
}

#japankuru-landing .browser-content {
    height: 210px;
    overflow: hidden;
}

#japankuru-landing .browser-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== Screenshot Mockup (공통) ===== */
#japankuru-landing .screenshot-mockup {
    width: 90%;
    height: 260px;
    margin: 10px auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

#japankuru-landing .screenshot-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* ===== Video Mockup (動画制作) ===== */
#japankuru-landing .video-mockup {
    width: 90%;
    height: 260px;
    margin: 10px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
}

#japankuru-landing .video-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

#japankuru-landing .video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

#japankuru-landing .video-play-btn svg {
    width: 28px;
    height: 28px;
    color: #3b82f6;
    margin-left: 4px;
}

#japankuru-landing .service-card:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: white;
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.4);
}

/* ===== SNS発信 Mockup ===== */
#japankuru-landing .sns-発信-mockup {
    width: 90%;
    height: 260px;
    margin: 10px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
}

#japankuru-landing .sns-発信-mockup .sns-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

#japankuru-landing .sns-logo-overlay {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 120px;
    background: rgba(255,255,255,0.95);
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

#japankuru-landing .sns-logo-overlay img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== Reels Stack Mockup (Reels/Shorts) ===== */
#japankuru-landing .reels-stack {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#japankuru-landing .reels-phone {
    position: absolute;
    width: 90px;
    background: #1a1a1a;
    border-radius: 14px;
    padding: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

#japankuru-landing .reels-screen {
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    height: 200px;
    position: relative;
}

#japankuru-landing .reels-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#japankuru-landing .reels-back {
    transform: translateX(-35px) rotate(-8deg) scale(0.85);
    opacity: 0.6;
    z-index: 1;
}

#japankuru-landing .reels-mid {
    transform: translateX(35px) rotate(8deg) scale(0.85);
    opacity: 0.6;
    z-index: 1;
}

#japankuru-landing .reels-front {
    z-index: 2;
    transform: scale(1);
}

#japankuru-landing .reels-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#japankuru-landing .reels-play::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid #3b82f6;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    margin-left: 3px;
}

#japankuru-landing .reels-ui {
    position: absolute;
    bottom: 6px;
    left: 6px;
    display: flex;
    gap: 8px;
    font-size: 7px;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* ===== Coupon Mockup - uses screenshot-mockup ===== */

/* ===== SNS Management Mockup (SNS運用代行) ===== */
#japankuru-landing .sns-management-mockup {
    width: 90%;
    margin: 10px auto;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    padding: 16px;
}

#japankuru-landing .sns-mgmt-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
}

#japankuru-landing .sns-mgmt-title {
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
}

#japankuru-landing .sns-mgmt-badge {
    font-size: 9px;
    font-weight: 700;
    padding: 4px 10px;
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
    color: white;
    border-radius: 12px;
}

#japankuru-landing .sns-mgmt-content {
    display: flex;
    gap: 12px;
}

#japankuru-landing .sns-mgmt-item {
    flex: 1;
    background: #f8fafc;
    border-radius: 10px;
    padding: 14px 10px;
    text-align: center;
}

#japankuru-landing .sns-mgmt-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

#japankuru-landing .sns-mgmt-label {
    font-size: 11px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}

#japankuru-landing .sns-mgmt-desc {
    font-size: 9px;
    color: #64748b;
}

#japankuru-landing .sns-mgmt-note {
    margin-top: 12px;
    text-align: center;
    font-size: 9px;
    color: #94a3b8;
}

/* ===== Translation Languages (翻訳・ローカライズ) ===== */
#japankuru-landing .translate-mockup-v2 {
    width: 90%;
    margin: 10px auto;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    padding: 16px;
}

#japankuru-landing .translate-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
}

#japankuru-landing .translate-from {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}

#japankuru-landing .translate-arrow {
    font-size: 16px;
    color: #3b82f6;
}

#japankuru-landing .translate-languages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

#japankuru-landing .lang-item {
    background: #f8fafc;
    border-radius: 8px;
    padding: 10px 8px;
    text-align: center;
}

#japankuru-landing .lang-flag {
    font-size: 20px;
    display: block;
    margin-bottom: 4px;
}

#japankuru-landing .lang-code {
    font-size: 11px;
    font-weight: 800;
    color: #0f172a;
    display: block;
}

#japankuru-landing .lang-name {
    font-size: 8px;
    color: #64748b;
}

#japankuru-landing .translate-note {
    margin-top: 12px;
    text-align: center;
    font-size: 10px;
    color: #64748b;
    padding-top: 10px;
    border-top: 1px solid #e2e8f0;
}

/* ===== CTA SECTION ===== */
#japankuru-landing .services-section .cta-row {
    text-align: center;
    padding: 30px 20px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

#japankuru-landing .services-section .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: #3b82f6;
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#japankuru-landing .services-section .cta-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
#japankuru-landing .service-showcase {
        grid-template-columns: repeat(4, 1fr);
    }
#japankuru-landing .service-card {
        grid-column: span 2;
    }
#japankuru-landing .service-card.wide {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
#japankuru-landing .service-showcase {
        grid-template-columns: 1fr;
    }
#japankuru-landing .service-card,
#japankuru-landing .service-card.wide {
        grid-column: span 1;
    }
#japankuru-landing .card-mockup {
        height: 220px;
    }
#japankuru-landing .screenshot-mockup {
        height: 200px;
    }
#japankuru-landing .services-section {
        padding: 60px 0;
    }
}

#japankuru-landing .portfolio-marquee-section .marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 60s linear infinite;
    width: max-content;
}

#japankuru-landing .portfolio-marquee-section .marquee-content {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
    padding-right: 16px;
}
/* 마우스 호버 시 마키 일시정지 */
#japankuru-landing .clients-marquee .marquee-track:hover,
#japankuru-landing .portfolio-marquee-section .marquee-track:hover {
    animation-play-state: paused;
}

/* ARTICLE 카드를 다른 카드들과 동일한 여백(90% 너비)으로 맞춤 */
#japankuru-landing .services-section .service-card.wide .card-mockup {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 15px !important; /* 다른 카드들과 동일한 프레임 여백 생성 */
}

#japankuru-landing .services-section .service-card.wide .browser-mockup {
    width: 100% !important; /* 위에서 설정한 패딩(15px) 안에서 100% 채움 */
    max-width: none !important;
    margin: 0 !important;
    border-radius: 12px !important; /* 테두리를 둥글게 해서 프레임 느낌 생성 */
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important; /* 다른 카드와 그림자 통일 */
}

#japankuru-landing .services-section .service-card.wide .browser-content {
    height: 220px !important; /* 전체 높이 밸런스 조정 */
}

#japankuru-landing .services-section .browser-content {
    position: relative;
    height: 220px;
    overflow: hidden;
}
/* 이걸로 교체 */
#japankuru-landing .services-section .service-card.wide .browser-content {
    position: relative;
    height: 220px;
    overflow: hidden;
}

#japankuru-landing .client-logo {
    filter: grayscale(0%); /* 흑백 해제 */
    opacity: 0.7; /* 투명도로만 조절 */
}
@media (max-width: 768px) {
#japankuru-landing .mobile-tabs {
        display: flex;
        overflow-x: auto; /* 가로 스크롤 가능하게 */
        gap: 8px;
        padding: 5px 0 15px;
        margin-bottom: 10px;
        scrollbar-width: none; /* 스크롤바 숨기기 (Firefox) */
    }
#japankuru-landing .mobile-tabs::-webkit-scrollbar { display: none; } /* 스크롤바 숨기기 (Chrome) */

#japankuru-landing .tab-btn {
        flex: 0 0 auto;
        padding: 10px 18px;
        border-radius: 30px;
        border: 1px solid rgba(255,255,255,0.1);
        background: rgba(255,255,255,0.05);
        color: #94a3b8;
        font-size: 13px;
        font-weight: 700;
    }
#japankuru-landing .tab-btn.active {
        background: var(--accent);
        color: white;
        border-color: var(--accent);
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    }
    /* 탭 로직: 기본적으로 숨기고 active 클래스만 보여줌 */
#japankuru-landing .tab-content { display: none; }
#japankuru-landing .tab-content.active { display: block; }
}

/* PC에서는 탭 콘텐츠가 모두 보여야 하므로 강제 표시 */
@media (min-width: 769px) {
#japankuru-landing .tab-content { display: block !important; }
}

/* 커스터머 저니 강화 스타일 */
#japankuru-landing .journey-section .section-subtitle {
    margin-top: 10px;
    font-size: 14px;
    color: var(--accent);
    font-weight: 700;
}

/* 페이즈별 애니메이션 */
#japankuru-landing .timeline-phase:hover .browser-screen img {
    transform: translateY(-30%); /* 기사 스크롤 효과 */
    transition: transform 4s linear;
}

#japankuru-landing .timeline-phase:hover .mobile-screen img {
    transform: scale(1.1); /* 영상 확대 느낌 */
    transition: transform 0.5s ease;
}

#japankuru-landing .timeline-phase:hover .sns-avatar {
    box-shadow: 0 0 15px var(--accent);
    transition: 0.3s;
}

/* 하단 올인원 연결부 아이콘 */
#japankuru-landing .all-in-one-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 5;
}

#japankuru-landing .all-in-one-icons span {
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    font-size: 16px;
}

/* 중복 프레임 제거 및 이미지 최적화 */
#japankuru-landing .phase-visual {
    margin: 20px 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

#japankuru-landing .phase-image-wrap {
    width: 100%;
    max-width: 260px; /* 카드의 너비에 맞게 조절 */
    height: 180px;    /* 일정한 높이 유지 */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* 깔끔한 그림자 */
    background: #f8fafc;
}

#japankuru-landing .phase-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 이미지가 찌그러지지 않고 영역을 꽉 채움 */
    object-position: top; /* 기사의 윗부분 위주로 노출 */
    transition: transform 0.4s ease;
}

/* 호버 시 이미지가 살짝 커지는 효과 */
#japankuru-landing .timeline-phase:hover .phase-image-wrap img {
    transform: scale(1.08);
}

/* 1. 브라우저 (PHASE 01) - 가로 비율 유지 */
#japankuru-landing .browser-mockup-final {
    width: 100%;
    max-width: 280px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    margin: 0 auto;
}
#japankuru-landing .browser-header-simple { background: #f1f3f4; padding: 8px; display: flex; }
#japankuru-landing .browser-header-simple .dots { display: flex; gap: 4px; }
#japankuru-landing .browser-header-simple .dots span { width: 6px; height: 6px; border-radius: 50%; background: #ccc; }
#japankuru-landing .browser-img-area { width: 100%; aspect-ratio: 1.6 / 1; overflow: hidden; }
#japankuru-landing .browser-img-area img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

/* 2. 릴스 (PHASE 02) - 프레임 제거 및 비율 최적화 */
#japankuru-landing .reels-display-clean {
    width: 160px; /* 이미지가 목업이므로 폭만 적절히 조절 */
    margin: 0 auto;
    /* 테두리(border)와 그림자(box-shadow)를 제거하거나 아주 연하게 설정 */
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15)); 
    transition: transform 0.3s ease;
}

#japankuru-landing .reels-display-clean img {
    width: 100%;
    height: auto; /* 세로로 긴 이미지가 잘리지 않고 다 나오게 함 */
    display: block;
    border-radius: 20px; /* 이미지 자체의 모서리가 뾰족하다면 살짝 굴려줌 */
}

/* 호버 시 효과 */
#japankuru-landing .timeline-phase:hover .reels-display-clean {
    transform: scale(1.05) translateY(-5px);
}

/* 3. 인스타 포스팅 (PHASE 03) - 레이아웃 밸런스 수정 */
#japankuru-landing .insta-mockup-final {
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 1px solid #efefef;
    overflow: hidden; /* 영역 밖으로 나가는 이미지 숨김 */
    
    /* [중요] 카드가 아래로 밀리지 않도록 최대 높이 제한 */
    max-height: 320px; 
    display: flex;
    flex-direction: column;
}

#japankuru-landing .insta-img-area { 
    width: 100%; 
    /* 이미지가 길 경우 내부에서 스크롤하거나 상단 위주로 보여줌 */
    overflow-y: auto; 
    scrollbar-width: none; /* Firefox 스크롤바 숨김 */
}

#japankuru-landing .insta-img-area::-webkit-scrollbar {
    display: none; /* Chrome, Safari 스크롤바 숨김 */
}

#japankuru-landing .insta-img-area img { 
    width: 100%; 
    height: auto; 
    display: block; 
}

/* 공통: 호버 효과 (선택자 중복 정리) */
#japankuru-landing .timeline-phase:hover .browser-mockup-final,
#japankuru-landing .timeline-phase:hover .reels-display-clean,
#japankuru-landing .timeline-phase:hover .insta-mockup-final {
    transform: scale(1.05) translateY(-5px);
    transition: 0.3s ease;
}
/* 2. 릴스 (PHASE 02) */
#japankuru-landing .reels-display-clean {
    width: 160px;
    margin: 0 auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
}
#japankuru-landing .reels-display-clean img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
}

/* 3. 인스타 포스팅 (PHASE 03) */
#japankuru-landing .insta-mockup-final {
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 1px solid #efefef;
    max-height: 300px; /* PC에서 카드가 밀리지 않게 높이 제한 */
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
#japankuru-landing .insta-img-area { 
    width: 100%; 
    overflow-y: auto; /* 이미지가 길면 내부 스크롤 */
    scrollbar-width: none; 
}
#japankuru-landing .insta-img-area::-webkit-scrollbar { display: none; }
#japankuru-landing .insta-img-area img { width: 100%; height: auto; display: block; }

/* 공통 호버 효과 정리 */
#japankuru-landing .timeline-phase:hover .browser-mockup-final,
#japankuru-landing .timeline-phase:hover .reels-display-clean,
#japankuru-landing .timeline-phase:hover .insta-mockup-final {
    transform: scale(1.05) translateY(-5px);
    transition: 0.3s ease;
}

/* ============================================
   JAPANKURU Landing Page - Feedback Implementation CSS Patch
   피드백 반영 수정사항
   ============================================ */

/* ===== 1. 히어로 섹션 가독성 개선 ===== */

/* 배경 이미지 투명도 낮춤 */
#japankuru-landing .hero-bg {
    opacity: 0.35; /* 0.5에서 0.35로 더 낮춤 */
}

/* 강화된 그라디언트 오버레이 */
#japankuru-landing .hero-bg::after {
    background: linear-gradient(90deg, 
        var(--black) 0%, 
        var(--black) 30%, 
        rgba(15, 23, 42, 0.9) 50%,
        rgba(15, 23, 42, 0.7) 70%,
        rgba(15, 23, 42, 0.4) 100%);
}

/* 텍스트 뒤 백드롭 블러 강화 */
#japankuru-landing .hero-text {
    position: relative;
}

#japankuru-landing .hero-text::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -30px;
    right: -30px;
    bottom: -20px;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    z-index: -1;
}

/* 텍스트 그림자 강화 */
#japankuru-landing .hero-title {
    text-shadow: 
        0 0 40px rgba(0, 0, 0, 0.9),
        0 0 80px rgba(0, 0, 0, 0.6),
        0 4px 16px rgba(0,0,0,0.7);
}

#japankuru-landing .hero-desc {
    color: rgba(255,255,255,0.95);
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}


/* ===== 2. 네비게이션 스크롤 시 로고 가독성 ===== */

#japankuru-landing .nav {
    transition: all 0.3s ease;
}

/* 스크롤 시 다크 모드 */
#japankuru-landing .nav.scrolled {
    background: rgba(15, 23, 42, 0.98);
    border-bottom-color: rgba(255,255,255,0.1);
}

#japankuru-landing .nav.scrolled .nav-link {
    color: rgba(255,255,255,0.7);
}

#japankuru-landing .nav.scrolled .nav-link:hover {
    color: white;
}

#japankuru-landing .nav.scrolled .nav-toggle span {
    background: white;
}

/* 로고 반전 (스크롤 시) */
#japankuru-landing .nav.scrolled .nav-logo img {
    filter: brightness(0) invert(1);
}


/* ===== 3. 마키(Marquee) 속도 조절 - 더 느리게 ===== */

/* 클라이언트 로고 마키 - 50초에서 70초로 */
#japankuru-landing .clients-marquee .marquee-track {
    animation: marquee 70s linear infinite;
}

/* 포트폴리오 마키 - 60초에서 100초로 */
#japankuru-landing .portfolio-marquee-section .marquee-track {
    animation: marquee 100s linear infinite;
}

/* 마우스 호버 시 부드러운 감속 후 정지 */
#japankuru-landing .marquee-track {
    transition: animation-play-state 0.5s ease;
}

#japankuru-landing .marquee-track:hover {
    animation-play-state: paused;
}


/* ===== 4. 국가별 인사이트 팁 박스 스타일 ===== */

#japankuru-landing .country-insight {
    margin-top: 10px;
    padding: 10px 14px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-left: 3px solid var(--accent);
    border-radius: 0 8px 8px 0;
    font-size: 11px;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

#japankuru-landing .country-insight::before {
    content: '💡 ';
}

#japankuru-landing .country-insight strong {
    color: var(--accent);
    font-weight: 700;
}


/* ===== 5. KPI 대시보드 강화 - 리포트 샘플 비주얼 ===== */

#japankuru-landing .illust-dashboard {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

/* 미니 대시보드 카드 스타일 강화 */
#japankuru-landing .dashboard-mini-card {
    flex: 1;
    padding: 12px;
    background: linear-gradient(135deg, var(--gray-50) 0%, white 100%);
    border-radius: 10px;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

#japankuru-landing .dashboard-mini-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05));
}

#japankuru-landing .mini-card-value {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--accent);
}

#japankuru-landing .mini-card-label {
    font-size: 10px;
    color: var(--gray-500);
    margin-top: 2px;
    font-weight: 600;
}

/* 차트 바 애니메이션 */
#japankuru-landing .mini-chart-bar {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 28px;
    margin-top: 8px;
}

#japankuru-landing .mini-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 2px;
    transition: height 0.3s ease;
}

#japankuru-landing .mini-bar:nth-child(1) { height: 40%; animation: barGrow 2s ease-out infinite; animation-delay: 0s; }
#japankuru-landing .mini-bar:nth-child(2) { height: 60%; animation: barGrow 2s ease-out infinite; animation-delay: 0.2s; }
#japankuru-landing .mini-bar:nth-child(3) { height: 50%; animation: barGrow 2s ease-out infinite; animation-delay: 0.4s; }
#japankuru-landing .mini-bar:nth-child(4) { height: 80%; animation: barGrow 2s ease-out infinite; animation-delay: 0.6s; }
#japankuru-landing .mini-bar:nth-child(5) { height: 100%; animation: barGrow 2s ease-out infinite; animation-delay: 0.8s; }

@keyframes barGrow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* 트렌드 표시 강화 */
#japankuru-landing .dashboard-trend {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border-radius: 8px;
    border: 1px solid #86efac;
}

#japankuru-landing .trend-arrow {
    color: #16a34a;
    font-size: 16px;
    font-weight: 800;
}

#japankuru-landing .trend-text {
    font-size: 11px;
    color: #166534;
    font-weight: 700;
}

/* 리포트 프리뷰 추가 */
#japankuru-landing .report-preview {
    margin-top: 12px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--gray-200);
}

#japankuru-landing .report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gray-100);
}

#japankuru-landing .report-title {
    font-size: 10px;
    font-weight: 700;
    color: var(--black);
}

#japankuru-landing .report-date {
    font-size: 9px;
    color: var(--gray-400);
}

#japankuru-landing .report-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

#japankuru-landing .report-metric {
    text-align: center;
    padding: 8px 4px;
    background: var(--gray-50);
    border-radius: 6px;
}

#japankuru-landing .report-metric-value {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--accent);
}

#japankuru-landing .report-metric-label {
    font-size: 8px;
    color: var(--gray-500);
    margin-top: 2px;
}


/* ===== 6. 크리에이터 네이티브성 강조 ===== */

#japankuru-landing .creator-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    min-height: 160px;
    text-align: center;
    transition: all 0.3s ease;
}

#japankuru-landing .creator-card:hover {
    border-color: var(--accent);
    background: rgba(59, 130, 246, 0.08);
    transform: translateY(-4px);
}

#japankuru-landing .creator-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

#japankuru-landing .creator-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

#japankuru-landing .creator-name {
    font-size: 13px;
    font-weight: 700;
    color: white;
}

#japankuru-landing .creator-role {
    font-size: 10px;
    color: var(--gray-400);
}

#japankuru-landing .role-code {
    font-weight: 700;
    color: var(--accent);
    font-family: 'Inter', sans-serif;
    background: rgba(59, 130, 246, 0.15);
    padding: 2px 6px;
    border-radius: 4px;
    margin-right: 4px;
}

/* 네이티브 태그 - "일본 거주 X년차" 등 */
#japankuru-landing .creator-native-tag {
    font-size: 9px;
    color: rgba(255,255,255,0.7);
    background: rgba(59, 130, 246, 0.2);
    padding: 4px 10px;
    border-radius: 12px;
    margin-top: 4px;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* 전문 분야 태그 */
#japankuru-landing .creator-expertise {
    font-size: 9px;
    color: #10b981;
    font-weight: 600;
    margin-top: 2px;
}

#japankuru-landing .creator-expertise::before {
    content: '✓ ';
}


/* ===== 7. CTA 버튼 추적용 ID 스타일 (시각적 변화 없음, 구조만) ===== */
/* GA4 추적을 위한 버튼들은 HTML에서 고유 ID 부여 필요 */

/* 히어로 CTA */
#btn-hero-contact {
    /* 기존 .hero-cta 스타일 유지 */
}

/* 플로팅 CTA */
#btn-floating-contact {
    /* 기존 .floating-cta-btn 스타일 유지 */
}

/* 섹션별 CTA */
#btn-why-contact,
#btn-services-contact,
#btn-pricing-contact,
#btn-footer-contact {
    /* 기존 스타일 유지 - GA4에서 구분 가능 */
}


/* ===== 8. 애니메이션 최적화 - reveal 클래스 조절 ===== */

/* 핵심 섹션에만 reveal 적용, threshold 높임 */
#japankuru-landing .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

#japankuru-landing .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 모바일에서 애니메이션 간소화 */
@media (max-width: 768px) {
#japankuru-landing .reveal {
        transform: translateY(10px); /* 이동 거리 줄임 */
        transition: opacity 0.4s ease, transform 0.4s ease; /* 시간 단축 */
    }
    
    /* 모바일에서 일부 애니메이션 비활성화 */
#japankuru-landing .floating-img {
        animation: none;
        opacity: 0.6;
    }
    
#japankuru-landing .channel-orbit {
        animation: none;
    }
    
#japankuru-landing .channel-icon {
        animation: none;
    }
}

/* 저사양 기기를 위한 애니메이션 감소 */
@media (prefers-reduced-motion: reduce) {
#japankuru-landing .reveal {
        transition: none;
        opacity: 1;
        transform: none;
    }
    
#japankuru-landing .marquee-track {
        animation: none;
    }
    
#japankuru-landing .floating-img,
#japankuru-landing .channel-orbit,
#japankuru-landing .channel-icon,
#japankuru-landing .mini-bar {
        animation: none;
    }
}


/* ===== 9. 이미지 최적화 관련 힌트 (CSS로는 한계가 있음) ===== */
/* 
   NOTE: WebP 변환은 서버/워드프레스에서 처리 필요
   - Smush, ShortPixel, EWWW 플러그인 사용 권장
   - <picture> 태그로 WebP 폴백 구현
*/

/* 이미지 로딩 최적화 */
img {
    loading: lazy;
}

/* 중요 이미지는 eager 로딩 */
#japankuru-landing .hero-bg img,
#japankuru-landing .nav-logo img {
    loading: eager;
}

/* ============================================
   選ばれる理由 04, 05, 06 - 추가 CSS
   ============================================ */

/* 카드 높이 통일 */
#japankuru-landing .reasons-grid .reason-card {
    min-height: 480px;
    display: flex;
    flex-direction: column;
}

/* 06번 카드 전용 */
#japankuru-landing .reason-card.card-06 .kpi-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

#japankuru-landing .reason-card.card-06 .kpi-box {
    text-align: center;
    padding: 14px 8px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

#japankuru-landing .reason-card.card-06 .kpi-box .label {
    font-size: 14px;
    color: var(--text);
    font-weight: 700;
}

#japankuru-landing .reason-card.card-06 .kpi-box .sub {
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* 슬라이드쇼 컨테이너 */
#japankuru-landing .slideshow-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    margin-top: auto;
}

#japankuru-landing .slideshow-container .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

#japankuru-landing .slideshow-container .slide.active {
    opacity: 1;
}

#japankuru-landing .slideshow-container .slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
}

/* 네비게이션 */
#japankuru-landing .slideshow-container .slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 10;
}

#japankuru-landing .slideshow-container .slide-nav:hover {
    background: var(--accent);
}

#japankuru-landing .slideshow-container .slide-nav.prev { left: 6px; }
#japankuru-landing .slideshow-container .slide-nav.next { right: 6px; }

/* 인디케이터 */
#japankuru-landing .slideshow-container .slide-indicators {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 10;
}

#japankuru-landing .slideshow-container .indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
}

#japankuru-landing .slideshow-container .indicator.active {
    background: var(--accent);
    width: 16px;
    border-radius: 3px;
}

/* 카운터 */
#japankuru-landing .slideshow-container .slide-counter {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    z-index: 10;
}

/* 프로그레스 바 */
#japankuru-landing .slideshow-container .progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,0.1);
    z-index: 10;
}

#japankuru-landing .slideshow-container .progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), #60a5fa, var(--accent));
    background-size: 200% 100%;
    border-radius: 0 2px 2px 0;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.5);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* 모바일 대응 */
@media (max-width: 768px) {
#japankuru-landing .reasons-grid .reason-card {
        min-height: auto;
    }
    
#japankuru-landing .slideshow-container {
        aspect-ratio: 4/3;
    }
}

/* =============================================
   記事制作 카드 전용 스크롤 애니메이션
   ============================================= */

/* 記事制作 카드만 스크롤 애니메이션 적용 */
#japankuru-landing .services-section .service-card.article-scroll .browser-content {
    position: relative !important;
    overflow: hidden !important;
    height: 220px !important;
}

#japankuru-landing .services-section .service-card.article-scroll .browser-content img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: auto !important;
    object-fit: unset !important;
    animation: articleScroll 20s ease-in-out infinite !important;
}

@keyframes articleScroll {
    0% { transform: translateY(0); }
    35% { transform: translateY(0); }
    50% { transform: translateY(calc(-100% + 220px)); }
    85% { transform: translateY(calc(-100% + 220px)); }
    100% { transform: translateY(0); }
}

#japankuru-landing .services-section .service-card.article-scroll:hover .browser-content img {
    animation-play-state: paused !important;
}

#japankuru-landing .side-nav {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

#japankuru-landing .side-dot {
    position: relative;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#japankuru-landing .side-dot a {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    border: 2px solid rgba(255,255,255,0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

#japankuru-landing .side-dot a:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.4);
}

#japankuru-landing .side-dot.active a {
    background: var(--accent);
    border-color: var(--accent);
    width: 12px;
    height: 12px;
    box-shadow: 0 0 16px rgba(59, 130, 246, 0.7);
}

/* 툴팁 */
#japankuru-landing .side-dot .tooltip {
    position: absolute;
    right: 28px;
    background: rgba(15, 23, 42, 0.95);
    color: white;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
    transform: translateX(10px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

#japankuru-landing .side-dot .tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: rgba(15, 23, 42, 0.95);
}

#japankuru-landing .side-dot:hover .tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* 밝은 배경 섹션에서 도트 색상 변경 */
#japankuru-landing .side-nav.on-light .side-dot a {
    background: rgba(0,0,0,0.15);
    border-color: rgba(0,0,0,0.25);
}

#japankuru-landing .side-nav.on-light .side-dot.active a {
    background: var(--accent);
    border-color: var(--accent);
}

/* 모바일에서 숨김 - Floating CTA만 사용 */
@media (max-width: 768px) {
#japankuru-landing .side-nav {
        display: none;
    }
}

/* 태블릿에서 위치 조정 */
@media (max-width: 1024px) {
#japankuru-landing .side-nav {
        right: 16px;
    }
}

/* ===== 기존 NAV 관련 CSS 숨김 (삭제 대신 숨김 처리) ===== */
#japankuru-landing .nav {
    display: none !important;
}

#japankuru-landing .mobile-menu {
    display: none !important;
}

/* Hero 섹션 padding-top 조정 (상단 네비 없으므로) */
#japankuru-landing .hero {
    padding-top: 0 !important;
}

/* ===== 기존 NAV 숨김 ===== */
#japankuru-landing .nav,
#japankuru-landing .mobile-menu {
    display: none !important;
}

/* Hero padding 조정 */
#japankuru-landing .hero {
    padding-top: 0 !important;
}

/* ===== PC: SIDE DOT NAVIGATION ===== */
#japankuru-landing .side-nav {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

#japankuru-landing .side-dot {
    position: relative;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#japankuru-landing .side-dot a {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    border: 2px solid rgba(255,255,255,0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

#japankuru-landing .side-dot a:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.4);
}

#japankuru-landing .side-dot.active a {
    background: var(--accent);
    border-color: var(--accent);
    width: 12px;
    height: 12px;
    box-shadow: 0 0 16px rgba(59, 130, 246, 0.7);
}

/* 툴팁 */
#japankuru-landing .side-dot .tooltip {
    position: absolute;
    right: 28px;
    background: rgba(15, 23, 42, 0.95);
    color: white;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
    transform: translateX(10px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

#japankuru-landing .side-dot .tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: rgba(15, 23, 42, 0.95);
}

#japankuru-landing .side-dot:hover .tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* 밝은 배경에서 도트 색상 */
#japankuru-landing .side-nav.on-light .side-dot a {
    background: rgba(0,0,0,0.15);
    border-color: rgba(0,0,0,0.25);
}
#japankuru-landing .side-nav.on-light .side-dot.active a {
    background: var(--accent);
    border-color: var(--accent);
}

/* ===== 모바일: BOTTOM TAB BAR ===== */
#japankuru-landing .bottom-tab-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    display: none; /* 기본 숨김, 모바일에서만 표시 */
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}

#japankuru-landing .tab-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 8px 4px;
    text-decoration: none;
    color: var(--gray-400);
    font-size: 10px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

#japankuru-landing .tab-item svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* Active state */
#japankuru-landing .tab-item.active {
    color: var(--accent);
}
#japankuru-landing .tab-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 3px;
    background: var(--accent);
    border-radius: 0 0 3px 3px;
}

/* CTA 탭 강조 */
#japankuru-landing .tab-item.cta-tab {
    color: var(--white);
    background: var(--accent);
    border-radius: 12px;
    margin: 8px 4px;
    flex: 1.2;
}
#japankuru-landing .tab-item.cta-tab svg {
    stroke: white;
}
#japankuru-landing .tab-item.cta-tab span {
    font-weight: 700;
}
#japankuru-landing .tab-item.cta-tab::before {
    display: none;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    /* 모바일: 사이드 도트 숨김, 하단 탭 표시 */
#japankuru-landing .side-nav {
        display: none !important;
    }
#japankuru-landing .bottom-tab-bar {
        display: flex !important;
    }
    /* 기존 Floating CTA 숨김 (하단 탭에 CTA 있으므로) */
#japankuru-landing .floating-cta {
        display: none !important;
    }
    /* 하단 탭 높이만큼 여백 */
    body {
        padding-bottom: 70px;
    }
    /* CTA 섹션 여백 */
#japankuru-landing .cta-section {
        padding-bottom: 100px;
    }
}

@media (min-width: 769px) {
    /* PC: 사이드 도트 표시, 하단 탭 숨김 */
#japankuru-landing .side-nav {
        display: flex !important;
    }
#japankuru-landing .bottom-tab-bar {
        display: none !important;
    }
}

/* iOS Safe Area 대응 */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
#japankuru-landing .bottom-tab-bar {
        padding-bottom: env(safe-area-inset-bottom);
        height: calc(64px + env(safe-area-inset-bottom));
    }
    @media (max-width: 768px) {
        body {
            padding-bottom: calc(70px + env(safe-area-inset-bottom));
        }
    }
}

/* ===== WordPress Admin Bar 대응 ===== */
body.admin-bar #japankuru-landing .nav {
    top: 32px;
}

body.admin-bar #japankuru-landing .side-nav {
    top: calc(50% + 16px);
}

body.admin-bar #japankuru-landing .floating-cta {
    /* 하단이라 영향 없음 */
}

body.admin-bar #japankuru-landing .mobile-menu {
    top: 92px; /* 60px + 32px */
}

@media screen and (max-width: 782px) {
    body.admin-bar #japankuru-landing .nav {
        top: 46px; /* 모바일 WP 툴바는 46px */
    }
    body.admin-bar #japankuru-landing .mobile-menu {
        top: 106px;
    }
}
/* ===== Marquee 성능 최적화 ===== */
#japankuru-landing .marquee-track {
    will-change: transform;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* 1. 모든 섹션에 강제 여백 부여 (최우선 순위) */
#japankuru-landing section {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
    display: block !important;
    clear: both !important;
}

/* 2. 섹션 내부 헤더(제목) 하단 여백 강제 적용 */
#japankuru-landing .section-header {
    margin-bottom: 60px !important;
}

/* 3. 통계 섹션 하단 레이아웃 여백 보강 */
#japankuru-landing .market-bottom-text {
    margin-top: 80px !important;
    padding: 60px 20px !important;
    background: rgba(255, 255, 255, 0.03); /* 영역 구분을 위해 살짝 배경 추가 */
    border-radius: 20px;
}

/* 4. 모바일에서의 여백 별도 지정 */
@media (max-width: 768px) {
    #japankuru-landing section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
    #japankuru-landing .market-bottom-text {
        margin-top: 40px !important;
        padding: 40px 15px !important;
    }
}

/* 企業向けの信頼感を重視したタイポグラフィと余白設計 */
#japankuru-landing .pricing-section {
    padding: 120px 20px !important;
    background-color: #ffffff !important;
}

#japankuru-landing .section-header.center {
    text-align: center;
    margin-bottom: 60px;
}

/* ===== SECTION TITLE 통합 관리 (SEO 및 가독성 최적화) ===== */

/* 1. 기본 스타일 (라이트 배경용) */
#japankuru-landing .section-title {
    font-size: clamp(28px, 4vw, 36px); /* 반응형 폰트 크기 */
    font-weight: 900;
    color: #0f172a; /* 기본 네이비 블랙 */
    line-height: 1.4;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

/* 2. 다크 배경 섹션에서의 자동 색상 반전 (중요!) */
#japankuru-landing .market-section .section-title,
#japankuru-landing .services-section .section-title,
#japankuru-landing .channel-section .section-title,
#japankuru-landing .pain-solution-section .pain-solution-title,
#japankuru-landing .cta-section .cta-main-title {
    color: #ffffff !important; /* 강제 화이트 적용 */
    text-shadow: 0 2px 10px rgba(0,0,0,0.2); /* 가독성 보강 */
}

/* 3. 다크 배경 섹션의 설명 문구(desc) 가독성 보강 */
#japankuru-landing .market-section .section-desc,
#japankuru-landing .services-section .section-desc,
#japankuru-landing .channel-section .section-desc,
#japankuru-landing .cta-section .cta-desc {
    color: rgba(255, 255, 255, 0.7) !important;
}

#japankuru-landing .section-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
}

#japankuru-landing .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

#japankuru-landing .pricing-card {
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#japankuru-landing .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

#japankuru-landing .pricing-card.featured {
    border: 3px solid #3b82f6;
}

/* カスタム領域のデザイン補강 */
#japankuru-landing .pricing-custom-footer {
    margin-top: 100px;
    padding: 80px 60px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 48px;
}

#japankuru-landing .custom-footer-title {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.3;
    color: #0f172a;
    margin-bottom: 30px;
}

#japankuru-landing .custom-footer-title span {
    font-size: 14px;
    color: #3b82f6;
    letter-spacing: 0.2em;
    font-weight: 800;
}

#japankuru-landing .custom-solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    margin-bottom: 60px;
    text-align: left;
}

#japankuru-landing .solution-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 900;
    color: #3b82f6;
    border: 1.5px solid #3b82f6;
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 18px;
    letter-spacing: 0.1em;
}

#japankuru-landing .solution-text strong {
    font-size: 20px;
    display: block;
    margin-bottom: 15px;
    color: #0f172a;
    line-height: 1.4;
}

#japankuru-landing .solution-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #64748b;
}

#japankuru-landing .custom-cta-wrap {
    margin-top: 40px;
    padding-top: 50px;
    border-top: 1px solid #e2e8f0;
}

#japankuru-landing .custom-footer-link {
    font-size: 20px;
    font-weight: 900;
    color: #3b82f6;
    text-decoration: none;
    border-bottom: 3px solid #3b82f6;
    padding-bottom: 8px;
    transition: all 0.3s ease;
}

#japankuru-landing .custom-footer-link:hover {
    color: #2563eb;
    border-color: #2563eb;
    padding-right: 10px;
}

@media (max-width: 991px) {
    #japankuru-landing .pricing-grid { grid-template-columns: 1fr; max-width: 500px; }
    #japankuru-landing .custom-solution-grid { grid-template-columns: 1fr; gap: 40px; }
    #japankuru-landing .pricing-custom-footer { padding: 60px 30px; }
    #japankuru-landing .custom-footer-title { font-size: 24px; }
}
/* 브릿지 영역 디자인: 시선을 아래로 유도 */
#japankuru-landing .pricing-bridge {
    text-align: center;
    margin: 100px 0 60px;
    position: relative;
}

#japankuru-landing .bridge-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, #3b82f6, transparent);
    margin: 0 auto 30px;
}

#japankuru-landing .bridge-text {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

#japankuru-landing .bridge-sub {
    font-size: 16px;
    color: #64748b;
}

/* 커스텀 섹션 확장형 디자인: 테두리 제거 및 오픈 레이아웃 */
#japankuru-landing .pricing-custom-expand {
    padding: 100px 60px;
    background: #f8fafc; /* 연한 배경색으로 부드러운 구분 */
    border-radius: 48px;
    margin-top: 0;
}

#japankuru-landing .custom-header {
    text-align: center;
    margin-bottom: 80px;
}

#japankuru-landing .custom-badge {
    display: inline-block;
    font-size: 14px;
    font-weight: 900;
    color: #3b82f6;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
}

#japankuru-landing .custom-title {
    font-size: 36px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.3;
}

/* 하단 그리드: 에모지 대신 세련된 태그 스타일 사용 */
#japankuru-landing .custom-solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 80px;
}

#japankuru-landing .solution-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 900;
    color: #3b82f6;
    border: 1.5px solid #3b82f6;
    padding: 3px 10px;
    border-radius: 6px;
    margin-bottom: 20px;
}

/* 모바일 가독성 조정 */
@media (max-width: 991px) {
    #japankuru-landing .pricing-custom-expand { padding: 60px 20px; }
    #japankuru-landing .custom-solution-grid { grid-template-columns: 1fr; gap: 40px; }
    #japankuru-landing .custom-title { font-size: 26px; }
    #japankuru-landing .bridge-text { font-size: 18px; padding: 0 10px; }
}

/* 요금표 하단 커스텀 섹션은 배경을 깔아서 '전문 솔루션' 느낌을 유지 */
#japankuru-landing .pricing-custom-expand {
    background: #f8fafc; 
    border-radius: 48px;
    margin-bottom: 0; /* 마지막 섹션과 붙도록 조정 */
}

/* 마지막 상담 섹션 디자인 보강 */
#japankuru-landing .cta-section {
    background: #0f172a; 
    color: #ffffff;
    padding: 120px 20px !important;
    text-align: center;
}

#japankuru-landing .cta-main-title {
    font-size: 42px; /* 기본 크기 상향 */
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 30px;
    letter-spacing: -0.01em;
}

/* 한 단어처럼 묶어서 행바뀜 방지 */
#japankuru-landing .inline-block {
    display: inline-block;
    white-space: nowrap;
}

#japankuru-landing .cta-desc {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    word-break: keep-all; /* 단어 단위로 줄바꿈 */
}

/* 버튼 스타일 보강 */
#japankuru-landing .cta-btn.secondary {
    display: inline-block;
    padding: 20px 60px;
    background: #ffffff;
    color: #0f172a;
    font-size: 18px;
    font-weight: 800;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

#japankuru-landing .cta-btn.secondary:hover {
    background: #3b82f6;
    color: #ffffff;
    transform: translateY(-3px);
}

/* 모바일 화면 최적화 */
@media (max-width: 768px) {
    #japankuru-landing .cta-main-title {
        font-size: 28px; /* 모바일에서 폰트 크기 축소 */
        line-height: 1.4;
    }
    
    #japankuru-landing .sp-only {
        display: block; /* 모바일에서만 강제 줄바꿈 */
    }

    #japankuru-landing .cta-desc {
        font-size: 15px;
    }

    #japankuru-landing .cta-btn.secondary {
        width: 100%; /* 모바일에서 버튼 풀 너비 */
        padding: 18px 20px;
    }
}

/* ===== 02번 카드(bento-side) 애니메이션 최종 보정 ===== */
/* 02번 카드 애니메이션 최종 보정 */
#japankuru-landing .bento-side {
    overflow: visible !important; 
    z-index: 5;
}

/* 지도 영역 중심 잡기 */
#japankuru-landing .illust-map {
    position: relative;
    height: 200px !important;
    margin-top: 30px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 파동 애니메이션 (가볍고 부드러움) */
#japankuru-landing .map-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 50%;
    pointer-events: none;
    animation: rippleSpread 4s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 각 국기 아이콘 설정 */
#japankuru-landing .map-line::after {
    content: attr(data-flag);
    position: absolute;
    font-size: 18px;
    background: white;
    padding: 3px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    /* 국기가 나타나는 애니메이션 */
    animation: flagPop 4s infinite;
    opacity: 0;
}

/* 시간차를 두어 하나씩 퍼져나가게 설정 */
#japankuru-landing .map-line:nth-child(1) { animation-delay: 0s; }
#japankuru-landing .map-line:nth-child(1)::after { top: -10%; left: 80%; }

#japankuru-landing .map-line:nth-child(2) { animation-delay: 0.5s; }
#japankuru-landing .map-line:nth-child(2)::after { top: 30%; left: 105%; }

#japankuru-landing .map-line:nth-child(3) { animation-delay: 1s; }
#japankuru-landing .map-line:nth-child(3)::after { top: 85%; left: 85%; }

#japankuru-landing .map-line:nth-child(4) { animation-delay: 1.5s; }
#japankuru-landing .map-line:nth-child(4)::after { top: 100%; left: 20%; }

#japankuru-landing .map-line:nth-child(5) { animation-delay: 2s; }
#japankuru-landing .map-line:nth-child(5)::after { top: 60%; left: -15%; }

/* 애니메이션 정의 */
@keyframes rippleSpread {
    0% { width: 40px; height: 40px; opacity: 1; }
    100% { width: 300px; height: 300px; opacity: 0; }
}

@keyframes flagPop {
    0%, 20% { transform: scale(0); opacity: 0; }
    40%, 60% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); opacity: 0; }
}

/* 중앙 일본 아이콘 */
#japankuru-landing .map-center {
    position: absolute;
    z-index: 10;
    background: white;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    border: 2px solid #3b82f6;
}

/* 섹션 헤더 내의 모든 요소 중앙 정렬 보장 */
#japankuru-landing .section-header.center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center; /* 내부 요소들을 수직축 중앙으로 배치 */
}

/* 디스크립션 박스 자체를 중앙으로 이동 */
#japankuru-landing .section-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7) !important;
    max-width: 700px; /* 가독성을 위해 너비를 살짝 넓힘 */
    margin-left: auto !important;  /* 왼쪽 마진 자동 */
    margin-right: auto !important; /* 오른쪽 마진 자동 -> 중앙 정렬 핵심 */
    text-align: center; /* 텍스트 자체도 중앙 정렬 */
}

/* 서비스 섹션(다크 배경) 전용 추가 보정 */
#japankuru-landing .services-section .section-header {
    width: 100%;
    margin-bottom: 60px;
}
#japankuru-landing {
    font-size: 16px; /* 기본 폰트 크기 지정 */
    -webkit-font-smoothing: antialiased; /* 폰트를 더 선명하게 */
}

/* 모든 섹션 디스크립션 크기 일괄 상향 */
#japankuru-landing .section-desc {
    font-size: clamp(15px, 2vw, 17px) !important;
    line-height: 1.8;
}

/* 히어로 섹션 텍스트 볼륨 업 */
#japankuru-landing .hero-title {
    font-size: clamp(40px, 6vw, 72px) !important; /* 더 크게 */
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 32px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5); /* 가독성 강화 */
}

#japankuru-landing .hero-desc {
    font-size: 19px !important; /* 본문 크기 상향 */
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

/* 핵심 지표(숫자) 영역 강조 */
#japankuru-landing .hero-metrics {
    gap: 60px !important; /* 간격 넓힘 */
    margin-top: 50px;
    border-top: 2px solid rgba(255,255,255,0.1);
    padding-top: 32px;
}

#japankuru-landing .hero-metric-value {
    font-size: clamp(48px, 5vw, 64px) !important; /* 숫자 크기 대폭 상향 */
    color: #ffffff; /* 흰색으로 변경하여 대비 상승 */
    letter-spacing: -0.03em;
}

#japankuru-landing .hero-metric-value span {
    color: var(--accent); /* +나 단위만 포인트 컬러로 */
    font-size: 0.6em;
}

#japankuru-landing .hero-metric-label {
    font-size: 14px !important;
    font-weight: 700;
    color: var(--accent-light); /* 라벨 가독성 개선 */
    margin-top: 10px;
}

/* 어워드/파트너 텍스트 크기 조절 */
#japankuru-landing .credentials-row {
    font-size: 13px !important;
    opacity: 0.8;
}

/* 대시보드 날짜 주석 스타일 수정 */
#japankuru-landing .dashboard-note {
    /* 1. 절대 위치를 해제하여 카드와 겹치지 않게 합니다 */
    position: relative !important; 
    top: auto !important;
    right: auto !important;

    /* 2. 정렬 및 간격 설정 */
    display: block !important;
    width: 100% !important;
    text-align: right !important; /* 오른쪽 끝으로 밀기 */
    margin-bottom: 12px !important; /* 아래 카드들과의 간격 */
    
    /* 3. 디자인 상세 */
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.4) !important;
    font-weight: 500 !important;
}

@media (max-width: 768px) {
    #japankuru-landing .dashboard-note {
        text-align: center !important;
    }
}
/* 슬라이더 전체 레이아웃 */
#japankuru-landing .cases-slider-container {
    position: relative;
    padding: 0 60px;
    margin-top: 40px;
}

#japankuru-landing .cases-slider-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    padding: 20px 0;
}

#japankuru-landing .cases-slider-track::-webkit-scrollbar { display: none; } /* Chrome/Safari */

/* 개별 카드 스타일 */
#japankuru-landing .case-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 320px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

#japankuru-landing .case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--accent);
}

/* 텍스트 줄바꿈 및 크기 보정 */
#japankuru-landing .case-title {
    font-size: 16px !important;
    line-height: 1.5;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--black);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#japankuru-landing .case-desc {
    font-size: 13px !important;
    line-height: 1.7;
    color: var(--gray-500);
}

/* 슬라이더 버튼 */
#japankuru-landing .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

#japankuru-landing .slider-btn:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

#japankuru-landing .slider-btn.prev { left: 0; }
#japankuru-landing .slider-btn.next { right: 0; }

@media (max-width: 768px) {
    #japankuru-landing .cases-slider-container { padding: 0; }
    #japankuru-landing .cases-slider-track { gap: 16px; padding: 10px; }
    #japankuru-landing .case-card { flex: 0 0 85%; min-width: 280px; }
    #japankuru-landing .slider-btn { display: none; }
}

#japankuru-landing .timeline-phase {
    display: flex;
    flex-direction: column;
    height: 100%;
}

#japankuru-landing .phase-visual {
    flex-grow: 0;
}
#japankuru-landing .phase-touchpoints {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
}
#japankuru-landing .phase-tagline {
    margin-top: 16px; 
}
/* --- 하얀 배경 섹션 가독성 긴급 복구 --- */

/* 1. 기본적으로 모든 제목/설명은 어두운 색으로 설정 (안전장치) */
#japankuru-landing .section-title {
    color: #0f172a !important;
}
#japankuru-landing .section-desc, 
#japankuru-landing .section-subtitle,
#japankuru-landing .bridge-sub {
    color: #475569 !important;
}

/* 2. 어두운 배경을 가진 섹션들만 다시 화이트로 지정 (정밀 타격) */
#japankuru-landing .hero .section-title,
#japankuru-landing .hero .section-desc,
#japankuru-landing .market-section .section-title,
#japankuru-landing .market-section .section-subtitle,
#japankuru-landing .services-section .section-title,
#japankuru-landing .services-section .section-desc,
#japankuru-landing .channel-section .section-title,
#japankuru-landing .channel-section .section-desc,
#japankuru-landing .cta-section .cta-main-title,
#japankuru-landing .cta-section .cta-desc {
    color: #ffffff !important;
}
@media (max-width: 768px) {
    /* 1. 모든 컨테이너 너비 제한 해제 및 중앙 정렬 */
    #japankuru-landing .section-inner,
    #japankuru-landing .bento-grid,
    #japankuru-landing .bento-card,
    #japankuru-landing .hero-main,
    #japankuru-landing .hero-text {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        left: 0 !important;
        transform: none !important;
    }

    /* 2. 텍스트 요소 강제 중앙 정렬 */
    #japankuru-landing .section-title,
    #japankuru-landing .section-desc,
    #japankuru-landing .card-title,
    #japankuru-landing .card-desc {
        text-align: center !important;
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* 3. 중앙 궤도(Orbit) 애니메이션 모바일 최적화 */
    #japankuru-landing .global-hub {
        width: 260px !important; /* 모바일 폭에 맞게 고정 */
        height: 260px !important;
        margin: 40px auto !important;
        position: relative !important;
        display: block !important;
    }

    #japankuru-landing .channel-orbit {
        width: 200px !important;
        height: 200px !important;
        top: 50% !important;
        left: 50% !important;
        margin-top: -100px !important;
        margin-left: -100px !important;
    }

    /* 4. 하단 통계 박스(142만, 25채널) 세로 정렬 및 너비 꽉 차게 */
    #japankuru-landing .hero-stats {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        width: 100% !important;
        margin-top: 30px !important;
    }

    #japankuru-landing .stat-box {
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px !important;
        text-align: center !important; /* 숫자도 중앙으로 */
    }

    #japankuru-landing .stat-row {
        justify-content: center !important; /* 숫자+단어 중앙 */
    }
}
/* 로고 마키 섹션 최적화 */
#japankuru-landing .clients-marquee {
    padding: 60px 0 !important; /* 위아래 여백을 충분히 주어 시원하게 배치 */
}

#japankuru-landing .clients-marquee .marquee-content {
    display: flex;
    align-items: center;
    gap: 120px; /* [핵심] 로고 사이의 간격을 120px 이상으로 대폭 확대 */
    padding-right: 120px; /* 마지막 로고 뒤 간격 확보 */
}

#japankuru-landing .clients-marquee .client-logo {
    /* [핵심] 로고 크기 균일화 */
    height: 45px !important; /* 높이를 일정하게 고정 */
    width: auto !important;   /* 가로 비율은 유지 */
    max-width: 180px !important; /* 가로가 너무 긴 로고 방지 */
    
    /* 시각적 톤 조절 */
    object-fit: contain;
    filter: grayscale(100%); /* 로고 색상을 무채색으로 통일하여 깔끔하게 표시 */
    opacity: 0.6;
    transition: all 0.3s ease;
}

#japankuru-landing .clients-marquee .client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* 애니메이션 속도 조절 (간격이 넓어지면 상대적으로 빨라 보이므로 더 느리게 조절) */
#japankuru-landing .clients-marquee .marquee-track {
    animation: marquee 80s linear infinite !important;
}

/* 모바일 대응 */
@media (max-width: 768px) {
    #japankuru-landing .clients-marquee .marquee-content {
        gap: 80px; /* 모바일에서는 간격을 조금 줄임 */
        padding-right: 80px;
    }
    #japankuru-landing .clients-marquee .client-logo {
        height: 35px !important; /* 모바일 로고 크기 축소 */
    }
}